From e31e396f5c05604cdb0da832ee988a5442893e21 Mon Sep 17 00:00:00 2001 From: josd Date: Fri, 27 Dec 2024 00:10:21 +0100 Subject: [PATCH] adding --logic-program option --- RELEASE | 1 + VERSION | 2 +- eye.pl | 143 +- eye.zip | Bin 108596 -> 109399 bytes logic-programming/README.md | 19 + logic-programming/ackermann.pl | 45 + logic-programming/acp.pl | 51 + logic-programming/age.pl | 15 + logic-programming/bmt.pl | 10021 +++ logic-programming/complex.pl | 97 + logic-programming/control.pl | 50 + logic-programming/derivative.pl | 112 + logic-programming/dt.pl | 30008 ++++++++ logic-programming/easter.pl | 15 + logic-programming/enigma1225.pl | 211 + logic-programming/equation.pl | 454 + logic-programming/eulers-identity.pl | 38 + logic-programming/fft.pl | 54 + logic-programming/fibonacci.pl | 32 + logic-programming/fourcolor.pl | 45 + logic-programming/fuse.pl | 8 + logic-programming/gcc.pl | 49 + logic-programming/good-cobbler.pl | 9 + logic-programming/gps.pl | 118 + logic-programming/graph.pl | 21 + logic-programming/hanoi.pl | 12 + logic-programming/lee.pl | 68 + logic-programming/matrix.pl | 279 + logic-programming/mi.pl | 25 + logic-programming/multi-agent.pl | 87 + logic-programming/output/ackermann.pl | 13 + logic-programming/output/acp.pl | 3 + logic-programming/output/age.pl | 3 + logic-programming/output/bmt.pl | 1520 + logic-programming/output/complex.pl | 13 + logic-programming/output/control.pl | 4 + logic-programming/output/derivative.pl | 6 + logic-programming/output/dt.pl | 30008 ++++++++ logic-programming/output/easter.pl | 32 + logic-programming/output/enigma1225.pl | 3 + logic-programming/output/equation.pl | 5 + logic-programming/output/eulers-identity.pl | 3 + logic-programming/output/fft.pl | 3 + logic-programming/output/fibonacci.pl | 14 + logic-programming/output/fourcolor.pl | 3 + logic-programming/output/fuse.pl | 4 + logic-programming/output/gcc.pl | 3 + logic-programming/output/good-cobbler.pl | 3 + logic-programming/output/gps.pl | 4 + logic-programming/output/graph.pl | 32 + logic-programming/output/hanoi.pl | 3 + logic-programming/output/lee.pl | 3 + logic-programming/output/matrix.pl | 11 + logic-programming/output/mi.pl | 3 + logic-programming/output/multi-agent.pl | 17 + logic-programming/output/padovan.pl | 14 + logic-programming/output/peano.pl | 3 + logic-programming/output/pi.pl | 3 + logic-programming/output/polygon.pl | 3 + logic-programming/output/polynomial.pl | 4 + logic-programming/output/prime.pl | 8 + logic-programming/output/sdcoding.pl | 25 + logic-programming/output/socrates.pl | 10 + logic-programming/output/sudoku.pl | 3 + logic-programming/output/tak.pl | 3 + logic-programming/output/turing.pl | 6 + .../output/workplace-benchmark.pl | 60008 ++++++++++++++++ logic-programming/output/workplace.pl | 13 + logic-programming/output/zebra.pl | 3 + logic-programming/padovan.pl | 33 + logic-programming/peano.pl | 28 + logic-programming/pi.pl | 17 + logic-programming/polygon.pl | 9 + logic-programming/polynomial.pl | 233 + logic-programming/prime.pl | 125 + logic-programming/sdcoding.pl | 103 + logic-programming/socrates.pl | 9 + logic-programming/sudoku.pl | 36 + logic-programming/tak.pl | 17 + logic-programming/test | 48 + logic-programming/turing.pl | 49 + logic-programming/workplace-benchmark.pl | 42 + logic-programming/workplace.pl | 26 + logic-programming/zebra.pl | 41 + 84 files changed, 134717 insertions(+), 10 deletions(-) create mode 100644 logic-programming/README.md create mode 100644 logic-programming/ackermann.pl create mode 100644 logic-programming/acp.pl create mode 100644 logic-programming/age.pl create mode 100644 logic-programming/bmt.pl create mode 100644 logic-programming/complex.pl create mode 100644 logic-programming/control.pl create mode 100644 logic-programming/derivative.pl create mode 100644 logic-programming/dt.pl create mode 100644 logic-programming/easter.pl create mode 100644 logic-programming/enigma1225.pl create mode 100644 logic-programming/equation.pl create mode 100644 logic-programming/eulers-identity.pl create mode 100644 logic-programming/fft.pl create mode 100644 logic-programming/fibonacci.pl create mode 100644 logic-programming/fourcolor.pl create mode 100644 logic-programming/fuse.pl create mode 100644 logic-programming/gcc.pl create mode 100644 logic-programming/good-cobbler.pl create mode 100644 logic-programming/gps.pl create mode 100644 logic-programming/graph.pl create mode 100644 logic-programming/hanoi.pl create mode 100644 logic-programming/lee.pl create mode 100644 logic-programming/matrix.pl create mode 100644 logic-programming/mi.pl create mode 100644 logic-programming/multi-agent.pl create mode 100644 logic-programming/output/ackermann.pl create mode 100644 logic-programming/output/acp.pl create mode 100644 logic-programming/output/age.pl create mode 100644 logic-programming/output/bmt.pl create mode 100644 logic-programming/output/complex.pl create mode 100644 logic-programming/output/control.pl create mode 100644 logic-programming/output/derivative.pl create mode 100644 logic-programming/output/dt.pl create mode 100644 logic-programming/output/easter.pl create mode 100644 logic-programming/output/enigma1225.pl create mode 100644 logic-programming/output/equation.pl create mode 100644 logic-programming/output/eulers-identity.pl create mode 100644 logic-programming/output/fft.pl create mode 100644 logic-programming/output/fibonacci.pl create mode 100644 logic-programming/output/fourcolor.pl create mode 100644 logic-programming/output/fuse.pl create mode 100644 logic-programming/output/gcc.pl create mode 100644 logic-programming/output/good-cobbler.pl create mode 100644 logic-programming/output/gps.pl create mode 100644 logic-programming/output/graph.pl create mode 100644 logic-programming/output/hanoi.pl create mode 100644 logic-programming/output/lee.pl create mode 100644 logic-programming/output/matrix.pl create mode 100644 logic-programming/output/mi.pl create mode 100644 logic-programming/output/multi-agent.pl create mode 100644 logic-programming/output/padovan.pl create mode 100644 logic-programming/output/peano.pl create mode 100644 logic-programming/output/pi.pl create mode 100644 logic-programming/output/polygon.pl create mode 100644 logic-programming/output/polynomial.pl create mode 100644 logic-programming/output/prime.pl create mode 100644 logic-programming/output/sdcoding.pl create mode 100644 logic-programming/output/socrates.pl create mode 100644 logic-programming/output/sudoku.pl create mode 100644 logic-programming/output/tak.pl create mode 100644 logic-programming/output/turing.pl create mode 100644 logic-programming/output/workplace-benchmark.pl create mode 100644 logic-programming/output/workplace.pl create mode 100644 logic-programming/output/zebra.pl create mode 100644 logic-programming/padovan.pl create mode 100644 logic-programming/peano.pl create mode 100644 logic-programming/pi.pl create mode 100644 logic-programming/polygon.pl create mode 100644 logic-programming/polynomial.pl create mode 100644 logic-programming/prime.pl create mode 100644 logic-programming/sdcoding.pl create mode 100644 logic-programming/socrates.pl create mode 100644 logic-programming/sudoku.pl create mode 100644 logic-programming/tak.pl create mode 100755 logic-programming/test create mode 100644 logic-programming/turing.pl create mode 100644 logic-programming/workplace-benchmark.pl create mode 100644 logic-programming/workplace.pl create mode 100644 logic-programming/zebra.pl diff --git a/RELEASE b/RELEASE index 2997b278e..7a3041090 100644 --- a/RELEASE +++ b/RELEASE @@ -1,5 +1,6 @@ EYE release +v11.2.0 (2024-12-27) adding --logic-program option v11.1.4 (2024-12-23) using log:explains instead of log:proves v11.1.3 (2024-12-23) using --explain instead of --ether v11.1.2 (2024-12-20) replacing list:quicksort with (list ordering) list:sort sortedList where ordering can be "<", "=<", ">" and ">=" diff --git a/VERSION b/VERSION index 342b3b3bc..b85c6c7b0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.1.4 +11.2.0 diff --git a/eye.pl b/eye.pl index 054ed9eec..5f712a403 100644 --- a/eye.pl +++ b/eye.pl @@ -22,7 +22,7 @@ :- catch(use_module(library(process)), _, true). :- catch(use_module(library(http/http_open)), _, true). -version_info('EYE v11.1.4 (2024-12-23)'). +version_info('EYE v11.2.0 (2024-12-27)'). license_info('MIT License @@ -63,6 +63,7 @@ --image output all and all code to --intermediate output all to --license show license info + --logic-program run logic program --max-inferences halt after maximum number of inferences --no-distinct-input no distinct triples in the input --no-distinct-output no distinct answers in the output @@ -105,6 +106,10 @@ --pass-only-new output only new derived triples --query output filtered with filter rules'). +:- op(1200, xfx, :=). + +:- dynamic((:=)/2). +:- dynamic(answer/1). :- dynamic(answer/3). % answer(Predicate, Subject, Object) :- dynamic(apfx/2). :- dynamic(argi/1). @@ -167,6 +172,7 @@ :- dynamic(semantics/2). :- dynamic(shellcache/2). :- dynamic(tabl/3). +:- dynamic(step/3). :- dynamic(tmpfile/1). :- dynamic(tuple/2). :- dynamic(tuple/3). @@ -292,11 +298,14 @@ catch(gre(Argus), Exc, ( Exc = halt(0) -> true - ; ( flag('parse-only') - -> true - ; format(user_error, '** ERROR ** gre ** ~w~n', [Exc]), - flush_output(user_error), - nb_setval(exit_code, 3) + ; ( Exc = halt(N) + -> nb_setval(exit_code, N) + ; ( flag('parse-only') + -> true + ; format(user_error, '** ERROR ** gre ** ~w~n', [Exc]), + flush_output(user_error), + nb_setval(exit_code, 3) + ) ) ) ), @@ -687,6 +696,38 @@ format(user_error, '~w~n', [License]), flush_output(user_error), throw(halt(0)). +opts(['--logic-program', File|_], _) :- + consult(File), + nb_setval(closure, 0), + nb_setval(limit, -1), + nb_setval(fm, 0), + nb_setval(mf, 0), + ( (_ := _) + -> format(":- op(1200, xfx, :=).~n~n", []) + ; version_info(Version), + format("~w~n", [Version]) + ), + forall( + ( (Conc := _), + Conc \= true, + Conc \= false + ), + ( functor(Conc, P, A), + dynamic(P/A) + ) + ), + eam2, + nb_getval(fm, Fm), + ( Fm = 0 + -> true + ; format(user_error, "*** fm=~w~n", [Fm]) + ), + nb_getval(mf, Mf), + ( Mf = 0 + -> true + ; format(user_error, "*** mf=~w~n", [Mf]) + ), + throw(halt(0)). opts(['--max-inferences', Lim|Argus], Args) :- !, ( number(Lim) @@ -5248,6 +5289,90 @@ catch(clause(B, true), _, fail), \+prfstep(A, _, _, _, _, _, _). +% --------------------- +% EAM2 abstract machine +% --------------------- +% +% 1/ select rule Conc := Prem +% 2/ prove Prem and if it fails backtrack to 1/ +% 3/ if Conc = true assert answer(Prem) +% else if Conc = false stop with return code 2 +% else if ~Conc assert Conc and retract brake +% 4/ backtrack to 2/ and if it fails go to 5/ +% 5/ if brake +% if not stable start again at 1/ +% else output answers, output steps and stop +% else assert brake and start again at 1/ +% +eam2 :- + ( (Conc := Prem), % 1/ + copy_term((Conc := Prem), Rule), + Prem, % 2/ + ( Conc = true % 3/ + -> ( \+answer(Prem) + -> assertz(answer(Prem)) + ; true + ) + ; ( Conc = false + -> format("% inference fuse, return code 2~n", []), + portray_clause(fuse(Prem)), + throw(halt(2)) + ; ( term_variables(Conc, []) + -> Concl = Conc + ; Concl = (Conc := true) + ), + \+Concl, + astep2(Concl), + assertz(step(Rule, Prem, Concl)), + retract(brake) + ) + ), + fail % 4/ + ; ( brake % 5/ + -> ( nb_getval(closure, Closure), + nb_getval(limit, Limit), + Closure < Limit, + NewClosure is Closure+1, + nb_setval(closure, NewClosure), + eam2 + ; answer(Prem), + portray_clause(answer(Prem)), + fail + ; ( step(_, _, _) + -> format("~n%~n% Proof steps~n%~n~n", []), + step(Rule, Prem, Conc), + portray_clause(step(Rule, Prem, Conc)), + fail + ; true + ) + ; true + ) + ; assertz(brake), + eam2 + ) + ). + +% assert new step +astep2((B, C)) :- + astep2(B), + astep2(C). +astep2(A) :- + ( \+A + -> assertz(A) + ; true + ). + +% stable(+Level) +% fail if the deductive closure at Level is not yet stable +stable(Level) :- + nb_getval(limit, Limit), + ( Limit < Level + -> nb_setval(limit, Level) + ; true + ), + nb_getval(closure, Closure), + Level =< Closure. + % % DJITI (Deep Just In Time Indexing) % @@ -9200,7 +9325,7 @@ -> getbool(B, V) ; V = B ), - inv(U, V) + invert(U, V) ) ). @@ -12303,8 +12428,8 @@ ; catch(call(C), _, fail) ). -inv(false, true). -inv(true, false). +invert(false, true). +invert(true, false). +(A, B, C) :- plus(A, B, C). diff --git a/eye.zip b/eye.zip index 106198a8fba50dcd026305d85883b75aa631140f..556ed6beca740a59f4ee7e06b3f0ff55de88a448 100644 GIT binary patch delta 103206 zcmV)5K*_(f&<5Am1`SY40|W{H00000O97ja4H^es;%#SL;%%`mh5`d}&~3A~0(Jod zaL{eDFa(4FeMA`0wDWl>u@slG!siAK@bE$00hzce~Gnscr|`v{n+6l`^Y0^dVaKo z&q3(>bJq73w#NY*`=>A11!qIw2k_mn!+;UzY#Bv?IPG*6cC?JA2bS-4_#+RwDSVHI z_!&SOr)?GsK5_jSkYqUaG&I9Uco&h_-#@77UT{x5y7m3yQAB)Af5by~4f;5A>N~Ba z84BC4e+T#~%zIwnJv9aY@~|@nrrae^ED&6yW-PM6o-+s zjtVPGdMz`umWG~Eiwod#i%nWA3S+)u0P0Hz|4jUVd&O~$dyY)^Cbl>Cjb{I2pWPoF z9ULDVGUNF0_(l8ZxPAQVeiK0*+XD6A3iN6)e`c4mrP1j5!DDDImJu_oeRh0!_)8l` zpX8OjaSOU(3!IGEg2C3{(?_-lO)uiJ7Mq8l*|1Si3l<#c^I-=)vH-|~0sb^HZO`@= z%w!hK)d0w7321~rk5*>L0eHqtA$-dQG0)h{w_=xjks0B9bKBv98L%JO-bjtu+owrp zf82B$w#Tq9>0&F`S$-U`kc%j^EyU4cwr4r<3~5NZ9ox0l3^<$^AR2%agwP^7TMT4j z&+(npvVwRDTX5N8GaFG);|LlBHWDXWxQ>n=GQl0E0T^tco7S39M=(fwfDDZkiv+f; zmcCnDi7guQIP_pjPGe?1u#9H>%&iDpe-M1`JC47?rCGi=vvEb@w9yztmpS$CIju#? z7pxkPDoH>A1esJ-7i<#8VNi;KV8m{RH}3}*{R_6&9l`g#7W*(5zrA@kW&knlUXMSro7b#+{gM4^aDCBYfBk>o z4*R1KyBRhHSGSjgKC}(4dzbGn2G?)cD;Rfu14=vqRR*Nv8-^1qRD=EqkzMtNy|?hS z`)Y7G7=LUvUJu6Ci1YQ$kagK@cQ_vO-d%Qw?DpO8_GZ+F=`R57_2ByT5N7FL^{>YV zFe|jN{(JbsMsK^9mpE0U`wplde3$mIOBmyA#{oSaaB4ii+?j_(Ff8k(UVgh_X z7G%ktK$(ws!d&oE2F{9|`2lIb`Ezy#M%u*puQ3lF&!0EYnK5{Yl^r;&y2=D+x8S9e|zEiA&2jC@Nk~R z+jAI`A_DshW|D!4j1Y|lF$)^L6q+G)g2{y~!p?xjZFFGgS`MSFmAgi|K=?}h1=?SA>v4(6b|L6*0DAL$#EBCWLs^BT)^MEK$ugQIgC9<5Uc{B z#=GW2#!&%Og?Vlee>crJEDp@WgYCvH^I~@jU-PU@l*9Ae=zPIDq1156`IqOjq!(f& zFgh@uQal3IAW@8~L1KDhg*#gzk-!-iAe4uuBQ(qeENO4e=&zpXa-kIkj8?sMWA7o} zX0>Cfw`OQ;p_bGQ$0h2sC(dPCj&Qb#v z$Imp|0$!`ojuJD0Iv{~jne!?Ixbf?HL!SU?P5svxLzp?3j3DH5`=Lll+8c)uCSk~! z!RgrgHMV(F%M95I!DM0_Aa0)dF8Dg&bM*zs2;Acmh!GG9fuE|DlFbTd^ERFgHL9HP zf{u>pFNYVef903lXxJ)?wWHOzacI9`XkC)AD#F&TB8$Jl%!B+aFsv!*>Fl6TZHPo8 zX*u+>BM{4gwBi(Be22SjI0D-q{olpcEeLx}w-4uAL0Q+HyHM*Gt(ys?tf9Ea4dId-4DL;+~98OwzFi70J zpQ>kMf*34$*pDB=>305YsjLG9>2ny`rK_v4a@;f&nHY2GK zRv+xQ8ml{!5l5;>{dpx!&tV1B=ftH;s3rGU_!gfBdN*NDQaAbpRZAJ-8f9Y5W<0r6xCwB@~^SVAs{SWF)!ET-e_2XdREz5iQ%-(@0>W0B=5&*Q?HB(W+ zuCAY{yq9HiqYi#7d)1m6D#A~qKRBt|5O<&{fgKtw&o$z~lm)ZrWJd@HSu98LS?W@v zHOST>!mzA_EHH&&o6iEX7!(>0$&N4Lkmm-se{0=j-C!0tu_y>T!2?TyLqge1sz!>7 z<4jk)+`v2@%0kTQ=~4YC)HKVnc7eD%+a6!lA*9`l{jie&#VnP7;`BfXFvygj^dT;6 z9nfYNOHNdNldGje)IW2${h@w%WKC@Z=o9! z*t%93r0K8-EkO`x!}ck!6?;~8=Vy&B%PwO?Axnz^<6T>1A0{@0@34`2K4$O)Wj}|o z-wI+N!&#XV8|?~*m!?=w?oFpkq{=Sn)IxO`DRp^rBv?cDJI@YwNHo%+VKh4@iH?sW=^-of^aS(9&~=Kidl6TIZj9) zvAteG%TitsXcZ%XcyL;#=&R01f5DlpVqM8GRU0*~Y z>l#mVjW2YKKkFKQ(KY_6Yy7R)h)IZw{NmWI2>RZywym^GTA|jLR=$d~f1u4Xym&k9 zbU0oNi=`O`2lAu{=kWzU@OadL$mOJScp_G2(1G(9ooL0gsh!@%n9h0g$05et%@4)* z_mDZa0ipdL{v&aQoP6|;L@7_RKNKUle__(4;~KQ9)#_k%asaqGN5B96d*|@Db9_vx z81V?Fn1{B9EDS~Toj9cJe-ht~<+}-q9s~ZJC@2Ei4hM+luyc6SAq23mUGtfUr#%OJ z;mv#p6i0_05-$Zt&(h%J2^c^@XzPA}Lr~A*rWXfK#o{}dW9d51zPUsr051u&@H^%Hb(EMDhL1HR|9bYqxbBL z{nki`2G`-55!U#G6CQ?s*kaA+&sl#sycsh5@UhQA{x!Bk%mhVn9x+9v?#`2>=x+e{ z&1<&Ur@Q@(TXTq~mlLVZIs7>Y$s1zZ(Z1vgu`Cf>LHwvCed?ivnuPO?Ld@+N7dou$@e`>bd&A+faxKm(_ic%q=1OnQC?|FiaTpuEnI|BIg z8sgi#6c>VF3qUp7&4ManZhwO5>`CNL@bXp2Mbm*4Pb<(;)H51^@pCo;aVuC7O{RdE z2+YWL6?hjueX&rBC;7c zAndX~7dINFwq(1OaO`mkQ%LzyJ56G%jzT%wd-)|ND3{}%g3(N`0h$SkYxl^vmDG5J z@J_GRhilZjI62+MRi`fKn~o0t$iMwB{71yB4h^|*f3`X@B&NcS+-)7k22-=JK^1Qk zj;^=8+nKB@^D`24WqbH`i~GLCZe%&mevYyt`>f>`IAku2vANjKzze`glSY$2sR^40 z&2(1!tfq!-*u8koffXw9 zI5xR*ST(*SngWF1mG;#3uDeiGpF(SK*&Xg`|TdP}=k%ii{W`@L_ zCn;hh4Ue`)2il!Oh4-_1{>YLoqku6voBZQIHG|Eh zxL9ESyB2%@7g^B^QpD2<`a`s?E%vI#j$nFN*vqCOp$KqDFt7#RsqW07zmsuzq4>6m z9yu+ml;5bLQGP5|^vO2zE%YA94^)yMe?KPWRLM6u^}V*WPVP44()~d zM8ycrL}LHYt#?A)fK|V*jf=IcR$ua*){Wfw^bY{M8TOg+hI>4;EjCQ+Ugg6?`X#3=@S^+VyS4KDmNh%mP8ee{^?Q zOG3e&++;}T_~;26E%A9&;DHawz?$Z!BX|`g+l$qMJzhYmhe~waRQl9n?W0Q1)Z@_M z;hnPYRVSUV@5WmhEn2$q(Duw{JcyP$B7@oKSd-n_%GWeaCtvR-fSy=Fh*1(uNmNKBOGc+*Ut7tB2*c%YsgwEfP(3fz19 zi|4Pr4$a(2rUq_4L)u54sIchX3@4t*_Zh`_kZKQ$;R5xL3rP8q1rC)Jf3C>{6u3s# zXG7?(tWWb9yOj^m@fn*wvdVEeBHFcuS9UFuBgV6+Jr_EgQGk;{v18mG|1KhLo<~E0fe2pXpzLgx( z4W{p!N&qtaXt6(=-&TJ%fA>gNLGAe)iw5oK5=RKsk;{>jX2cF4i%2INFh z4PaeVB2i>Gwy-~6CdFyV5veHL1jr~uZLte+>OcRdxO0oxRj-V*fL(>U-eyr}3rT>w z5gX4KrF7(|loB9M0Ik~HJi<=ByHOs5AS#`zOsJ5p)`n8R+41rEe^3fRPVUO;nA_r8 zMNbehto-oHj`7oRe(v25Dplt_>Q(lY)Dui-S2IwFxr_@b!g3Nx@?s4@s*AN5rrdd9 zScCvre6(;vOk<8W|T8U0Boow6yjn zV@UTYU2+r7m!b8K2}0%M;3QbKRWT#;?YEwc+NO z+;TwOIYy7K>O6Wj{i_-Ry_2mOB0+2T@uGA13$Wj=up)Pmf6^WgB1_vE=vqVli4ZG7 zCzh-Tt?iCO;cE$y9=kj~-L>lRw6d8sjld!sft{!L86S&D8rW$Y4mP%vlZ)yx@V+*` zH)H}{wo>x_q#6LLwEBrA4gW(D;V^qC5q|PxGT}MG(?k@Nv*&9Qwz?uX*2Dj?L%O}1 za^F1(-z+?lf00WUn(AkO-fET*S(_teCH-TS2t!j zxUf)sc*3~FM>*bwc1e2qU7v#JUEtrC>(29PvvVz+hRJh^Xp3w)TAy*R+6?Are7h+I zeX%(P{rS6N(CktC9YW9-`Kfygi=*-e@G5=xq&glzpAzGMff1txF^4k zA|BB9+cm821#vDfniCSRXFOERukc|ULN&}7o9HgAMgeI zblx@qumf~GKY~a=me@!D9K2hyrj&MAuNlo}D0AC;`E7=5(7XRY!8l>gONtlT1+}}FfETbctti|-iQlRbYE;ZqSs?RO_h=BU_ zBP`XGR}PiC;PfVjp&l-BlFqTOf7gx* zsmGzGa6Rl=N>#B9=7@Kqubf;j5R}jEZ$X6mEwHlwshJDED5`!;bPKgokl(3Uh2JDg z_*5hlq8kyzKw533@<9F?#%^^Wo1Yhx+VO{b4|CMZcQ4D zo9^+Ct~cDv)f?`qdc(h`ns6^yO}MA33G*}6YH_8G?$UPG?sgVA_ybtr+eKf3s`cicTnY zw2i&={PxuIXS}T*RkpnivG4|D#a}wy(N9&!>z7*(w=H!lC;N2r6oSq4l>j#onEd|Y z?v$k?Yf1WVdvD&D#*s7*|L;#RPIiBQB_xm?C-L;w>S^vUcXkZMj4)a-Z=#{M;k|8ZUNJB!T1oVf1jh>rY_`WxblcC42~{8x3(WUQFo zh*}MLNVv(f*AmzmMDn+b~?|U0xW#Q7rwSS|-j%jOwGr>16MYn2f+l)&_uWes6 zu2M;GNl|m>fJ?6Je}>CeDi$stkvAJiqMj8NGdmUt^&TrDZnR4MaDfdNel!LEB6jRvzRj$2z4_0Ttya!C8s(Nc$0&P=6f z2A50yf@a)}5Zb`ToL2uYdr zE||huMgmHii<|%}NR2KE-orSs^aUZ*+D^mi8Z(=Ir>zO%)$*>C!Ehf)XVU%Bp~e=> zP@gp8wm+0G1;Jjf#k16b%(299>?k!fD-XwZ#fp@kf5esmmxSd^B%Y)AKV)^nQ}+3d z)*e{K!Sh=1Ss<&G2AGO*#53$cw2KqzgbV?tz>LgtKE7u}Em?3J6#hjZXEsR&OZLt%2zT9a%L8W$wROZp@goDh( zaS#@vaVSQ{ATdq6F1l*yGwHyg;mo)vBwkEgf1xw>6OF=5=s<9+K9W`uzY|$bX3u>n z!7fl)o~#S**%eOhX7-R1$!$inAucXE2gaIjGcC?mi0!R+8%tZ;X5a<4)psfzU#AzF zHDp(VhjrO)v`dMck=gZG?Eq64@LIP+EOt5s3+9B72xnsoxN(2ulR+UMf1Y`YcVUlR>f zeqoJa`z@!db%oDi_%V>X`I>LO$P!FGaWO5vThA;lb6nWcnrM#R1jH*ed+2aY;?t#7 ze^e*av!7Z?1WFijlivZ?M66dcqO45e8zRGDT>B&iND;!%Q+ z$)V=NRTvTyIz-!yuZxR(eIR1oBah{xe;HJevdmZt>@esTc~%~t$~?P*DEXt1@QWhh z8f+DEb+X;RhkBBuHp<(mOVXA&xy;ZW%3`i;M+&M~9>G&=>u9vaUF_lWR*X;MX4B~a zZ?n7n9awFRumU^S=#hk0a};^YpO97aNzdN%l@;&A{qAhra6$^sz7$Da%erO$N|P3U z2vhC>b92^II_8XhcRP&6Y*j5V#clHzH8_d5_SYvG-ja0EHkp|LpsQW zBIq7{1{C|00kdTZ9lQW8yOTbXDI*>n1E)pu4r!6oxjkB1=%4Vs?e;d>S-D_o2^+I&z0bm2tz%f6^&yPYmNf&O^&n!LL6&_w=XF%(h86YNX{Z zFwe8$#n>+Ac>defVD@A4yJ^a!i9jWu%N$;gcaZIeC9f#$WEXk#dQCZWCSJjzg9$xitZtFpaN(cQ82d#UCM5PW?FQRJ6R}54}=Okcze-ixM zAQOs!or(Y1cHARs0jZF5kxRd9`&TyMow?)eP27?+y}4p{Vet*h71@<1IZkh4CRrc# zzr@R?dlRVfA(QS5t&JkIyzD_QrC8Axw@*OJC__4iDUuK6t)r#Cso6b4#ePD?|3_W`5m8Xw0}nx4LvYl@kfdS8+AV*Bd%> zyf(QEH5z#>qR}~|iyo9PxC>P$%AK6F6C0|=b9tFRiaEMAOj>Ljxc3WrlFF*vrWXky zjdrZ|4#kW%49OSGm;=3wVieUDUepCMwxDGX zd~4*qIZ7m%ly@}X#u4?hU*KfAZ+$n-MVnr7U6a8r2~qhsz;ci1`TqdpEYOhSN6TFD zI=`QQTJGBk9AF-|eEalu*qg_?{&xFA1EDC^0W?q{XgvMOdth4>n=Sd7;o zq^ce>IG5FwZ6C8+P&qFRQ*w$Vj)BR%yUpix$l*f!z#6Az*W<7GG z6P@OJ<~~uGq4+cM(|pqDJ?69?{|-ASTz+I%p!+NL?$Ns=ct5tI#H(ImS%)}>2KCj0 z7{DF@vK74Oe|t!qmDTS@s_tD@QfnP3!FjWG^I<7XM<;V!XW}=IzaF>gtr{`v6v3vw zA`vi)hY;G1eC2N@OA#NB)XUV&W~jaB^WJPc@G(rUm%TmJ!YqggdiGQcrA@eERV}m7 zVI7`af^qGmSsh2gV5Hx(Gqp+)mDsc@t|g;~=yT`7fA99;!hTcJCNijAYmQX(vU}aG zwxajk12lmXco`h;*WPOf-{U4qs9Y5j68gKIN=Nobj4AdX;FOtmw9SmTJj!KN54|gukR3<9wgp!(LI!e!J;1r zB{f_he`%B{Ll1H6C~UwQ(>A*_Bi!RyVF40T0SN%}r8_op$0lw)n@C_4*Sy?ys|4wt z7kdm{MH}+HatA~TMI1+3<`IhJ`Te>1xC=3db0OyN+7N?>o2MwI;4eLkjeX`tL#8zD zMV0|NnuHOJ<;DjRi$~W4TmuwG$rJk2MhHiFe-VOZ`?M_$RDL>vg8LFP6H_j1uG!RU zbD5UlqAfhee*Fu^(mq~E8X7RnQjX=&k>eU5F*}o1fWkp6c;Sf>W^5ebCiyNCNmsrgLtxVv^v@Og=vG)j4LI0vY z&qUK}U+a+7_}XmSIieI0m?YG}b%WJMxpm>*hFy8gEfK$HM=!?;9Ul5vK|2?q8`uSi zSd$b^!;W@Bbd@_#SJ3YiY)8U47nB6Ie~n!z-4LD|buo{1a86!br~HUz{j#V z=^Nq{wMp7T{h;2~+t!J%kupF;aw`CyqC-9RuZo3#BfPCV_<0nrJlLI0&bmDif8YN> zs6rM&Td;-?mc0!rSQ`T zV?;*+l+$a=TnqJoc80b(be7cSpP;4H=5C{MX)6vfo?AK|_mm~r5`kFRDfR@WtgWso zdW78&)vYUT1JlA9rVC8Proo(Cf40JkZ`lkyEemA}2o09TOG|}wKa9Q%i!YbGS1Fr& zCDz)eX>nw$vB3b?as#ksv}QdpzEJwD?9CZ4SF1v2WQs914z= zs`J_2M(J%r7!i_zrj%7%*fq^29J>Lw`7+aHw~)2P&Jw4i(ZKIw30^Emf596F41^!i zT|ft`nKwwV0nQ5#`e?Lem@IYfv0!*i*8>5y$>J=*=Etf^4?n`Qk5*Zyx_bEL^=|LN zA9jC+Te5R}vQ93G#Fz6_1^c7fsr2@v{8(&V?9@Oowm~JgPv;*DSV|>%vvM`b@FXe9 zaQb?wqzDGs+ar>J^rK#Pf9%urhKTSfm2Ro2@j?36-Gd)=!*d&?Bt2(HE&bOl2y#fv z@?;Rz6~rF50a(icz!2qO=<1fIFP$Qh$RiQPQPU#KxNDxUpj3bkJ9O6IvkA4y{MAbW zu0jTr-Vndxsj*Aijv=4MlMsM#Z{mmDq3dWF2L)kLDj>8mEcZdwe+Uvc0-Lf;@UL#K zH=2O!0tAytI6r|k(6BpM4Ih>Re|okuy_%vHf-o8f6Tk1Beqjy3l&_qRM&|>6r8gR` zj#obp0p8Wi;A615>4%dqsPlW>FdV@n+@nyFIeF;PZ7FoAS1!MxZqrg(JUq79oeWMp z<6!K!6+X=j?6F{#f7}ss2>Y)m`bF zl5hW`!-cVSCZ}|`$>{8eQLag&R6TpEqKrU3>2_t_DLX0rRiIG%SL2BvMbN^w1Sz+?9uwELc+KSi7 zr>MX;EW|45KDAepD0MH+Y1<-4V3ue(lz*k?~K2ho$(1 zN>ph!9ve=Tfa0v9PC|U>0i7`+!s+|HL3e`Jq#%Uu z6q5pk0x7Aqi}=AH=mk><5V9{#HIEu1AGQ(a7!5v?^nH93-ha2H&8fxf3LyxVl zL_$V^fA^qf7mXNwkw?)(TPSJ{{;KN(W{_7<+u4&E$h4i&lNbV3k^kEGxL``dS>&#j z_!j;vbX0}Y5TBjumSAOK*C95JogogcK;!|d*Do!8*7wKL3y5E2Mv9<2AbFCnOk8eb zLzX4!(bMSC>q5V`t*Z2mdxW}DMC^e675H$3f775lFsS})G}#>u^-U0=_jEMClHo4? z8cF=ZL{>Aw$)0Ln;aLZzHN}IOPU97c95pLZ0Fe1!i+%@ABX9vx zN2dYhc5;z6sm=)%6VaZi34z^^bb=N+oKo0H4N|cX3#o{>_vFJ3m5fm`v?g-}dg_6e zf7ZAy84Lg{k!OQ0nrfKE;yU?h;eW)gOGLByucE`J^=K>$-nuGYHK)LNRqRI|#i&G&(CD z$e}+-=&SJnJ8j~FHEZbrdS` zmstQj_V!9!)NGr|3wL+4(XX^d>|r~H8F(k}xTut>>afj-VY?XLgmscE_Q?M;v@S}! zhPG(I2{ZIc@+_$=NWq`^a0BK}2iEX0oOvDK%RPjPb+RRDc#aO1)hzKf(h*8FV)<4Clago>BN*gQJZZzZU|qm-Z#RiQaqe@_ zooqEV_Jj!$WoRd`|El6DDu8yj?nIWusiOsw>`zWkDupsAb}I#l8C`e-f41PyHvHL# zKfCa!)5ePBN?}DR-Go1Hf8oy_Ez=gA;ct6E|BGE(N15c{0F8a6McY<)CpVF1IV+2P z*C*X`8+2(-)x0_*Qam-9I|d}7`K3dQnO7!?%M)uq18^k=ugkUma%KHO!mLJ--nQIT zq`0U^|Kc~83j;EBU5}kiYcVIjhMFhW!eeQ~;T0WPk?8Syjo&5Pe{N<#!Nm*eSMx%# zv#gn~Ks~TvNu&6pMl9rNJ5>!ZWyw&S7_?xbWENEX@Qa7a-KlD(QA3TMCzk~U+K!U$ zW28xER_%a;@RTA(OI)h694FDK#=~lnpl@EsuoJ6jfGb+$n{<(FyGv$T73By<)s}^J zp)FIL{p<`-nmk(Qevzpu$nuftTV*qeF&;7_$S%Bea}1{I9?i5O|fJ zKyzQ=#fEk&{cOq3ET93D3)VB{UPm%aeWL)P?a+~sTMOLt4yC>rP2_zGE5n4lHHDW+ zES6nFpzPpvPYP+er!3p)?cN`i_W;~mq*CnWb&hp1f9vo!oxV}3kfd{=!yz>A1RgB6 z>Rswo0crdwP3rMGZ&8hb1|*gRO5$??BQW@<#hIb^}Ow z3nV=(3OqqntTVQe@EC}SK{9`IGTS-FnM$K-&Zus7tDIxU5uXkCSe)m7^(zmYg zPX~(@e-{r?Gp3d2wb|T#x6)nOSlDHu2(mMrJ%GFLv(1 z-x)8C9Y+i=c8V0Yf)`s3WmtMv3@$|;NqABqrvSUYNRM`new`R zR!AsH8pTf01&jUOhb8tPBY#SS)LgZ^35GMgjBizdlK({^Q(O4HuTovb4N=q8*=b{d zgps#rT3gzfJ}g<^DpCUHO9kQ-0+PXV^4h(h+YXQE=_Smw1BOCd69ySCMQEQ!y^ zC-J8Rx4SP?j{IQ|#ok|Xn_Q#cG{E8Zv%<5I)C~0W317dcrt{moPrwYOt?o-9I{d(q zx*KWQc-yfZN)am|YAjTZ3(tZJIL*K{e^V!X!A&Y)W0tCgh&8KmT#Oc9bHregT3+Kt zt>!^%h+HuMu`gS?bs4k^rpn+BQu8@@hocTTr*!(k1kqaX*~jyg&b=Grmq!qp&fjGY z2gN^-q#Tvz@mj+{imcv=)FP8R(Th7T?S5*bBwe!T9%D8Shz&JjEejTe#eL&ye|6hJ zh18MdjXm=18_J%sI_YgYZptyyn*Nf+%ve7kK!6HxsLKhYA-np(Q2PW-9bV* z$yv-&l4D-NxHcuChzvCegzfa)e?(d8sh{VNFab8T4MLZB0#`dUHp@6y(Kx71(7FNM zXc_>Ct7@GC%dE}XZ}vgOK`n6u9qT4HxPM(>xiL;BQsm}^QW|4@MeE7}iR8*A*{V?U zHIj}C&gOQaVjNlt?Ezkea$t@Xdoj9sS`eZJirD6HA4oh0Rl=f1$=k-ce{LJ4b`3#^ z7SCuFgHkNN$ zn^eE-O77dDofUor8xW^XWZkd{c4SBlT95wWqct zJXIwh^AqA0t_K!ku37k_%6q60i{yUhkR7FO*{*oSUtI zW3-vR&)`K4>+jgM=n&paw0#oiYlK#Ojgb9i2i>Ifd4b0JW70{Mc6lgyYpefG-RjzE z<=55G<>2QC4X);ZQ*Z1^xnP<=`=3(vnJC+6Eo01gOIq75UjbbDq8qur8FbMRH;3;M zh}o^H(I9o3%Tle;e;G)&Df&PN?02J!Y+%nJC`;-HaS}*zHXuUdEJST15#8^1prln` zL<=aP6RRb){m3C=RZd4A{V@0whpW7Ye?-NtkOtLY-bv>WiU-6`$Z1q0-2<*sY*gSm zLX-uk|Ix>);|anv(sb{lOI&%1jSFxR00Vg5^XDEq z2X;nh_(?|&ER0z^EdUU+6sYxe4`WBV3!&(OQN!p-en|uar`Z%a3P$a?+q}hy+sux& zO(cxCv85rZSSI@$d`R6WVPA1MbTXkBqbOI9I`;jK7Fy-!4TNvaGNcNiRtlA`duwg| z6d{xSc2(UPe^C|h`7_joTB(6kD}~?V+R_#G)DMrj7E%;7NEjaM0%m#Eph$SqC}xJe^u1ZNu*c!|uQ)5#YH%MOZW#>W7HX1V_e| zuY1*YDHBDjD3dboo1Ic_$e&}Nl=8EKQfLeINr^rNe`CUZ`9v_CCtb2@TC=P}zLxd= zF2N+I6OFq)On}SDK+p!O$vv@fJhUr~EH!exueeOw+7ZYrySmUDu@n`pETwN{$=%9N zJWJJY*&Z-bSpcdlmW+aH$Wgh2qh^ZQ$xFQdslzmOVp7Qme}8iHEg`zF0HO;{L>CeeU5G_=Arqpbn@4n%0@44+^YQ5uAA;iflPq^(DOg^- z{GeqB517YS6lb(V)=T6C58=M$Kz-9kQYefscmvoI*NKQ1iy)#T5JBCm=cJey7?k`M&3^?!kjD$0 ze|Y%12p+!jZs?-{&TjsU>hjDN~Lr;+&f{cIv4#H zZ(NQ;oS;cCWLl}_vVQveH!mf{2zH|T-}9r}Db1^BtSTX)B=M+$6%A<8>{3xd&e-^=pAK^Iqwdt;^(=B0WN6di4)S!lGXnYuVRt(3l#!7R$nA(UbZu-e_pm1 z*1g=5?_ec(BtqG%q=ko!RO^`nS+T-HF{;4>RH@-wg6E`xh@gVQhGbG$IK(B#oWi)F zixnM`ZLDI%1xWrqfi@FL4q{rR4Ko|+M8UbFynzY906E}RCafyCjA4a!RekL?{qc>N zqVOSVXE(*O2Zu~n!PgO@%o;5ce}|QA)TY*?1^`b_|`n zt9@p~BB#r7BWb#eWyiu`K6oMbVoEtN+P3ths$75pYwD2e>R5_p0hM_8e;sAmhMeJ; zQS<}bOql8|7xqD}gMm8rK{9w&wcnlw&W8^Io=q8=+`zc69K484fTZ3Q4+2Z@t~ub9 zq&~tI@(0(6wR_Pw<^z#5O@%akAWF*z3iI)S$iW992Oo&y_&^~mABa-(fx?1(AVN4_ zfDc4YKH!*9^dkiyh)jwuf25-5$VJi7JbYkoFjDh@$i)YuIru>SSi2{#G`3_N&2r_cT0#FxFJ4qDOO>nUZb6}B%Ihoo#_KEk zSuEGv&_|hlB)ldf4O!+s$IxjTVeq4BXj+ka_MHPeu4hs>NSZ!5TXXXRZUQ94ePP4 znssSSXod|4LWlf~K+&>z$8ywpfD#rET|7(0TA9F7dO(&?v0f&tNC?iXPR+euEST9( zj~OUXDLFFOQe;rz!rrrIUiGoJL`tNBsKGX+j!=~+Y({EifB6$aEseIaRWTDurL#`t zf13GW4?pxSZ(8?^;U(-kkkY}?{eb~p^@H&9HE3Ju2YxYVH%}NhNrHA%P zkIYJsM5RY1ZO)q2XV0o@OU<=s&wg8KK797<(NgmfJiXTq&u86pUq2bp+Y^QwsTWjk zFuLRqN!XD#f4H1;j*+3Ro&G$cj@()NO$_!gn@=^V39&hl`C4sf7C>~kQf>D!x9AgW?dA22+>tC zg;7OU8I%8%m&`xOWqf1JqQ}X=jyrR3<4!y?md5hXF&1&k>gceap+zSbwMy(72`I)N zKcFOUHI(8j^iH0$@}FBI%*hPxdL=p0lUs~amyWoZz9K}>pra%NuvX!lmr@T5FO8%Z zX3|e)f6{-=r2m;oUjRBl#lOv@f164FpP7Wn5(cRmf8jTNWs@c(^mZpxjeppeA1-cL zf9CX%cfE*um;#~nBg}?E(qIRiWsB0=O?s6|p;KCkX~-@>ND#{oM8veCon*AhfGegm z<8+~CMFzvIJ{P@J^6QOBGDH^Ev28_OcQC%_N>5)o>VH(O8kS|!e4L_U^Eb2NdYX#s zmWpfZ>nUnJ{M7>N!(W@Js;-+=tLv${U8__YHeOO`rmAcMdae3fs-7EGF1FrEg{?}Z zYMI+#Q;m83cU#Zv%|@!q&2?Ml_4PCe!@H+hy9Hv6MEx$p??qpRCf%oDR=g}&ut=_p zBK@lVtA8~^*>)b{oh-9}`ODsY4n=B3IJMA-*o4I3wZhDi=B6@1p$$LrdvrJmAn*o)1=J)^pM zSFLVe-ZlJ*;3tC~Y_ipc3>CwIpD}}#MrYmnHCa)ZmcRwcY zA2E6VFD9=LlUIz%E5+nJh{;=u$y<)edm5AXJSJ~7Chz}Z@_vrV`&UffKV$Mb_{1Q& zb$=ifFMEX|%z>I*!ViZU$tNiJ#7u6ZWkiJANqB|kNj|BI6UYbO5> zCI8P%{y&ube`fN1lziVz{x=Q9LX>1ZmZQb(_nItT-fvm-f@ zR<3?WNoq<>2=v-$^pZ^@Wvx=8adF=H-DngB;kid%UxnB>mzAQd=3l`Hg>pF5@$wkz5I;xSf~rZOIC$n?mvUB#5220`U)6_S{f-A!rGvVVf&b|H<4*K(H1LPTj?H@2 z9(57XM`wI?RVj;nN|0{om7=N3n?Y1+X-k(LQ?q)$ty~M zEl1(tOF8r}VavhE;b`pZU5cr*b%!T+ko58`rjs=h$c5_M20T!?G6euz2Vm>W?E5nN7-W?E!Pn;=eBEUf6Ro(xVspy}}>?th6PTco`L ze%LrEf~JO3D_$)W2h5tV+K!0AT(Zr?BQ_Igxl+gz_FE}{VB?rZr3h!txW$!KiB5`)0N;%QCIowfYPE-l3;-SH`jc3?R zni)HDdRmUybqrq^97VMFhqzQ`8Gn#>o8GCL(1)d7ciOus_5jK6N`F||flGhY8Cojy zhpkM>7UBmlA1McKHJ?GBfHv{>%ii{~7mXA@e|70?D*bBNH1wl^ zD2ILJl}a(QDF~*4-@-!E(nUWtx^ASACh!wEKXdFNiQ-U+H_SZiKP)l6f@_dcmgwb_ z`xTHI~OvK_&v6sEh$y1KimPTwidd{wm&DYjh}7X4d20L{A@fAEq%7?#`+Y=75{(9~+!sJ3Ce_zME~Wq{>1 zHppcRhT}~XcX^!)q@UZ~Xh@=u7_Thb$dJ73Mj@~RYa@!Zywu=0+OZXNt#S?PPMKl! zcxqngdz18T6#*d=PFJSLXF2G8f@RLsSIN6^#= zr?RO!ZXLpd$=%*}NNoXPne;F)K|GzZ*;i0rC2>^fX2AEk)|F{SIUT5Hmvxr6%AdSNSYvy;$8|E216z#@+eH;e>fcEtv(5f4D5em zq9X%JIgb$eTH50qsg)xdZ(g~`xr@t?Dh6O8+MUX-RzT;sLs98*d^$m%OoAxVfa1gt&VK^G zufAwaPPe<0p4g)hdGX&*1&Hn=>9s&&gGN%r)*LsC6u<2i8(Tv}z9R2YmRhN%I}`SmV`S;t<)p!+%L)i zXvF_AN_g?Mp}#^RiHYPj>pJLu(0_kT<<;NOWLj)SAoz!U#PQ@jEbpRmVNfCpFWx2H zg($#UAqjCXQM46W&b2w7A&5ZXa$u?^=(C;&W=}$?CCU(xr2Q6Yv|5hD)3QCaV5o+J8DNYRf9a zkU<`BGkJVQB_}MGd@Ig7`s5lr;yr{Zb_Yp!_>z2LW5+gVhhDJp{jjLT?ccWv3aI^k z*m);Kdhx0oz)p&XV$zOC(PQDkreeL)yqs203w$b|V1Lz7u&Nhaa}->Y z3tmn`_7fu#^>^P`_QRqSR%9NUh7A@>o!$r2i^j~LYfOCwjIT=ZN!jQ>We-8Lg*Wkj z{mTp18aApj*ck4$_!DIQRI-l5M|@=xU34eo6>=OpLtXkSp+ALwAFfs&vTn=3*`uHP z{sb+w*pZ!B;}H`>Lw{f*a9}A@i$nRCSINeK!eH>i6v~UG0-t6=RqC50MGJ%GhVA$X zlI}n@ZSPM90XkQ~Q|E2dH2a(rtR$>FGKRvO@9xsw}18SsvJ{irzzDAF6li-{H zH}bCqrwI6*QGfawo~JfZIyZz@R`>{PI#jxquXCPQw(Lc8nDTap7vx?~huGg~3vc|Q zEVimqONjZjwNy1>f5|+yj%3LFDK_3k z`EL}ZxR?d z>apx(bJZzWcZ^QK={h&jG@YW$?NXxi9FJLG z;i?Xd>3YnUYYqAO?T{vGG@qYmSf4}VQYbd6nQDd>t{mZ{6ZMFA$`qpRaE3BdIcD~#tZigT8ei2uvR>QM%zg+ zIy9rE>N(ycMIO~t%l$)S!{>_b2B5HFtKGk*#IajZTaN@&McxGTd_9^^nM|*@7PZ>T ztdu?rCebw6Z|U5I>Ze{IrE5@Tuzx0g8mOkqacq$b_qIhbABTW}(lfjDE-1tx?M(25 zLlGQi?Y!%!LZ&eC_bhwPp}Ob9?>E-HhV3(l=55}w%9Vfmm&$67%mHWLihmH)6dbtt zaVG!Y|Ca7&+0;+^!Dns5A=g*5CvxPie&u4r;7@-t0sxLpg~GA=6!$uq3V;38U#W=4 zENK{mV^w9M^r+#aC~ECPEoCFXJycfy>KBxaz^eKFtAH)m3Vl#&ug3_dahG(Ky@8><>!e8eQ{7Q6nTLwSB^n8leVb~AI z6YWTf#!>=MzVrHnVl}%E1%C@|UtO^Om6ofPwc>T20XDLey?PB@;J(yYLyL?fHFjuiY(H_cfjKQ-psJ(uNq4ASYJc;-o6BCyJ&@M2 zHzs|TOqJWQ)W*6S{(ZTP#U?=Xd#3iQ_f76z<8FPFgNfxN;yrsFcYaF+4fpFz zgho}H5k$JTg_YvBOT9h_p`HL{noHHV2%n;jYIZ;^7)^xT=yyK+q?!m94W=HSn>?g(9>vWO;}H$p95u)s zH4^4Xv@zct9c6{x=r>cOt~~jvY46dA;ivcM#{ZG+P0VRg-n56egTV6eC5bbmxI)yqeYiu#SC>daNtJ->`w z#~t^rVYXGlI&1Fd&@QATg?*uTuza1W<#s5pzV$p0nPDq=n5d9`wgYQ#(5$(1oW7u zL!DDQu75I~JuAw*VP1}+W|dx0r=idl_h8!%Pk!JOlf@C{b`34#Vg3B2 zV}0A^OXmp;{5`E1&gb^?JGcA!t*d^1@ZY)!B&;s~`^vgjnZddlyl>rZNVU#co+Z6d zE?81ml(qiZPeHGt;Hyc zukX;2G4?piv~Ya%0gg#@yjlxNNf> z^Ms59ekoa@rHZqbT5cZ~Qg{yK$5c0ekD0?5O^9O}GwP8t2LZL)9>o%fI}B%RKyu?~ zrhlueT5vKj^i<|s4J~s94ogXunpvV$&WV_~kel-%O>TOU=3MXV0^Ykm`i;9^bzy461X8<=|;ChSZYOGt4y~ zPWhGWJ?W4k)96S2?YNJcL81{sT)uq$h<_Cl_bvx|D+7BgvXFczEO<#H!(vUrZsM*x z>0XjYeQV3vXxw9+uF9J8O8NdZ27 z+s`onLUd9a44hM@83th5=I!DGyZUmV(-B|lZx>b5N2>_?A8nV8D_+6%n!u?}Q-3G{ z2NwZ@Fiuw)LLZX2K-ohd+8Sfwx7>CRpLJc}TmfHB!Gn2k6xWS5o$aTE`1nZ27`vYr zaqmtWSO<;h(Q4%}8cgu>Y!Vow_$i%7xMn!2nik@qG3kcmiZ*d;;smv>z=R{52AD@> zrXG%K@c7;8o9L#28x}xk+&Lq`Lx2A7hHN!K;30);{vS%!KeA1c>4#etc4E%+-#(KZ zu4}2Q3Hym-!V&^-s>tD$BAy(h&a+(T!48?nl5t!_LZL;5D(pzAAZg~wu1D`tWKrsv zDKv`e(@9oEove+Drd*>$V=SJ$^1qouEhR8y@)DXVNno>`_^nV418k+vv z8v5^HDfv~Cg?bmSMo4{H{o-Hk$|_475%bmVviEAw@v5N|f${`l{>@%nDlA1QBWB!h z_LjZZd(P)-si`|DyG_bE{pxm6{`Q`EzTMr6v3(%sU6PGM^tp54cl$otO*io;vG*e1 z@l~_bgS&Qzo_<-)NNy(5+kd(2O^Y;3bSu4IfDPL>6|m$e$mFHO_ZR-eUtYis5JA63 zJpo}m@CSZxS~5n9-%iARNtST3N*V$|_Rw^Y`es0WHQy98KTJM^1r0f*umv}ccL_}# zK|wO9t@4P7`_`Sr z%R_iNAu$AGSsYSp_;DHYW%b?}F;!*7zSeQUuT4p8XJvG2R75T1$RBqnXbHmLcO5(y zuBZ#k1@q#AU)Z3o>!4)9W5B(2l>301WLtpph3|k|@bB!8qB@fhEHMuy^3JGyGF7B) zfL)qiB$1%~_2dL$?|;Jw2ukr&8>8|k^1a>0@s?X9qm6Zu3S+NhjY>){u|8V2d%;jW zm1k~Y{@T;U`kqa?hKp;a7QXo1$(vC)y=X4nRKNQLFex>ZeA8E4Pq^r#h4_WBzDBVK zTg!6nsKp&S98z~plDg}vOe!oANJ2dk%DB)u8kFwnIEy>n*MF^1Z)$DH>_i$%-98rS zMd5}%gogFXPR>@Y>6GEgrTFQjDJ^pCdU=gBv(+rvuH-I;-Cp^l{{`_gB!#LB5%M|+ ze?&e72L^!Qcr_s;*Mu7F(Bsjok~cfq&B1R?!k1eTJ0(=WV~;gYgzm zyS-AUi;U33F@Ik$vPPJJ&p^MWZB&ms?s0AL@z=?FEBT6(zZZJo)@5ZTvjctyk- zEX_^)A#{8?>3;N4{YSVy1kq=wG*WB|&lL4MRq*tp>1e#{`Gd$;L0JP(e!)%QhP}~5 zv=E|A2Y<4v<+3XznF|Ji>SAbXrSX? z^?bkY_lvaCbimWALFs`G@-U2TcsRo5&_~-*UkitXYRHc?q`knR5j$TL(t&y&jwa+a z4;t;<2BqX;DUOkLpEqkM`rLBDBOtxe_)7=dc!u3+ae>EBv=_1#p#Bw)&_7v+cmV)M z`hV*ap?%jxU(-?uN97ru?lnRY$NtX5kAnWp@8A&gSP=lAl}Ow=uXWY4KNgBI!2Ake zLUV<6xjmo22$sb?AIZ=@eRA3!InH=YlaC57E7U<^NHmoe9Alb&uY=Mi6u-fO=*6>z z_IfHZ>Gnb_*Syc8pillLg;b>rI;9da+<*4Z5&!(`?~-`S{J}vFqZ__JgKH^GMQ~Zv zJAB3(fLO$%oo#rb_tKwd{jV`kfRfAPr9k+d*ig#k!2@GlHfHePf!BKX?(I7deL-vi zKG-J6+v`Akco6N>PtIauva}GlK3vR#x}|B4LVZ{YBBI~dGTgq)+C%pWYbKAEz<=M@ zD&-AEqmQ$3@!j6evNs*GB3e^qWh1!+6(br-A%EhUm6Y2omTkszgng`q2h|LF$qD`K z>n|Tc8nsx&DqAGzj{4ex=fe{9qqP-ys<*W0Gt0yWT*feNn!w+)(2;m%1eb_;pOMUd zk07KMV~WU&*n^2WHy{mbLIX{4uYdYt>rJy7vvgHbGS?Vye1lTa*?HParqqT>sg3lM zDpO0*^5VF-e`6Cr(7+|C%EkcRH`Xh|GU(w9bqmGmrFeKgJYPghGC|uDdzjTWF3|@p zHuC{7_hWS`l>>7xQ`Ef2N?umxpO{iWFoU=VWZOg7oFZv6Lg%CDBsiU+lYf}U-*|Ia zQj&-6vdLpLZRf*v zklk!+b=g07{qGBjPhl6!*7JOr-WlhftlbYw#LnHcI<{~V72MZ-J8lW~(9!ZW+5%tq zop^^5kuw+S`pVTCgzG>@2Y(`H(VdHY`0PbAlLFbf%D(ET?8rkp*q3HeFQzY29#J^M zwKfGTg80f*T%a;L;qmEL8e>(F5QZ6~R+$;f#SY1omyMgpRKVSyOUZc+x*x^Jm&~0Q z>!oz=WWVzSFo=FkxgZ6=h*AsQn3dI91?S%M4%Cxev7{T#6O$6IiGN~_=Qf&^3uSjZ zke;yzq@y)!nIsOT_l)Fgk%vJw=WwCOHeZ^~XcP{F-%&4+384{RQEk?D7L%ONPTL&>f1-nSuFcY$rkq<< z#JsqcQ|;#SHo)J>8~ELDHr5;328TTBzD4IR{g%@VvyaLu)r-SWGqfFRtXfcNN=AWi zhE7$6#sy4ii;N>y3Xq1JdBm^m&8fo9E9VnMAC|DG;Ok{DHh+VIFF~RGoM`1{)}t<9 zr2|;$AgloToO^>&a=t)HS`@ofY`pH}ckJ2$BiE{9BIbKo{Ex?obv|}9$zHR~8-DMP zhv+{X=)n2lMpm658pj`K93H*XgZob_Eecja#s+%<0|)k`Ir@F4_3NN(Q24;5>lNJ5 z?}Yt?x42{gNq+?bAQ7=+yGx-v(YNAOC~u)pao)_U1JE zbLKrdcAs|a)wcb*5hgHbz4T(@Ld^c1c#is}`}j5O<$pK5pI_IW?%LNI-(p|Sy0_c* z_eS>p-Q442cYS{T4s5DN+YvlSK7tEjLA}l*4Wqw3?p7qJ_UZjqNec2s&_?nE=9tVt zafIRIWn{pYJ!Ta~>@n^+2_k(P4&Pc5XqjQ_Ui@V#9em8)Q>r^Btr^Q@YpP3D1pNh< z_!O%#8h?pP_OPyr_&hvt7DuZg#_hYpWqraO?(tGb4*BXcLWEXL)-LgY5FREF78t|WwAmbNm z5`P+;@w(Jd?+g(#+#SL#rp*eJX;}d-a&t(>87;HlFpUxJ7=|W|gMv?tP)WXNW$Jf_ zYx24(%F{z{WMK;L8Ac;Ty{LAdMYad^A56D#U(M!`6nMC5T!VaAQs&kr56Fcwg=T)5 zWV$6?0{?`zOlH*Mfl<%0N=JW%KUv-7v604N?w9b1ku+hyVZtYI|9_H| zfq3ZTYeG`ozruf_|ATA5=#20< zoZ?Z^qmS(dwU!-J>HkM#DY2{y+w3h}Zx$ zwa!CplSPV}pkHfRXq%cLX4f1-^M60-K2}_M?SJ+MWD~}V5N&hQ3*YPe{aFtTQawth zunXa`K;N(te(~96c#pP4nlc?=ENctk#lK-iLA865MN*_zBLF%bdz02X0s8qfmJFju z!)?CY+S~GqP2V4TFK5vd++e^l5PhPP54fFxUxzKM01=AOCJJs}O(T?pt$#{QdJ4yu z4=zdI-Rr8$marZ#*OacAo2(*{?t;1tjFx4@)odq(`*s+NfW7e`0X(}U$-mjs{r$wz z))aGV*<)L&ScB8}3Y#iydy0+SbeM^kFU}$psLh*(j}^H=W#$#ImbtApSh8_#(HtYne88>#nn)6pu_EwM|w&%b>@%d%xdTu#{2fMrpp` zLY;Vv1(BP?g?L)s3@M^w+a496iA3DG=EJ|}bQF`O#QSDbB0b>YPk%1~7lcNS9q2g5 zn&%fvl!ze`Ij{~-C3ARy3vEq*LilZU<~j4DjL^D)@m5*UA_-{VbqC{%E?+PUxQeyN z;#`k^iVg^%r5pelrdoJ>8wqwC8#2Z$Rwga>mfPmCx8;5hZi~G|w}Jhr8yIfyrAApz zsj-*thv8b*#+nwjaDUbX%ifPMmaDWjm(_%NqD0~*v*t3!twd?8@rI4(;MY#}u;aKV zzT4vde^|l+lY>5UDVNus$V%J`5|M`6`k9BsA*kypfk0SyHFeQ~oSZ{nOp?&V5p8nr z=hPDkLv59ORJ7OJXs_jfcA(XM@0?r~OCeb1craVmP2Xpc9)G%h!j{e^qahC&(2&ld zsPhiKFdHBobwH*8{#I9qfh8|N1`xQCQ-M{#`%MI^JWM5W5!IZHI0GG?1rvDCevu|7 zzNH1s_O!I|*_Hm(3ff(?qzDmH2=3|&3ZS-Cs>E$aB z&hR$QdMsH&n`s5C2o-=stYi+i{9=~jSRnMz7IOkcbmQ6D4z7;^-*iNJDWw@!B-XI? zo={iz5PO>X9*m0c<46%m#O|h<`%|x=hTVR`^^%yw_J757F)07*f58%TBb8RU8D~n= z)E{fZ0tG@_2Td<{DK#vfc%vXJHq1!;%ml_F*sJe3Y(RlHpNW+7ggR4aD1{~ZT+DD@ zh6t|#MR_!o2RI~_?V_#F=;M}VfX>zA!?>dyHaF8>ZlGKFp@Xsx%?C+f+K>37*onq! z?Be4v=6@RHDAw;S3!&1WI0%ED;PDzWo1f2@mKSc1P!?~_Tw^TQ50+Pq-GUuBiuV>Y zTB?CLkIiy$9)Vg4A-e>q9{;aTW|W9-Qc`VgE|Gsn-M+?65#No znzCX*@gIgjjnfebD8&Oc{3G8A*x8abck%~1jeobv<6+|6Ppi!!-G1#`*dO+1sMx

mbo{VG8@$WK@<@9C~sY#Jh<2OEYN5R zH_)$tp{t?x{VdXSbXbe0L!5m-kp^pEx@@57?ldngJB69rwL$P#VG^iGWTScV{9cc9z_AR zL{Om4kxAIb1!2M$s=QIM2Lb}zY*=Y+!^$5cJb$>eFJ4Hy`KD+%uqzVKc?nCODEq)> zFvfyixiaZ7Jyx>auuHb`N`GzVp2UK6{>W>`%id-Q-=w{Y89RhZj~n}O?ASMB$G*Aj zy-67Rn`Lh=a%>%Yh#l`mR!&WE(}CLX=6V{Yy(m846OGiK{V7g{PgLrC96sO2;`6No z6@LP!Z_QU4`2r$B)+-WOInkvWtEQ~jrBR|@;cdWi?s(xwpF}=(LqgP#i`vv6hn}esRC;-fb(3j&c|X8KZI8&(IXyWT z;KvN%F}VHtw|E;4_nk5==hKydqXSj#E&UG~%K%2dU_0$id|A1FJtft$vtQK4u8-HNV zf3gT80(qtL)n?6PJA7z_^u_@e{Cktu;ne|HC)Ea%UM$)ixEI9c(2<`42aAmHWhn-M zMR|BHQ@Mn{L`@E2N=n0hIY{k?y3pcWY@6I1mP#oPH!NWP-5DqTjFamI_IEx+y>ySg zgWuEHi|yoHQi0t?#B_w7cP=S?A%BA3wXesCAB_gLY;V2Y>(CHt>$%Ic85S+G6sfxR zqMYRFdMQhkk+*4t0D5?SYd?b1+`9b~&+K`tR!w=+d*(e_C{D>Dx{vj1Q+lk&67{;B z^~yy3%C2ZIhV4eFYSHsP>f~gn9W$q>+<$)DobJcY zX~RL?Iqb)Oko~w8BkC`32!Y7xrLVPilHTeM*wdC{Wbxj`M{s9)SBg_${*gSCofN<{ z(g5>^6_^zI*(C8~&u#iK|1LTJ!7FEhVL*gA+x6`z{7hU~HHiUYDO{^@&z%VI9m@T{ z$u?74pu05J9Xo4~o~cb(sDFz5{wh%=_R21FP!%(*j%L!GGwNrP-Z}5aS~u}3yZHG} zT<|#m%jxWk7#?*%>wsOx-mU2yUel>o^EY4^ybI=VEo}2$rY%C2f9pChfW!WpRhXv? z>K*1WE`{1lVs>t26A*^!YKaH4nty|y4RqI(_fk?E z!j997x3!4A_t-AdsLb@_T{{Gc{^{xA&GWS@KXojP$VhXUZt@(ydgz6Eja z5u!ZVo1rhWSn_PJchE>#EBMN@WayCPIw6u*#v1YQTS<|GAlD5?zGU8I3G5WFQ=wjC z*%!<#L@AS~JMg&WSUwsAb^bpdH1HBbhs`)PU^N3%%=BzQ7gLZ zvQKfErzj`%n5&mJ@haF+D4UEEZ%ac>Y2umR8_N9N zWMF=8?wFs0`O)jpJ6R!rdr!*|CqZ$caE6mjS71At8=bVB?0+c5eN7(L*&Ao2`0(G- z44k1UNGhHivf+UE`pl}#NnmR5@1)vJY4~8XOE=$u>m;!SN4@HT0q_O(x9o&x^O)F- z@tDX}Yqdo^CAJWQewob78ABq)S%jFsC09Qkj4rk4vp2}UvDbm!{wayIC$jfM7N3gE zTa{+7W1r^8S%0_Xf{L#O1o>vH>84O{KVOJtlPA>Oyziy{{Etqq(t9hLES`9Blbcxt z%RI)}aK9U|bv;c#^+?m3>5b-$w3j(r2XvIkW0Eck&zIpyW{G{O$9^Fby>jo~{6T}d zpU;_>nTR1qT(x|NzSKh-APZUZ`J5D7sKZkqEqM`ZFn_62iMne>w0!JOTPNR17{Ho{ zF{0f2W{>h%%%UHa9xV|eitjlD6TTJ54}jn|FWgZiSTH=JiZz&Xi=DL^!Lqj#I9Bye zz`T{MJ8r^jJ*?Qy1?p@kaIU~2>4^r+t092ufm;aFU7_m%i=nrRhXU`e)9Z$d1lbh> zCOW-vcYmtK?b~s7x^pp?{3_<+BE_pTe6DH7yFn?F8i0G7O1;`8otFGqJPjlj*J3N< ztKK$o7Gg^tyQ483&;J0Y`dU@Xz5euq^9S}6@u=ZN`}f9kJLr7*Uf4Ma4i2SRDq&o8 zVLGN5b#25mu1!@0EPDD2YMb-pQ-3XNGwtJ^n}2g*birK(mGIMUD)eHmzF3z5ny7vN z3dZh0akkIi)Mx}@_ZawJ8~9!#X%z5QN)UD;bi(qB9Vxu3pvqI!=d#yF0=6U2EG{5F zvL4wh($-JqcZyD-AXCwtB4p%&bOudJ8whjZjNQ35B&?z{ z?|+l$US*}iFYM_AsM z+KN2c0L(XqIJqcJ2WhEGd+G}duqRSHGk+S{6pJki!gw5RSAb*Gl|M!6K8(H$Rg6xD zRjd z?hi-?O+dMfOB9Trc!@$>KPmhdZciW-j#p^gF9oQeuz?#$vtT!4!)+qbXUZM{&_;@OXE4%;WGV zjG|vTT!;C-`^viSdh{yegnvXVdSjW?SKfjzdJCS&d--_hptlxTNG;5&^@G%9cM^(&lzKX%(BkMtHModI|FwEDQAqDMNCgZE z#=R*|h%Jmq+S^9Eq`sY9WR4*l2G5{!(k${P9e*+zP0+G_@W6Xtdw;jRwY}k?uV|T` z4bUvW$(eRY{XZg*st#K3cK3JDHzHe6^lY^Gytdl56>~P2MHd|+5lFpf@-lcTdDvVJ zCShWYm)LBcd_YHy1&@-GX!?#kw~G*Wl5RyX@86m@A%WK7r2e(hUJM*e7x`S~vlbfH zqWdvV%j)a9t|K#6=6|5`j33F^O^me_GlyONT0)D(})lhG_MB*TT<+$YeWJM@dQ2C=YROk^$hTJ5KXUfV1_HR zbtyD0^1rG2<8ld{FKp~dDg5Gzh^3lq*B^y%)BUR)T-%Q?;{ZLT63q8?+$F zH65zyNIIa49sv(K1Nu=2N>$xg)Nb5i(K_+*eRJW1jx5ad3L2dGhjO_ zEHvv_rXt9>-gPhsk0YkGmfb6wopL)|L{HV<@ke2G<$uy249XwF(Pg-L?uS8t)p94G zH?V~oAoYJP*teON-~_t0e8Z*9k|+T z8*t>y^fh@rjpeeue5H*`C^s64Mgx~chiG59t;2%BXxdR~i9IdBf1#$j5*xO2%U&1# zw7g4h?|(8EMB>Qj*C;I%)kA$F4@Gc)92f*k3%L}nLsMiY(Zm7z` zqJLe21yiTAC>{`0lj)bnMK=grS5rTXh=%s0)=qtibYFH8w#RRuyFp6sc8DZ*V9fP~jG)}r4;*NM1|Qd5hNBD#;F>+A|e!A|jpe z;%>WVfp zr|inF57Cdc-{cx1Fd1uJ7L6LLy_R~ImIkLVdHLjL8K-(@tn3JRFv5usFPx;l9iqi^ z5HBXf)F*mWG>;BP!18yei0pU$5Y0_AZfA(U1{Gh)x&e^`t?deeL=6K8RLjL`*?+$p z7t6066nD#2#IGL|t4ombs#IE~Uq$9BE&fW1x+_UY(O4xX)GPEN`lyNa%W4NT(Rle) zF1m#8KqZbq>|AuCi{eeIyrbZJI12g;Mf}6D`Ko+M8w+l|{Oy-RcyuKRqWSxo&c*{^ zEl1+H8zMn}^!;&%Kv6srD~GW{HGeyIbu=7Yukl!e&&BzlXrgIq8bU>LV3=gFwW3~k z>`SX1(~MZX$MAE0OP9kmMlP0@e|!uU&EH@44%`+j$B>)zQ~+k)@vZZAp@!|zH-nX3 zblg;ouMQX69ggOyPQ}OL1uU>&F57d?fRuY=s@xRP-Af?t1G7H#e_-0_V}FxKYACwc z&YbiVSl#~Cre*Zl8nC_SQ=!I{fgb^pF?U9U!UOW$(fgQ3(XJgO?^C0so-0CfUc|H0 z$p19EW{WYn&SV!5Kbxye7;k{hToCiqI6n1b}d6Y^MQzM#~238z3 z7qdHN(rzlsbK>w&J@C`*=qUEqm3a-=9#EvWm`A1~5B%Hmo_W6++sHA&3LX#=-M=20 zo?`IyCeA0rP4pNeuPLOv5hiG`xHNLL4u$NErO-AUmEPFwD1_RER)61im^yUC0c<-K z3ty(|FhJ}+?b2sf5u}#1l(F=|Ja3+A z1`TrQJYa^!vw;`J{49$uEH}&IZz;O1nj02%o_S|u+}$IllQ#!MLd^PTGHijDGvz@G z3DCKmT2k{bv#M-IMSoZ0q2nn&X~FJU->3yJ4iU;3LiVf=KU&rwLR1I*B|6x7+=q(C zE|$R$Rkl|RL8wBD|Ky}n_~)`$DXhVt3fvb|3QKKp`m~(Y%!9;%DGBQ!T9|Phok^rn z{r&gfS1W6)Yis36|EwH+38&qwa!9><^ldHe_C-_O(+?AKa)0!-)3!fpb3ZGz6aTt_ z?a13s zEIAYH%97Ex_RHfR6?154*NeMfs%t+g?$FS#19#Z{0>R&%`a?f7H0UPWYy+n{5;&NV zM{Ds*k?oT9CV$a$ucnF){uGYV*7G6}E#TQ#k(*%+Fax%m0MBXgn}7+6JDxJAdWOb^Ru`{pa^&puQj22{f=+_6`@MDw<%nru`Srsjr^}}<{`b02RLVpxe_`&CjAq9UvWXl#^UY*P-u#fF~~(<3c^YhKcF zqPMjuuOS0!&c=hFhXlIlnuR2|=7$je{-Uzd#Q!E|wa(XidjS}&ZX@}E$qZQ+LnooA zZ+{@pla3bOBX9Zk=-L(++YWQt2^ZJ|sZYSkq9JO&{e~n*aVh+(z(T}Y7bS?Vpsr;H+qimF^Ft-Xs`L!Ep@7Ye&Vw3Uw=lkg^Kc-OFykZw*k3 z{vh(5g|SiUAmro)Z_5-}#jqcorNZIp{D0?e^f6CEM#~u<_0a30#bdEpaUSAjBcA*uq+BRAf@N~sI#5Gn$O@tJv}Fj zw}t?!2PLQT0tqB89$~7Z@+8#5E*=URdqBeb*DqpxAn@=mluj?)o$4S+GC~1v*fm0FOX$zk>=CTkiFz7t9n*U9rNmUyr)3 zMfK}YnQ_%cU~Iv-)|b7Fc*eCUN-%6uq*G$roFAVbmQ+M-TAoj#z32t!!D!lzB8Y$L zvtTgA_h^dLz-0kpK7L5ly*qg0=t$~bMUYMEwScSdi2I)-{r=}@j{6_j^Qc+5G7M9! z$+OFz^4avi+sUGz~R_=s&a2Y9yExE%~XNzsv{A zTM^95payqfwR)DoYV{lftHqJmHzzS2XC?FCxd@%<%_~v#vrhA90BX8(1PW{|H7JBzs=-p$X;@{n4q2JMCp&5U8plH(C z>)-ov&@6c5p=Z6_p16q6_SAVk`=JCPP7{465v+6{}e^(2wD?i6X~5&Eu4 za!ex@rrt(fn)k(AW9NKQHUWRusU?s@VjSqWHaYRA&nKs<8$R5nmQKW`F8w&nx1=r4 zv88RUKcx|DQ&_>9QN*M`LJhZNA**IG4Tq<&8f)|r_rY#Ds?vdj20`|r4PTn9&zi7@TU9v7ycKro<&RTzq7jHX6L`+^1 zaoJ0WFz_+bCT*%insWFpT8+t=6_@}f#n?_qBealQ?Q^WnSQqHcqvk7iAebbHgM~NHmpxuGyhYm6Kr2v zFQt-(?#CQoIXlxV$uxgLo_8Daxyim_b3-;boRqdDbox>hGHJ9i`Pt~xV`FWRE%~Aw z?XdTu78M@wBTaA}Ys6VHuD?}Z`FRY$&h`+1E!4tR>IWJ%Jy<>KE%2TC;fB=@b(i{~ zes>FecMF{LcGhGe*K-S;p`W{3;5&WU-7WClE%2?m1%^|^n+1Pve>L9s=I+)v+pVvL zzbv=D+0Pl)WVcQ!IO|MNA06-z;$YRTSpxpsj33_9xUY zpmg!_6YP120ig2?vBD^cP#nsue$r80dg257n`T2ycj)JdlsTVr!@&<~Qt$&?;9OR) z!@^0DqT7E+vi`YHLTl6=SAi7X#uH(AJnyNqrlqgdZ`jw9`TLrisfO3ERxlwvj23Uu zE~`nd=9gG$E$d^fOYQOk(U^Q*h;0IK&|-tADVCWwT2{ZwPrKtgH)33s2n4pX@*47? zgvD-#HL#|x1BC%-I$V_rC^^)0FcmtKecWZ{W4KZQE;c@*+jc z^9^ohK87HmSiKccJh=`i=4V)P*sla}H{IjBL>MR99P2}ZJkt_+hzIE>oh*CD)=2&E z@7UCQrcvFdiDqVAi!OlPt#5NoUG(r12kC7-tLAkag7M4e2QB*w+*;JbfK!a^-ILec7N;U8WBNhbYhr$xr{F+T^xaQvE%Jm)x-}% z<`KKWvk9UkCUzi7I}wM)I;R9n@N?;AMYn&&$$0Lz>w4E^H7G#>EQEDTZmE$c8JT=L zx$bEiGa72*ptE321|dS={LB`e7J@L3Ad#trQyF+gCXF5AHZImowUP^%M#%zR1S^+& zhy--BpyUoF4T&Lxtyw*FyZ+ek8ivLV5IAdPDsUnp>(WQ)ui$tV>CJVc?lg$b@XCL@ z^IW>~T)OjIy0gT%0na7$b?t?>+V?-NhBK7)h!jh_MQk1L|vYwQ=kybAy?gie9e9bO?d-t=YVdf~ zYsa`HxSYOYYUt)AF^&OownK+WmP6*;E>5^_CoLG>9sS-M{j$Tcf+T*bg=+KMyOwS< z^*{F`u0|IHEQ^2i(8oTQ z4MfvE;!VYIfB-`xYpK+B28izVI|ME$h{^lFQMNZ2MWne@G=m$ZTDAkbFIe1dmql0i z-d;iunEyWCfcZLk zMx)T5tegkai`nT)Fj`%?M1)%Y7>+K(Roo}2YiUP?pW%458%Fk6@&bQ_2+5r=aum&C z3cU-h6s8^YwZ`;KM={InxRfSlJGnmk==y(eQcL}XmJ*>u7u2VAAJPE zKVXEvZ-44T1`3SEY(T{_grr$OZT@@}2ML2_A2F`OY$shVDd3dq;&>7p1Y%3Ru zSg6P1{#>Xd0QW}Gwe1-xphw*o_v2XzZ{)~4CLKZ}(8j@HD7d&`99-mqgo}l+5Seep zd`l#t?ia=Zw6T963NCIK2N!uDVKG9Oc5jprQ1=Vt0NPj(1#4ix!VC=;Hhhd7ckFnM z1yWWQ9MZ)NPwPb<^STgi_xxZ$Eby;?W2SvAvN_-E-kitQ++A>QzTvGomz}x0=+@l# z&nLcrlccc!p!!>7bsQ{)h=T{?U==kqKO%xN>X*0}bC!Rwa(rDZd%t{;4qLIUAB%Sq z)d?xTpL;H1TPG8>^nUI+^7Hi=n12@bz2{G!dk6CmLuC8;s1`@N3z+ zaZihE+~2=_BKexQ2T&Tpyk#KO(E%@P9zeX zE!Kk4-zWrXSk7@^DZwe~-WBcV4 z7!~YiyPTrt4GW@pJ{9EmOq)TN2W^J_Ig?Uv>WEn0U+i#Lo_~wU-%oj=Q^$uzP9110 z8@GQ;czphBvEjVFMS{$WMW$vv8TDtqX$~BUwlu%{IELp_E+Y9g>p~I*btIhUD4Kst zBa>f`UZyBc%f?8FAh-Jdc8+vD9npjNbwrbHKj?-xtI#B>$VC;JL@hc$BK%<&i6rnA z$oFxq-Y*|KxXz=s9U-|Lsxjz(|C=b0NDF^V6kix-EZp1%8d-5+ zSTB`U*XJJp&Dtg8VV2Nc&@SPI%@T64O6V?XmJrQ`IV@Y$%7RkY&00s~VI0w2&^qFV zEeUclBZn2H{k7Nb{-cb)EuKO6VDk-LwWK-5IgZiga@M`GG7*?nB?wU5&%t(b56u?Umu@DE$Jmyj*I*XJ?C zU0mW5lr}{&Wwh`rO^~RlUmaU%hrWM3J{HbLJs$baW$Kf#=lK6eeja1rIuA#X&>(S{ zZZ#fMP6Wu=22mEfp6$ODt_Mziya!I$q3iSH7TxNAi0n+);(*1@4hiv*!1 zvngvqG$lrh`A>@<_M`W~^g^AFjyfNmTe-L^i!N?#Y2#km`6EFis>FqUp{nNV~O+I$u|g`OV`A3RZl>KOoM#!R? z>|qCJ2Uh&z z_O^S;4Q}INX*kVcZmNHPYp|)DfAfE~(B@CoW zQA!-neRMOA%16nky9LHPgotH+blr!wiGS{2;h;bZ&QUm;HVoxQ)(H4cElTQ0_yU@i z<=i_bJie=`Y!GeSvUA1r#dyp07;PhxK7Vqn7vF=Q+6~pN~Bw5DJrkt?-C2m;Wf(MNAzg z)WL528B;6GK|6o4cc8u80b5`rrgbHRAfUdHPKf4Uyo+sJXtDkQ`l>3BNdt6N?~qWj zm!|42E(lc)(YK?N;2q(jX=A|}$D1P~T+HH;oCjxqZR(UG>eH5}=UzJ7h+B-w=rg-P_A zj7Xl!*9rQFTJHLYH};6dIt|qzbm$yDG>c5Zv^$x8lPg2bbcbH&F9bX6fb<2?6aCyz zUQTAI&4qvXhx4U5`FadGjFb0+5Z?-InZiEgG|cA=pdQ4*ts0`<2AFJF+%7jE{pHeD zxoT|KxXMZ+6!D0h>`{FDJ{nvYdHO>rNnC{N%2v(3=!55&GM{Hig%(u#0dQjr;m+*hCm8eov)oeVzaV?%~19^=)ylF7> zf9`j`#BLtnHae)h&-}LRtu3(6;L+jd%lCqzpUW8g-KkF+TWpj78rr*uIIG#6b^-VZ zo3Ve?altKAu)0$5%4N?S(B8Y%NpM!~Pfu5&`9~{N_#epf{U;P5<#2?0>qCeiMDb1> z|B4&Jumxcm8VJC0`Dbe@+P+#ZDW*zwknNjuJgbpf?y7kooEPc+0hEyxt_w z#-kPVKZ2}a5|jx!WX6!F3TRpMJxk>=(9C}?l4O1BlI*HZF++;Ly`MH1^*#$mT}yt8 z4#I=i4Jn{ud$kLO)3Cn9pB+c@JBK9nMFV^NAoD^;lb5IV{J6We z`5KP;-~Hk#A3XTB6Qv_9#q5xMdX34?tR-wcky$EKYJUgQr^gY^UH(~HSyS-}W@_c> zMK_!qx4eb#0>96$7rPHt>{2Iy#SniiH}YNJ_{H_&_>qcZI1?|%9e4}h2Z#7@%^czv z2Ztz+CJQ3kZ0h^K_%$<)$8M&vIL@uDeIIP(8tMEo*3f~x@&v8^%rfDK9Gly+4RmJo z)#5OBIvNdZc$4baO+5*#ST{Uto>H%odfc5*5PtS2Q{wUCL>w2*peG*@)qH>Ssnq^f z^ytE>gg42J)Jku5S~HQfrXp#6Im>9_TO$jP)QvE}PEI&`sN!rP>B-i}x5gYsjT3PM zuZv^uSHa7Aqv5za@x6cj3w=z3?!XI%P!!Ya9H_BL?@`-l=OGq1`_uHVYCFM;*nS^Q--yprv%=C#wChbpd} zB=Wc7lacnfG}6mNE1bFfqU?sm@psPskb4cQ?M7WM0cZ!IIFFZr1oT=uXncu{f1^AJa&nBZ`nYr&|l|;-I z=9~-Jf9Sf7scL^HI3uVnf&jd0K!)iU|KEo&cNPtS>0lsD&J+F4m(5Q-l~Uk0aUp^| zniiWXOB3J!T!CDEYvzhxXY{*Y7Mm%ffgfU?%&EGmd7@hUi_vTnEjCk@CVrH;(x&UC z=87sshe0@-`U}pMwUHlazT_#psrjOc-N;9$*ZzX@Wo>`t$C@ubWj8fnzuF|h#iYOm zX6R;Tr+6C}-fvccZ$V-2`<;^8z|(%W$aM?Jbl>%K+&IgsRt))Vx|r-Xoqu1M-sqlU zoL6sbPO26;ZMvw8_I=OGZD3veUP>0Fri;pA-~GJYJP&&)Vg2gU2Bw)-o`f7sdQDb$rx|W6R znhv^aW}~}Dl6biw;n~`_?Ua`U^WTE>%0*0lr3W`cfxmERdO`X#TbPsjTr=6ppZ?-u zt}VJ^Zsb_-1$Na`l*a-fG)k+hzde3bsoVhhJvM)pzjM-`rHR{5fC)hV=oDBKBv>vQ zJmOGIQlH#=b}0MPqY?t*ed5FFza61xFHfv@5NuU2b6Xb z8Q+eZb^_-4Ej#6{gYecYx140(h$Z`m{gr=Zon|+%1C5pJH!#_+CzAd8vbUM&%D>palele1d7Tl`mCiTAuna7d%9eL~I{YWG4=|UWRx&SwyF2c#De+w=i$HDKow~f5% zby2t9FB@u}%w%qFCC>}MxoF>|znWtqSev?)OToOfbgT=rVC*7U%6XBP-OsU1%tn85 zUnq~YePHp`64TV(lKGLAO!;rRWY~2ZeU`+e^UQZ{&X)3BF!k@B(o@s260NvpqhEF( zL7-|rXqBs_rE2N#Nz?R>jy%t?I7PeKxufTAM$fB%YkK}Yo}SC6U#^eHt&QJW(WmjZ zl37+W$t(>A0fW`{dU^-%ia3mF8i#+mj-q-S`PmWVbzAeJD;teV8@t|7E%r^1pWlIw z=3&*)urIbYoDJPAknewi{0)_u57)GVrZ)d`A2SU)%5Qnpzjw+`NxQe?c=?Hddzm%}_N`J=S4|3jAUlo20j-6Tq@1Wr8 zvaR5Q>YDxl!_Xg&@JP^*;Ny>F@0~QD3ZjKKrT8k<-+!$xd*uHW@_$roTdVaJz3adGASdR(5~fo6%dmx_6A#{r2oE@}~f!4i)^1rrqJV1MPQk2XB{& zdD0P@RfHgz*JZES{eo~dnn4P7Yg+bpvHu9SrAKHX{a64y8%BPwSP^y5XWST5bj^B0 zKN9!V-3%m&v#*Eh}H`W3Hy~XKomtL>k zG@o3{hf%Kmt&eBFCCYzjIm%}@;~SNuT=sn*%(94KjKRGsrIg0L%^^w_&PrNrp7O?z ze3<$@cA-x5J4of=5q`4^b$Xj+8$+&HbfK;%otMyZLt9)G{r9knA4qHExlE5Oho%k7 zN*HTpnZ(8qKE=X~Fo@`z;xX@`LnCs%BwKY;P*0@p1~;9h^fmE7>ClH^jf;QJ0K z+r7KL`T_2*%6IoycdDdYdO&(qP0#4AgUQ|9W_@3`S>?OitRM3L_Gm5Ml07GRC$`nQ zyRGm1ZmXPGt#WtCbtjoP7}CSE3@LwRbf?JuZWOuYJ5BB_6C@s`S+~>Ng@`-7?)RnF zE#K*N@ASIgR)R6Tkn2$?0YP)2us4$%mk3&_gwUR;%BV0I-c8GIlHUPof65 zY|bg(bTad;-YI9@LFA{Vi#3fd27VNkrx)FDe%jzo+|kFi)5o*xrH+Rhb(~Lp^mVcz zfyk}g(a5#a$cyWxkw=0?7T8r5-cj<1vE2Bf!Xtm99prx(Y5o`6J#yJO?&#n~c8bRm z6)e0<W*-tuU& zD5aQf-I2`olgxGRR=>tv{^me5*5>Z$=K8OLubY3<{3cxmEw&BivIX5;0^QV>^SkY4 zcrnhA?^bh18aK1GtW_Mh#S0Qg-doBYeca3zvR0Muj^^J&rg@xV?rx24a0^*mvt1?6 z&n2e0o>uNi;|8~ohmPyz1&JfiE#!_qZg2~Eq}@0#a1t?^xVw42{+s7(-&%f2xOrYg z7EOO@^6v8RMlTPqeRF!8d>Ne|dF6ZRxudXLuBWe?d;OYtKRrKzrD^o;TJcs~D_%P% z`z_6tb)KY_CpWvJwwy1quaT=&D=XC%8k22j&<(=ZWR^&b13+qcULJJA^Q^%WVjG*2 zut*D9#Dlr&C(_UTm0LC5xmJ%0T>w$Bkph1S{n2IE>qdSD=pK4*C}hJTc#(19G0RxU z9B#wW&JRc|DTj(Ds&lOakmr*IK!RQupG|u!@&G#v&Sjx+J0>&LNbywGzS&ehvT*d? zXgKapeD7cXLLbwhJMe4NUFFF38gmj$GkLzr2W)?} zHSb@~yv9AY#UeS+D_8Hajg^#m{+yPOOI7a4J1}kPg;Y>3Tus`Tb4NTTzPg4^mY51j zw+K6e$bYdA`M?j)rxyzmFKHr=U8j+j_@db<*<))sfKUVf?JPzL)?r9HN-}UxsMr+n z_%_4t6b(PZvd*k~?w2R%O9H3CGOB-vI-L!sQRWkjy~i|kKi5oxq@9Sbn)l(khjyiV zX2>9RkeK-A{?)j184UWp?xbJb7pDlRLQ72zdYwTKO;IM2#-_!S!oShZ*FsROTjex} zm*o=RHf1=9Bp9ZcQ6vJe84VC>QJ2e7t`FwozA( zH44b|wi22^3=q*+5N0PRr8WkiJZnGCQ8OHcpSu$_9Lp(l=(9)UYubs=IMzMIJ;zs2 zk9#E@Lyy=2Z`l3lXPH*cSa?N*m>R&4EQLU~^nlPq2k*>X;!5esXpTuB3=+muFU28` zipA%C<}siuc~O!&=~S0dcaDDz^&HL^$>>^)aC%Vz&Qk-J;zlkaE6zhSv>L+z>MV;q zmK7H#xPv%^1mV<%4Vu$1^*Mq--dprC``$B2vSEB{3*z3rU)nd+GB`s`wlsQRZS*B+ z^uTBoXB@;e+8vL5gdGw_v1T72%G|P7YvRz0>ssb3==EiJ%LJb`h^l|RGUE|iwN)F4 zeVw%9MsR;o0a>HNZ@&^9g!hffOHe{13nko-V-QpVCrxL5FALYg)ABXltk5A)ZlXZ) zm~Ay6BKhGQQJSTyWS6^^O-C9+EbFCjJtJAfpG?cA{@G}fc|=O(tZew3@!y+S21N9A zEQ1XvLp(uQCxF0BjKqJq8Kf^kPW<8MbLOcdweDCJo2!$~*S+=}^M!KulBAs9*+hNz zC(#@;g{!5PRA~jm0u&*=!q$A>zbcQ;vM+a1?}n)64E5g~42oN3_}n5BI=8UUSuYtS zEHQT*=@da2bM$;O3+GT=;!59y<2Q8E1|*dP2nvur<9CB9JxPDD8s*R3!OV}c4ppmu zt*0wKxWuil`jFB66c$Ernw{`z#RVy!l6c;fPtWdKCi`OlM2Y;D20g?1S3Q568MCC; z_lj1oHpvySJCo61bnanXm9eI2j8i(%mtnDcIznfSi)D|0nfL=#Pc1T;;sWqt$&Mfs z{ef99@T-XQ38&?*~3G5MF- z)u4+@kqA`oRYs5$Wi(l$zF5iUyywJ$fqL=#>n0^ zDB~}>lW5tKzdH(o)_&QOzq<;;8IzYJKkP+`XiJN-ANHa|(?^T4AJ(ElZ`os?jsgmd z(oa`$>1Kao*|Vh?6;C_pfbkg!T70tmLzMn?&-iMrO7u-p=s{|O5hJO+Ybgoh=l*^_9Ae>3C++imLlUX zbT^g0x{IMrekv6uKP|<99_<@G+2~!{eQ!Jii)&PXeX*3mTV-cBn^IENew*Ns0yG6g zM_zwPNi!?XCKErLb_kn@AMD5COHW7qq^r9mD=`8-y{~`+GAI_q~QGbSUru}wS z7>z|?`0g$^n<_xF-_8pB`cu@Al47dKvuI1SR7G&yw`IuEWV~p}9}Vi@M})}3K}teQ z6@28CtIz~Xl`kNbOfUQn+B7~w6)nN6;tzj(Kp6Wp3j}C?!hbAT5!^Zl=d;l)fqp|6(cf8L~gy7IuF&9^mPxlc4`L8~cLJ93W5dFGdlB5i1k%5l5W( zox!Nv_Yr&5ewxjMpMwbun}0EjjH6(Hi?A=2UMF4HJLrem#N-Sz&+JvtdN{LZ&BcF* zWjry`SF?jFBppRihJ0EIj3IYy>*K5&AW?+;H7a5=fMt(znCR(cEv-`5gznDb^-RTsBGXBLP;>_!ur{K_Ey*S_ zNkP7xSa*(s^!+oX7cI?Jb2Pz)@rQpUe->SEKCS*T$2*!3oYGHQfgv6N{d5%Q&|O{r zVHTbE{-02aep(8Q{>0NqKg|MwST=0@#VB&#ogm@e?|{{*-$M`^2}xD3BoG-DS+ZFj zE#32;HKPwXecLRZ!@F?!k6F#1c22(l(-+^Yg+THkg~&I1AuOYdZ`MLw$WniPSc{Um z72j-yD!4$!p4q$X<81tC7MKvhn0*=rF1jG`lD|eKY=_b442^YW&xS1*5mxzyJGbLw zUZ?&t3!jH0kn-85Ss?5UW`J=1#Zn{yOUB^OE@2k>Z%YLvl!QIpDEnq9g!u=QpV^@EL0Sy4qu_^=vR6zzXhi0K5MeYMh+on5h7f@gBL-Gv7}nq!oR#E3yBx(LqD zY(IMzS0nV#DOO{LIUZd?&;O1q^JzAk20k1%S7Y%o3C=GJC||s=RzZ9vu<;gZ#<=Y9 zFSa5~-6efBilGBUgw@0Ri&13Ig$~GHGn49zoO+|dd3QMMq5|~O9OZu?2z_==m%p1$ zLFRZA1!TswpO)fqFLVwC=@+xe2(m|3tp@t6R&XwSSn{J&lnZ~%ykYlh*~5RVd34Ui zHv=$oov`e&Pe*~?#Ya{Kf3*~gBG{~^qYkk$hT=w&Sq)UYL%W_AB{TT>H(LX6s3=<- z7$F9Z|5)+>pF;;yXM=xf074-uA-)=26A{xPXoja9dWu9vr0=$Z?2ILSwH0HE#V|(4 zi1HA%e#Dmz@^@E3)*%0GD;W7x)*$=pD8`y|sy9Q(w`SnW*JY1=S_V&I{zodiN?+~8i1aFbbri$$tMt`UYy!e7*(Q`9X3+qZ2yEPEJOGAfqi@KO3-oPuKzZ>CUVJx2iDe@ehn5V8us+dvS&*(TSbM4EFivF3I%vL z>R(NH6*bXTbvP!a z@uyh;4j%TiHcDkHV&**8K^9#PGv~PuXOYz~bDrxYG1Y&DuSqxTV}&>Ubd~5ZRf+P; zR+^|rpd|mM!^ElGV>v!>Sv1>atLNeDjN?(m)z0stP@1yw_YZ0PM z6yL0c{$yqTv=+et*b(nzWf&8ClpjVjW1pyH*r!oo3R)}3;a}`UsQyR(ZWP33hRdGx zMK3~6?c{&M99jfpVMhq%htX8zqYm&NTNV~)*{7{Qh_gd$CeZ`2Pe%bPXG>o##rPeL z^wnC7>EGn<)`AM-G7_v+$caxnA6XM^Rk0-LlqgXKT!GUMYuAi-$luL^7d}uE{V=nU z^n!BnUkklpFHguPpO)&lwxcqbX}HW(qK^R*f5?Advst_sI(EcpG@JC;l2m@UiVj9S zDu@^fW|dF4>rZy=FTR!P@GB=&P){%$1R)3=jC&C-&A(d;>XejBMQRCvqifWosm{t= zKrs@`D%5{?*%RMvg^1wHzu1aIGbC`(ok06(DcUzk zge-q62@^{rm%Y&xFR7`0VL>wHj{J+I$YiM5v;FHunsSn{*}tr|Y`Dfn7pwvBS8Pb` zDi`#Tm;y?&W$(GOG07zEU(XT?$pAig7Ka0?)cFT@@6!<_HuaaiFgn=bBXC5EOTWzu z7n9K?Dn~xdY`ml$3me}#6UHNbHH(b~XfJ;zf6dGZ+*p&pw#<;++ly}|6-q~b>8sHg zIr_ycGVUwJCi-u) z0y_FKD+~F%Q4niW>?##Z7a*YXFJ=*DRN}TSxx_abv531EMg z>4!bL)9Z$#kgORa!BK@UR{6WV;2@->2BE9SCtBhYD{$|h_x|ba&c<+xM&IxC{j<*a z?5bE8cBdCl3d^3uLcOwDt*l0u-SH|E{P{%zwZ-fDN<|+{?j%B|vGEGo!Ou_|{z~Xi zp`nMXm4~<;1ZR1Iibh&vuqmVh1PXs@b+4j+OjS9&gx2TiJYAQgbFJniRXwyFM59oz z+CPh8Ya@VBnQ~-<7?@b9uA!jWv8!tJ_uqeCt*ouCt(9@tU&3kksvPQbM0Dh-`X@!T z`lHK1Oy#xJ%CD=ah*l|l7*prbYUMFPb3p3cgEb44I?LYvyDjcDVGZZ;tbl(Dp{8FH z+QR9MRTpuoa%hwdX6H<#eOO{C9n}Y)+H)60g^~aQC(H@O*~E`7P%F5RowKu&tv}Y` zJ+1VW(k1H)@(M6NP(U5ml{Byw(OO4s?A#BrMmK`w&;&Fj#SuKc5JHu(di;igcsh}K z4e)KOFIAUWk%$**NP$nV3r&Ba@1M@j%c#|Y$R zO(t+tTlnkJd+z;p`B#V#0KPg6Ig+GoRw7j^@z^TdGoOzR94gZcaO*o9AZ)8a*ok`R z;KIUzvatfp;MZ1HBhgeXEr~(aJsJAbN%x}&TO*J+2!_E_bpkA6G(3Ov>PpBgflOLO z@?BCu(43eiJ_ub9O_WwBEo<|KhYbEw2n+tz2-|uV(HH!=v+V6Idv8l}co(v!i#sY? zsDbF_ozM#H7135rG_JI%qjyIF8-DLB<*O9VTNUFac6&Z&FZxV2K{`@oZb*J5N}~9AjVs&ha836oQe9V|Ha~HO`R`y zONLK1&3RjLIkKt5XF-h%J+UZCfhLQ`-KO8|yC#!C_+g1nD^?a`gcz{0eFHc6q--f= ztQ&`aADJsOX)`>RHHC5!-FqYoDyPoRxL92p7^&D0}@NL?mgn#3<%O<~cRk5?$+8macNI_C*{%icQ)r3ULEqeP(Z8HsOERh68j z!9u%Pn-Kz}8@G%P)YIa&_N{SS%OAJ3YsRghmbTo)o0gu<)Ewo$jYQB&Kf zucTN%+LWuDLLodUN$nmiIy*W5BC#$Q95qYDp(Ks8CW(cV8RVL6@3k&I3a>Gj(mYE2 zV+JIKLDZEeLdHhZtc?7mCh~9yO_|%`1me+PR;C9M)WX+>XhXqZg99Vta1e-U20*j~ zYZc)dzBYeLYRj}#9T#YpmTgUtKue?{3;_5z6i?b14=e1a9`=ePOVh6S_(5weiP~D0 zeMt-*0=^06LBU$bJ9k4Bjaz!eN%p!x^Pc{!z)9PLh1D}qMjgh92L7p^F zP4q#IZeLsSY~gZsB2++Y5c#Mx>7NOFiIhw#qqBct!Xj4IOJCKnSDJ=n{&p$$If$4j z<^~zUX(_Zkfy3m^#%9ZEB8zrSSA6m&yL z8W2g+W~qZJ1??0S>Vy&AQ-f{EiUl5gi7$Ir7T@@5$9|rN*{_r-cS0&s@a4X!Jz9Se z@@WfLK9M!G-C*Fr&2B zX&+O&s+AO-wp?AKYBHue2xc-iNlTm>^mM+pNhG1k^^AM?_;nyjOw`(H5o*zU=zLX! zz}biZ07lJ=m9|2D(+QGyeM4xi^{jv5EUMJ#DT}Yxlakay(H&pyQ$>ne@*Y?TP03bI z0VXLdc&xU(PKZj2uQ3q-d0p&)_m#XB4vyRqk0p@Sark|yx05;+i_nJzEYD@&PWVMp~kRz{;uDh^e(=Vk9SC}g9`6R?pOLrlVQhZL5%w3K$ic=I|)Y^mnZMhHYs;WZkCJE2F72^I3(&j zv^k1hPs`lG&uQ#y4}lO+_A!4bAWhPQj#zj1DEj2J$dbg;IBDU7mP~ROTJg4BOPvjQ z>5K<~v~*Y>I8`HPXohz%noN11KnMq1YiomJEj0LHPj9q|ze&eKOPzav2ICG#0f$ed zYDdo2GD5_dGUmPDA=@&2*Al(j^Y*Q5vb;X34DDNrJ=gAdw)9#-m8u;*>;vG;$_Z z4$*u|V;x(2bT`w-1b{`Ivk9ehM*LcDbcejhODhy6QZZCy71RioDMZT)N<{#;zRLgOAt}oY;DNcD*BB8s1Lcs@VQEN?Aj30QRT6_M+|Ud zyjrY<B2+1bv)Icy3i5xpjKqdGq-+2*#jSFy z^q}~%yk1(`gxTu#a>he6?N>=<^q-PgCnf7+4LxA4UaXBDpbU^ahLJk8D1kIMNtj#G z&IC;`ZKp~pe1-nd2@j`A1g7A!B}3Wz_ZlW{G!7Lw9aGBaqf`J#ls-zN{VL-n05|z< zk!l%2CElSx&)$E?XyQphP1TECV>9BicVgjd1e3F!E;{?#3E45@etZP>xza!~X zbm+bCj)Y~3=(H)eC6?OYsRW=Pw1FLjD%e4&f-Tir1ng%D*t}B(Y?7*ijm|BjFhcCt z59R$jvqk9XXf*Jl)l#WvwZL3WAVm8TStGONhh0?+lIRJ+l#urc+_=d zu$8PjAyE?l|8@)m19>YZTUFlO5*)4H9vs1RVV;YM$VZv^TSS!E4~UEwpuwt0t)LRi;)?I=umml!(v$W+GhFy66@<_Pc}8Aaso=-mQs&l3*TMc z7AYT=PJ4g&>39P}OeZMkAIlm+M#(kRT8XvTG+Jyy@740Ls}EA6q1%ung zR{P4LjjR)21T@S+F*k}>&V?1$@x=g_D`6sP%AS9Ufv#O!XARL=o;_g_#5f;!C;A-; zj0z{`yE@ftZ`=dB@;*KHnZ~=iQnAQV8qT5kZ4s}~fy@f>?US5u2in#d+8TrS1G)ANzYxM#eK`BZ(|=1|3!%&ZQzbXsG> ztigW-wodFbI>%Ji>Uc^Ace??yO`2zP;ve*+7j+v#r)HUKKH(b}u+6sl7#&0MrulL! ztGQ`^sP4V@%&Yq4>Mw>T0j0uU4CetXmhC?{Sbc8}muNj&n8&tF*;EmO*le5}V{;bk zlrUlPEoyAXH6ci32Fpu?$UhuKupGPd;17RC1F%oL1t~ktjJ}SWP&TIHSPBEjhGR6M z*Qq+(j-?=G?yzk>{Fe@xBeSC3z>YmzAJq;qOR|hAW_0Y|ANMj;fCJ1Qs&%#HEyO?6 zBaWrSk!p;s59|-~MP7M@9Ls!K|M!$>K-V5TDDIW%>m(4gv$$IVCR$u8l}ho5ZNh)z zbe7;CynE1e7JAC4|DAhM?xjn$0Q)lO5$BgC1|{B7F?b8sz`l%O9JZr~ypc$1TVM-R zpDjy#Af-T7hYD7|xD-^&N^zSim$6+*6OPN)sU)iD!dnm45nR*Z7)QL&+@36NM-=-( zmxg@03}nkgOVLZTR7aN)HC>A@I}U&P+?vUGzdIgu{4YLS;G)qKI)%1kEe+N^1(aWq zFLC+E8r=8M?`d~s5KT!IwW%|e;`FM>064-(5n3Xito$?$9guL`5+*N4laFw<-w!4} z1X>qX_z-L1&8Q!o1%BVFcO(DtBXB_U4&S`?NGuhUGl?J$!zs?a8V*$0NwRGzNWTnq89M;l;B{fS^~|)27*9y z9b*9(7HKg~&v#Eq1<$FQJ2Ouq58HKxNgm|~vN;Jhmr}C{GS-#&3UX26iCKZWd_fbu zzy`5d!G9$qQ5BvIr9-=VZ!j8toQ;j;1QCdMBHv3Lg%#f{?xYV*EPHQg`Zf&ojTuOS zl-icLC%sGEQj_&P4sU;KP`iWJ|Ktnobz8FCBc%vsAb4AotN|7Npgr$;-{9xc-a#87 z=}qgNLQR^Jx~p4jTKkc9DHW=wG%k{8D(uwkO5wv4+ZVyN4~WbPQ~9#*zNL4%M;Yy$ zs_mT4+fJyq6VBVtL~Um>Z#!pdJ7;sY^OM@lPxFHFL2U>9o~M5yn}3l~f^DBPF@ku$ zzMGs_ex*=Q;VZboqjgmHSVJ)Y(jpp!voHY2-5~M;(4pqoRk>>Z22op{c{T1z`V3O* z>+8#`M1z#5bH7qtVx5)13YE$gj{kzhk}_$t^q_L}2omaL(uBmsX<^)Ii?ePuNLrCh z2RebUC^87K`;~vnU)9I&AaYErT@nmET~)KLY9hXlRas4y{b@*S5SwrVweDGCWyG|B zAuKaF=GKqqYU|HLOUL{IoUfVd%IZQT%6MMQQwo1(Kfiz=!F2U{^<#21xX z@Fj`#MDc%&INlD!7>#3M3WvIlgc0wn@QdrSNH|#ts49$vJE~ z4ROQ~O>E%Go3^p8v(`6h>)7iE=c~>JmbD>HClG&-^}TK7y+_9my0G=L3e?#KqhQ*b zxozBCvfSc!JSmKB#o6tb!qVL)o^>}W+gvyK&u z%{m&UX91ga1qG5emL)aCrbnZCw7#yl!ISR`akq2ra7Mn#iD(hc51J;{EJ7@AQ~3#! ztkHiP9U~SxWpnO^IM^1g@y6<_+m1U``Zld7p@PAKguoBRvB3i7UAptlC4>G1A$ow`|aR2tV|sDm)en)M$)=tKNq4>J@};!OcCN}IK(1Sw1{X7 z?q}qsVqsvX2)vx}@ZN;F-jb-?lJH>mvi+%+Qx`jj>Y&ZUTnKKr(Khycl1z6x8ZDPz zoo}jt8f$u0zA5%2&1z*6L>b#{XG6a9;=>d|8R}0G@w$WYMOP0c(V%xk!|q4_bkGey z#x`;4Pi-wUwE@D|bV~V{ndia>{+W# z987;Mn4vH?K~&r*R}JftxOlSy+Iwz{i+jxq0JaCXq_^V%T*4?`g)eTYKn!ylZmR~*jUdk zvXeV8q|75P)u5%|F7*N}veD&DpjYcU7Q=E`E0UE07CdX6NjR2sV$o~`ro&(nbPDYg zVM3c^BXmTXfDi>5f`KDZzOJq?lK@b|l{C7A0$3ukfMIQ<&^Zm+7X8#+$aj^0LAj6U zR{trkP^|b8-#gauCIQIycNGO(P+@ekkQJ*OwE9g>C`#UKgscNuEdLc0rPC^Kmd!H2=QYh>d8i1Ki5wtgi z%8J9Ll=JGdkUA&b%MMln)lvezKAO}90|c={hDmDBiM-bV#NTy?G+)UM>uaLsl3KM~ zA+Sb?8Za#mhOiAR${*5SBP~Q@j4u(M)Y_V5GZX z$>y*Qm+9~V8NK6w@!VURe|hhRSkvnF>!7pT9`$|Knh{ja_Q1^_6={45+x9Z>6Aq^0GW*lLwEp_U(KrNHJVH3Bt2w zuZ;hO-LP#N$Q+k{Qt+njUVtg0B#X)H?Gn}O+HP+RZNU4R+_%hhL zK#kzq(p3j>(ITzOehk7}i}24N)Izi??4}{dDuhGzIq+J43=#3cK&2sy0f(Qte5FJ) zkAMK^WjY0X) zhB!d1SsOpNQPRTovP@GY#d0zoMZ;hKBE7vOs|AMTl`QiOu4c(>rDn0?a8zLtpn386 zALOx^_+@Q>V@-aIZVlx6y0{#~uDQeR0GtH;J~0gTucni32RFeidDlv%STD#q-|uN^ z-hgv9)6(w!TQJC`;u{zxHmf>W6eXHzx`U=zn+%Z5HVFEp z-KOe64OT8mE1H$5&qtNY6Gle6*5!X7iSTu-A>hw%Rnv2JPGVo+dMJYN*RzA{3ixQ&V0)7{@1V<5^I6 z+D#0IK~kfe7j<4s+?ovHm`wuPhD6(wjzvI!ZtN$%d~-OZGL;madI1;%l^lkg2QItL zNIiFPB=Fyk+NwWir*{E&NtfqXq;`3R*NGbpy+IPvz=tIku*3G0VGX-+&`Q{H1Q9m% z8Z|d|DQ|HTdaHG`F&pen2i7s&(j`c2GP+Uz9y{xvR0?JAPhMf}%J^4>CCQ_esw^pg zRhH6J;iY2>svbV%jv21Sp#i7|4+%ES*PP@c6}gemfP32FhY zs_KokuCO-_>Bn44G`+*gMD{fznf$?jvMD?rbh4m7K%;HpI1N20xXyG@b6C8i?afXb zXnv!&XCy>y3J|FJhld|$>Y%#YX_byUpJ8VKQNhqH1hhYzoeq2r&a=U&JH1sMv4Qy_%c?nu z)={CC^r$PN&TPtt%$gIKbtf_#PGmNn$ZW+UbKQ;14GEcah@3Kh&5JNzKeo-`W8B4@ zGgx8&7cqKx%Lof~e z?5#Z#0dMi6oDUvXmYU_3h<1xZL_K);xKdeCGUXAZ!`~Ap{%k`@heIy?n0V|*!FecQ za!2YOJ&?vC=uY(i&Z%-7BLa1jEqn z+L?|px>smvr2$G?NiDpgEzshk36GFnatlq`0xqn8KoFKxf0NcHrPVP|+@>A`Ew41f zCcFtd~ilwCyMWgsO7+rOAvYjfhz}6?U5M= z1BP0&4^=)jh?d*Rf+r>ESx2V}-nfBXdHt{OR?Md9BlJ2G6GtC#OooDZ^jOrT) zNn~BAskrBsnnnOw*Q!&vHq>O)x8XfX@6^iV#R&SXMOb_r3;y_d2`vB9Z<}QAX}5J; zX4PH`#NP-mFf5yr^hn^+-VVtLPs$Tyw4)bZMX@{Df&dV>WyM74EsP83nN(X{getDgOJskBtXsEQh`nY1Y!4UpRKE^MC#4UV2 zrN3VZY%0ecPDuewAmJK+Ez`cA*T$V@Yff>IC*8?>gI)A)pG-x} zbL@mx-HUpgT=SkuQ_^5qRNi1?0jQ)`=DMd57q9WnMsszQZBWWl2Q4??f|2}=P_tab z#Y+#YRn{qYjjU4XPMfw!j`3|)m>g#%0o2g@Nam?qA>MW6O_#q(URy^8A1pAGp`7%8 zjuzCKA6uxlhA_Op+i`}r0|jM8f-@o!5Dim_kfa@fK#Z(`4XFW4dk-`UR4Q*Uw!o@y ziYa@H>OQV4VGLQSZZb~dn7OZbSmb;P%Iw14R|068sxw&6ZK|7K&5_@`d~!pZZK`&_ zZYnRJJ@cv+HOLy6vUyE4(ppoj97_*>4W00nE*ol>4YkV_?UI`*s-24(Dpymg@fwy| zm3y|(oF{rM@w%?;eWXR+G~bVVA+v2jR7(v|2U?02k5YFJ;b=5K^Vpe9f?@%lyFh&a&qNeUNfG>Wm^>3Kwdsg(Ne7f~M+J zA|6@1TB{Hu{3lGs8lDgQq+&}AvMaTZoDo?;eLhd>Lv#4wHw#G{5L&(i50OBOI@VtIY>LDas9r?XO61{O!t|+a6vUa4lOiqc%qYcnENJYq z*X>;}%WeKRGEUTdp5jV>s*f7W>t%~P9%{+lVhpX7{AyI4xC>!H;IltD1&74#uJqm* z56`=6Zsa7$=7%|-!5}-Ut66v%^u-6fKMRUu77O5l24Szz*+r2EcP4%xLhyV*)lgkS z9>i9@L1ff5>pzvN%S}*RMPKmxg9`j@9lbThy;W`}iF);agqoRu&nboAbQTPz0lux% zNqL?)@-XRW=+tr&#>Lk$&DvGeK*RuN7yio5+(Zk6lehJ-KO_}RIec2oRB?Ju%U2j0 zE3w6`F^^@gw&lI>)*hPtiB$tRgzWY>rJf*wl0vwXHmxFUlkgL;g4^b(nazTJaeseH z1c5(5O9IgvD*8x&x~ZRZ!#;wna&<=k$l25lITmxbX;VA_0cDngE~X7LPKN)m2np8 zKj=-dTbS}p9i(c0xd#w{LG#T;>!puM7GL>aSWCE=#s^Tg_u=_-&#GaA0ZJz$goJVD zG8puG-AUj2xS3X>Qh31J*RY@91Iv3^dZijW<7jQ!o)Fawu{T7|hLVG8(e$5X@zn0y zjcF;3&LYHK`TWUbgr=hK;K2j$uTOu41@gqGWGp+FMa&sjs-hg`d*QTrHpJ#3XA)$n zADBJf6fs1s*-Ua_5SNo+>YGsM&!~(?lj)@Ur9)qhm&@0*q5#+M%%OpB4GfLq{|B?Y z)(#DSBmtXQ*s#rY2LJ#72LJ#73jiDdWqD;URz*@%Nl#8yR0#kB6XI=W6yj}Xb$AN^ z0R-p+000E&0{{RqF)lJLFbYsh0|XQR0ssgABmtXQ=eU!~Aiw|s=ePm@3jiDdWqD;U zQbkNfK~qIlR0#kB6XI=WP2z25b$AN^0R-riN#uNg+&xZ{gKpaGcd~A$J3LJC$)ud$ zB%RK*x+%w<#j?6t=CkC>#k6x>PK&RTYOyM-IW^9X`>Jv8Fj?2w7Fu2upBB@+oYx8b z->S$bNp(%XhyL!0T3YwoT6a3qRyT!Tu5OE^wCk#N=^=a&JU^y4m-Xu6r*%30SXawc za$l~0Zj%H2Wl}9C#S$Jl$uCI0yyIxqY~$vB@Uqayj@%P)?SFTSGx{rZa} zpHJYwUwt8?$m}R&;-Vpp*5!27fseVrEyuS>Sts*q1tXqSclh*Vy_lBceC4M^twwf+ zpLSO)SNP|8^tk(nW~e#L?7X@ULoOysUMH`6 z$#Ok~zu&G_i~8c^{er zt2)=S%FX(%Z=pr0=Hn^s|0+DJ4o5olM+?@VPOhtE0@Jjp*03XCJ!Z9UrPe(?wXcA6 z_mBA%&N^MY&29^9U^|ZXXg%iGBE!J?T7X|Du*lQ?gaJRWuXR1}08IWf6N!L9yw9kxh z^Z5a9H!g}A*Xyb3b)Y0{vrkym8O=yJFOnL6#21JR zc#nJt_9$Y871czDa} zhh$#dz^m^HSh)HgKHVKX*RH49fk>~bDapCAuGht`lMX+h(1Z0!*3DdxUDacTv-jh= zb`sHbsCqe;&dZAW`!)PeXIxExtEJzSp}!Qi{$yD#7JfZoDrrl)t7zU^xNFF@SDQLM zmmt;LZ1T>Qr8e{L-vi@c*F_@#8dnn*N8NKX#8WGO{c8D(1-b$0f#;W=fPcf$v8(F( z)kBAk2(o-xP1baC{+HVpn|DR`OrN~8@4o%*^KX+kxHbJ_>ZqmuUZ>p*yMP;`SQ)K= z7Y>w+lO^b#ev?(S zo;$P8se2fo3TFi8S{A_%n%CR)G*mtHn?1oHtJjMKYILpx*HUdaRAS{dj~95U>u}K8 z;Z3o^qj=J#%|dr*{VgBa@2_3czHN#d4u^g%dLBq0e>%=6sFp=}T^18K5DVOmUw)Z5 z0TA__9DqbvL=k51n~&?>4rXu&!+x?l2r%Y%jEYWY+p- z^F62!`w4UH^p*snBI}85|Ml~8YL)_yFHVbGDOG2LTfPH!7zzyn(lf0EYWHYCllQ#wxI#)8%`N1$KhPcRkZB?*oi?uU;Bok6fPj^u~#QRDNElH=p! zL-+QseLJe)K^pTL|3~H?&g{ebhB^4(5_`qOuXTN-wvTYhfG}I)EP;+VUY1~=@j-5g zQ|@SBMn3d1=y8jU|GmKRwl4F)eDL;n$j;<{Du4Oq!H!oPhIgd)9cEJhYp+S|A9wX8 zigXIn{_DbuOE|TYe3jRDTThF#YU+gpe+I@|XXW3;2ZRRONte$udJPWHyMoT=L)W|) znrHns8|Qvm(jxza0=9O|x~f_4u*HJC!2m~Ii>uqZi(My~?L_1d-3@D0Na>9Wm;lrg zVPxU;scP9(k(b6eU`PJ#XJhmxKY!p}&h$cJFZp@}!gqzyN<8@RKT{vL5YLoRe?hY| zy>gj#65(-rhFOwU}1zKBKz z@2GKc-RNk0who-T9qKv4+u6s_e{b_C4P{)dF+knEJVQNQD8RrVF6Lw!AN-tLTqhTK zaxqGNW&?Pc-@kuY@Q}atyYM}1!eiH+pO2xAG_-BmgLumxx;|3dM{B4q`FWdnCp$gv zo`zmjq}9y|AO6-kfwlwHwtM&s?zvynkEk}n@S(4MchDWAgRXy5KfH+?f0>^vXH(x} zPxW}}l$Wpm3*}V(0CNblHHK4hlP_D;DD0rCI_PU>^yXa}d8osKUOJdfdm7wZ_>!)7 z$M~4)#33;@x(~1uwNaF+??Qi#cI5Z3miIp3VEXr*Y({tiNHwn23P%ZThMW>fC4~$@L=YHH-5lQ)L;y;0i*EWhu_;G1K$>- z;^W8sRerLpyVup!e}SJs1c6Xw>#IJg3z%w$A_DP41{)r!Z$BsSx z;p+5iay;+(nK-pyqd_OiEVT-3t>di!&-v7W{Z#Kjyjm?K+WLRzVEcBkN(L$I9_+U3 zYtZVG5L0vwdaVsMtY@2gpxS5d+=JnqvogJ0f*teo*CYjQe?j%Ur7h5U{%uE}t!DIG zhpFvQxkZ)OSWMS9?7cP8d|-y7Oir_*weu_+m=~sz%gUk<7X-BBcXR8$eqnkZsVduM zuCL#lQcx9E8pP1(`X_#(r%!8owkas!7QA+?)W%PT$~C+#kdgKD7F0f~T`%j|RzdaN z)v#+DYIUWte_eZKmIr$eF14-P4C_bR&qvoZh4aNODf>$JF&QoM`S?}~$o8lsLtK-( z8e@E+?uN6UnN?P99t`15i}}s!);&0|53X+Ekg_X&ig$W3xgtl|72zW?_{?#!2v=EV zR=Brg$}_XFU872Qv1D9NS!UKW+vo6QW??O!x6M{ne?H;?*;N5W@Xm_{AE=_WHGeZP zH24emn(AH&GF7OrZ5fC1#tgJ!rd{*&axx@75mXMI%3xLk+3f|Fb^`4mz4L6(W z!yZB7+-$sEm&RDb~E%$o)^=e`*$5d08?d z%Ld(1wd-kMdvbToO>sMQjb;Av*MF#%^CW<)hRQ~P_I}%g#tX++Of&ZFy61cLd2#%r zn~$(H&ME8?LDY{rZ73=(N$}78a>6soK&>OXn!dr z8Ow5xz7eXd6>ug!tIdYGp~fS8_4U{LS#|+*h`sb$1w3hjsBMXNs93x1d?6sCtjDC6vV>Gierg(r`Joo@`W%ESN;U#N6Zj2hjjrb$KMjBH zJ}rqqZJ@V(`b!k?GwIKtgFXdsR`5Obe>87u;uaS&2)qB0?M_2G4csuoeh~I{Ux6V7ZnyQ=+QlW61bz|0V(Fe&?{A6>F7<4mJxMg5I(%-{|4#oRRQo2D4Isg_F#f47v= zDOeCB{GjD*4aOH@O$al>R__1t|N8%`T%XJNvK&{*w|E??c`4a5@e2$L9x*+PL6MlR za%T4>^F^5%9RiT%^Le#W>VH@HrTY|d)45`|g^QFcXLFxWB?j^wU#(r`S~ia>7$~7Y zVS^_XqCG(td@SZ1=%Y2wmjR)oe|*T?n}`J68#XE?H-$w#D#vl3E>_nPnp}-(GEn@j z@^XGvuIgfXebNmULG!bM`?ycn(J!>)yUMHFC;y9xNX!__r*%atQ0={|jBp4^sMN#I z_8?z4t~#Kq!A21eCnZL}q!yE>^=tojB~9=Sq~6Oq;RgxSL3d(7_yq?he^+{1U%OQ% z#dQuFJt<}j*!FR>)3xolw#DJ)^+%fVIa}T?^xjo^TAyyr$KxH-q3fz^y9yx>5Q!CL z#UOg7!noyOs}$@iU9GQuIk@=_M)M=tl?*9ZqT0SJP-XR!M0zDax9c*sT^ir?FX{Na zb*L;b!{%-W80)Kz2BpNke=L_gsCQs`*nm#CZAk!lSeqY;Chz6O;?>)Dr>e>pLtsqPAwz>5vybxam20LC?OREeXzz&nD(Xv#&O4 z8eO)sYA_|sB5Yt$9^ICDbo2TJbujtn!RMta(3QT5e1{KSp57Koe~&^Yh1*mY+Qk6d z7$3ntgJ58{f?1KX=KaIgEE*Q&xLko%0Vm@Cmi1}|l4)8TOiR!qmk$R5t~xwCO0Mv% ztOb{qnHAanf^A((htbk(T4L_qdVkEis1#*h67BRc6RvX>=t*Z8NZKu?zq=ht%@uB} z$8ch$RI+VQqAu-~e?hqgS&f$8*3wl!bft7oP_oOWi&P=V%+rzHR^FhRC6|~2hnY65 zVO=zGqPVWYfSL9I?ngU1{IkPu3~8LI#%BgbqP=3AGW5FhA3h}m|4pDz_P0!{5$dqx zYQYwF06@Yh&y8oXN8VCp`0B+T)U3 zEsNsBiQ;qPZsd*~^jKaXP)d^NU#^$s*Q{TFgrwQP#2M*F&1~9@K-4V*d-ubO&KpVy zK7ku>G3`u>yJ8xW1bgSWvc-gYS3A5*>lP&G1>4JVtAUbS2mGH&u&)Y}U{AgFH}xvm zFIXPE6h=p+e-3)K1Fw%6b!^utrLV5)Yj~J|aPXeEOqMo;~Rp}EplTaY4X&G-Z2A(WwYJX2#&so|J*OD`3>kBibjPyI#>PlW64h+z;VTS zpPxUo&uhKNG~%a+_US-gp?VJ#74i!dfZk-A6ktEmC5B(MUKZT3-le@m`_&-82{ejW z8X3K)e^lbcJ97UXRTELx_}@PXSc~5=u|-e8|1( zZ|tcUt5f4cZ1rPNIJpjoRH=xJ%)su3=G-e|I*2u;w@|Nl`SRjPEFOnO4D9Tu(OA!X z8mqxIS_}C~{&|A58ONk;fC2%1fmzADobS`g4h877xWjs#Zyq|A3|(Q3NH~^g2rLij zfAzFG#M9@`VM%Vbnum4vfAO$T+ry#p+lQ@hm%I;(D1w>t86K-HcYoU2y~=&!$CT_z zHyQ!60+H@zJ!|Zberxk(u_!1S7wf`9Eq%0&$8&Cu=};fj)av{5PLP9UyQ&taf%S&g z{uZT+lEEaCb)J4~u$=4oNVmlbME03-f10}ipBn8UwSMMk1JaE-_Xh_r+!G2t7L#L6 zDx&^+w!c^#(Z(p5T%77Djk{6fy&CBm%v#+Mkz~|ayEltEWZ+YGe*QATH~7n@hK(Wc z4%{PGu#i{I`Od$ujf2EzdSG49YiJ36x#UvSoVK?n(a_UCigL)*1ZCXSP2 z@$pmjcpwRq9Z6`AqgXMaX=e8|I!XAC3@mHnmd?QWT9Me%=yPVcAYixs=iBNWq5e>p$109ieK zU#Vo*d9}KfUm6p*Zv+OVm9dz5f=1@*VNpEMdg7D(2@j-RN%M2t+KRjeF&(!#dsG|x z3gmWElxks~@IRG|MIBNMg+)Melt>;-?t%d=r?;<9Z{{80e{)NxQ)k=8^1&$98wab7 zbHL5FJsz*TI>!hv5y?zne`)-z5+|haEMMN-UY+RdbgMql*QeAFe)1_Fe=LyPYwm6! z$`GFxd{WTDJLo5H4UUR&jyer40Ix2XaTuWZ?i<;H>Mh;P2Z+>(mPOcpP}KHjG_XJ4 z)=cZ^VWfUVs_}SDdKt>DlatK3m67~*mM^)bdPh2J#-hWg1u^ti8_K^ffxMf-E5r~MF(_&_UfxSXM;{*56SA8f1 zn}ER7KKE`u*lABYTt z#&fF1(~soeBD;{-LxqCq>7IRBTNT(n(dgFh zD7L<@YkLS#&9GBF-EGg40b}Y)UCpZH;?@(0InhO6MX%c;e^vG>4rF+m2;ZZzhhU)3 zFk6Xytog@6UQp-PGV1ftcw6)gllQ?2{-#uPpWK1klExY<@};5(4pAv=Gu*3QhOY^3JOFSdI-0{KfsX58M1JfO{&EeT2BmQRC^4ihE|_K<}A*GF(s3Gr0vFa z8n35|Wx3)vfAsAe%;IpDvZbP+wTyeSGYi6&8-b! zzEyUa?G^fapiDAcC?Bo;J^bsb#P{&$ch#(Dq^O{zAw7aiQ)KZ*lOS zaS_V-6+Lhw{q$5nCJLj3rHO*k51s0|v$|atMQ62UlA1H`Vex&bF%cIM+xGA;@3wGE znR5Qlyw9cQ*r*lPm}&_-Ne!_@6F>9Lme7*|`r5wgxG!w)^Q?Ub>T`UKhi2sU-^m#Q z;iG)Uf3@$bP5AxZck0YlPEf6C1W=5(7^X@=l-KD=q}v(h9ciE6z8y)}8O4~yG>RH1Tw_#AgJGDc)1kUZq2kW%^Tnzf8QN+Zg(B2e!8|FO?(ec{gG@AAhQh>&$#S^ z>v9B|(0E)1ANQH}>T$bNSEk`s%8o+uCBHR#s1qsJ-$3`L)b5T`YC3e6boeeo)Ts#S z>4QtK*KXQSm$aNw34H-p8p@->FEIf84;YPqlk5Ciq`gSO|TY_- zQ~^*Z?nt;7dO;ofI4d1~T*#k7!R zJ=F&x)rzpf`#HBf$9k|h|G&T1U*fjxxSa^G!$?E9awe2`9}7eHMCqUdD>qWZ66LMmAcZX7gA}0}Sb3pP z^ey_6eRtP3ll!z-B`zT{VGXm{Qtdt>1W|^nANF`$EhlkZuKDqO`LSFe{T87+@LwnI zxD9umMqO`E5!4}Jh$g2yI{6b5c>L-P3p1F_(e*(=XP1sEf2{gAU&(&x2L{nz#8oc| zTT*I;I+5oG_IWik4A#^{Y%R_EQFG0-f;>Fy4ei_xu%!2`)ptz0u5ITggn7}bHEO0V z@+d7b+d_Sy{xZ47gI4R9Vm(E+qme~ebREK*q^Z$^@LNiol=r6Lz33y>%%;xdH2v1r z*Mx;M{PJTTe`gVBjOw0%4p<0s&HwwU$w8ogPE|h}^RSK6m6{DyGX%q8WkTXhT{M_~ z>G{5TKBCLs^iCREMlq5n0Y5H|QTUAbpT9Yzeopno+iTkQ$f1~Me*mX?>a+7U5@fA_a*;pMKl_1W zjT`%T!T~cmvSVjj&iLXEi*l+L#g=Z}HCVMmDq_slTDUmSWYU?enX9m~syY+6Sl;6; z(_+p4fUeYcpi7O)`S_!oNVSrgVFUR2=lCXc?q|1NKU33zzy5_g-vMvs z61P;De@F^ae3FJ|wjo%b$$kEygP0nzLQRIYi9RfwnyB5B>N=cJtkNX!a^RBU5A;W0 z=#gAbjE|zu2e$L}BZ>Q7L0VkfersEIK5-V>&gVeyIPv(yv|)JknP zyc8qq36#Tx!s72G{{P#MTA3VBT}xB^lhQR@fAz$EAlK_TqWD=k=bOk?mXXI&`&a-A zlw&TZF#d=>V>d#n?LdwD!3&S1@s|IuU{6pBgB`c*+Lmsua?pYvKv#ivg$xf>9 z8)vFn*jt$rR)}zu`Qzlh|N@r0nn38TRE9BQt_t ze{rT>(MlxWtoXCrt4KW$RnNU&FnH_}r7i}m;=ymEaSe;kz202i@rV;Rx zVnxL_c!SlCaH&$iecNwyS{W=eor3IoI-S1Qw_kM}_^u3foQ!XW9`4$Qotj&PG-F}o zsr*iDZPB8~1ot&QdS*w`(9wH(J_zTCe=jC+r9qwTZ1z!R6J~Ksr#;(gE9Igjer~Qd z-4FDW+|y~y1?Pt5X?yyCgR-TGCm|uZCQs|xii+~8t|hJEkpM9gr7oL_sU%VS>Ag+W z+KXv!u4?h2;|=5?B-F5P8!F!%2xmsLkd}khE%JHW_UM|m>3c}{=2uHzoXE_se_0V5 z=V)AI@_KjUbj{MV5PC=l@^ES&j#tKAPws6F#K)5^fAy1|nMqIWyQ6`-7HYPYZ^Jt? zNGX9Y+|*o6w8{vIANKiJ|J!T%%U$Ar`uVHm{c>GMe_h+3d_dXy11Y@R`5w)wvNU85XO^aeK6-9ae(tzK< zmi?_G+GivRN{Su!niiQ7-JoI-L5aR)QmvlFbsK}Fg*gV5TBc## z$X!iTaEFhrVbY;iejk}SCv&Ffc!PwB*Ptzv@Ds0>V!aWq4Bk^|=$)=q?IiiPx^5i&qAxbU)Bf^jrZLO{OR#(UMue z?cB5-#B7{W5-_~%Os|Ux`k^1i9T(U8nV#@&Tat8(@o}anTSc@&f26gATdjY5W~MET zsLf>34P#zSI5}RgC`Yw_d}bylH4`(hRxbj8Tu;wXw^B@feiYtZpz7SxnTHU$Kxkj# zU!*pTQnuXHJN90M7Am6t@jx%t&MsO_&4FG&)kUa=p-L$Bj|Y0?GFyvoy)3sX+XKCP zS!Op@r!}jdo2hw1e>KThp71G`PD9({mR82;kkyb@XdUfaU4^E9+}C02 zr?c?1q9_WR(#brPIowykDrsg480~1>GmVF~R8(9dYE|77v};sFv!~=Udl&9-WleDr zB4a47=M)b|_7gHwL++>#{r6RLT)Hs)@+!;rczL`!b{<7;sV2M|BO0Tu?^<)C;n%pt zQLk{CPo{e@2g-z7&3`bh+dSkTMo3JX6UT@O zO2MLQ)XZkcUb2lO#ne*n_7xUJDkORLGA2(jLKw71C&!rIa=Y_E&se5Yxn~&a5^5ld zWzLgX1-D2w7i~pPAErh5mXnIeGkPx9nGA?IdcRbNf4Q&1>QY=Ks<~Rk!RAJAy|04n zw&F|J*a~72D%9x?2B8CGz_z@)ZZuU#D*{8hx_(^QcFjA;tDULd13DzDo1%J zK;b0)f7M;@xO-+k0Oa_KP(a|Fs$FsU*GqX`jmS#XD9a&uSsV5DblHtVl|4{RK&L|f zJhe#h&Y^kdz^L+Z+=ostmQj=plqCj?gJA%@o$4<}xdvv+WX-kI5V3a8dvjdhd0|1V zQrk-3Cg!FPk5Z$$2y`;g+pXJc+|M4{*hl8AfAPnwy7=kpw!DImyh7I8@w+C3w?J_Vr9+hqn)-WjP6H?5}(BGb!z%ltnGgGuzy- ze+;Ws3UiZ4Q#Ds8uUh`70L1hI-$oy&k7YDJw2uhrVAg*sVx616anM zr=(tweq^?%dKI$tF$74gO0{&aza{dR>Rlq7_4Er@+=Y5jp6LPm7_n5XF=JIO4mIej z20;M|C(x-V(NuQz7E&OpZ6vt35s?9xf10b6NE>#JJfmjY@C4PX3yLrrsr{lD6`<*Y zSzG6z2D#j>j`6LGRr}Qp9e-?OD9A%OotF75`3vmWAF5(re;3n3 z>Fd0;D|Ma9u4>h4q>r=E2cB)YF@+q$gGgXGk(qCmz=bpCYe(7-ZF`qD!{Ux)AAz7) zm&3~~pH7R3G(J_0hsJ;xN@j5~8vMU_=FA>Y+7x#+GgMF5_(AHcl=DfkDByqQD{0z~ zMqzE@$Bl;5xK+wr93-MQ_8$A)e>>G5>b9%8J>80%v&K4a%ngl|d%`3?>dGb5L25e? zk>fp2vKJjG1OY9)5fR=Yrh^mH2Av^~FsKRNnw^`s8tf0YM3{}SkfH>8uT4>BXJ!sU z8V=!P$G0D~mPBh+ERiT6pYuJdVSU`56L`k?lqPIT>A{}C;q`^=L7m08e+>gI5<+T8 zbA14eO|$F0ecQ0UWzU9FuUIFbI>$YOxHFXeyIzvnR>2pfq&!}Rvw}jQJ%h93Ho8J` zB^Q53-rMo-4FKbvb9Ne!YS*{ya||`c%v1>2I_j|N>yPDPw>8!?P^Z4}3~nr$+B4v# z23daD=JM?sB-3_2{7oJ7f6YsWHmKdC^pZCErKg9w3K$*;ktQty^6eTmjpxOrKxQXi zlb-3Vr%#7hyxfdagRVXmO1mj8SS5T1GrcmTn-s$0e@h%hI`XofdHUsIn&qq8i+o(w z;ip^qu_i)S`N{oqmCwUZ^2lp*X_D3n5^`!eub>Fq|IwfJ1!q;=zOIk_=K)7m@=|*^6Lgy%US0=ZrXW~RXeFZtT z8MDLAVRUYg%9hlLX8o-41arqUle{7>+o;?kY z6{Rv3a^5dxy6D<2wttSwVc7LW8V$+?Eh5d>bncCQ4g2hAfA{33$In}z4)sMz?$@?} z$*i1%Rs!ZCrl+yOpdg(+ZL~fDa(T}E41Z}qXWY-J>L*+w;*u7g?}oTjVKdY0u{q7d zA@|n%*YtMEy>;yg+)ydTZX(qrvveYs=R!f%gHZ3AV}+2C;(miKGit4P``cjcz2lx) zAcGfi;p1ZBf14!8SK{=jo>`;_YPX?9-?sS7g*ZLs-g>RQJz_z7zowrA;Q?1p|Li;) zb_eI&zh7umCFK$QciXYoJw@eU`{ss^`UH;i?B8I(?@!hHLvlqK1a3rCjZ`%snKWaW zV~K|rM@U!@Q{?2)=d8=Ub^kTJW!zh4dy~sHE(+$Ie}gIn!MPHvW>MHLzuF8i@979< zSMy+LW&4h%QEob%$d9DNnThNf5{9SKskxLxh1e}a$;@2#V&mflUWYD+`hapUK4Ca| zye3u2rEKnF_?c;rUetR>nhlfEIHjF#Xcr3*#)lo>lG<0;X`K}8cctK#nOfSTsTp8b z-LzKAe;|LIS2Y+%ex#}gNhzUuIo)SkQZr^IxA*3o1N%y)SP<>xKCY`JywR!cKfp9S zTL%!4``!1>eXkN4y9U(G#Hm^~vr-1LqIEKNTXhY*of{KRR?bDynOJkbBiQ+|4t1^0 zu@;|6e1lJ&QkjdcF;2U})zzLI)5x|}12-Z=fB6(eqeitahfmLUm@i#p%XM9fz1V2; zYTki~TWvDdy2ip|hS+^uTgnd!71ke3NREE_3~Z;>ay?%85LegOh=!PUj}fO@;$;2! zP&F1|Sxm4@%zXUdklNCXUVyBDpb62%MufNZi_B?N&Z&P%RAX*aO?nj4=o$-}Um6(* ze@IAYF}=;vCtD-f_?mP5mehg>&7#ANi)A#qn4br{(J?>M(;W(Zb~-RxO46YJQof+8 z%{&8RVp_+6!>%@&nXy(oFFYoIp{`|Z{jzXp!nDr`$~~#kDRk1~K2zH#WI*yj+2%fpxL)&C2WBC96vdN$k##06;*$ zztv-3Z1kw+UewXikpFr;LYOyAi}I2??>S+LN#oZe>e{|kWewGXY9*A-$jp=t{*C*{ zHuZr#Xp(6&3DB=Lay#xwFJHHPOW=d2W(KlYne_lU2g@N=xAC}eAn9Lrnz4|g^eiX% z)PKyPkwSlV$RtYadri0`ds4$6TwbgmIz05Z5B!eIz9V=#^z;7PeYbq2zl=t~zhw+0 zVxQfLd@HP5n6z3qZ-=s`9(JoBUF|r^G;m3GV>r^@y?OffKVBvUhzA0{36O4FI1m#|$ zqaQwTpW0Ip?vP_1Mo#T4;KiG7Tf50UD z6K^&W$qdGX{tcf(=pZ}q!-i0tS%3RCn&p4{5V+oA%Cx=52bSA;7k{?*(@DO-EX(ma zEGXl>?vW0qST$Ua+xrE4#P&f$bRbE7p=0 z8w#dzrb{qwLWkK9w_U@)M5H`^8!R^c;9Fp*GVOj)LZ1w;a2VZXhu0h^Ihf)Dn~#!x zX(8%(9s4LuhI%7Nlz-isv3R`K^UpDn{5wEkoo7RHO3Lf^Fw>XQx_B|Sb!1edw4Z%o z`~E?}&(LO{lFhxlzAOCfJA_+2LxFAWBr_1j_AQktJq@mZJ^jje3X-GS?|;|~#?jsD zYst0F`ez@4Ho-#1F-FtuFIc&66F)>BkcJzuWil4Gd<^#VNPj8U<`of;v8yuD8Mhy? z6jr+rd-Pk$q**>JU|!))Lk>VZUJmD7B2gRC86E7Q+Ah}9>B%5N7w*>Ar&tBPw{=cF zM{7<|Id`u(gJt{gn)dD^rW(|=ZVzu|hgYcP9iO9xI=bdja<6Cy(nV%KctO@5^#8?^ zdA`*GQLpZHhkyS)lYH^+PcPm)W};DL%3x3P&2Uq#uJ|OLq$o3}fVslRs=GeL8Y`$F z;Dr?jG)>ZA7#$t_SRST5Qky<}ZV+;iCdG0If>zydT;}G7az4QfB1A@o*MVkpn!>m# z^k@c$*))+CQp1SpT8+Jw+$-E&C@$f~i%Cg32vaw2*?+M=vM!!;9AJKvqra%hSMnKs zo}rm=_TgXD+bLYF-OLyr7}#s_v&~GXAM}U|+n_J=BR)De!pqf&g4DsuSpT#czB!kr;1A+ThBWuNah>4h1{{%gma-`dd}_$ z_kS6UfU|s;YXbLAH$~TjT1=sR5g!A`{GEu|a;Q?wXr`OO^L%3dV&Kw2gDzh>4Wov; z0@pTYLA2-GbWxQ{&p%j>Ndm|PLv?1k=Lv9^6Ze> z<=}OF|I#pH#M5K!&xA(sz{M?tkch2%vkqbvrWKVmOyJew)zsPu79 zMm{klTnww*Ubc;_FhI&tW+Uu3iA6B(Xc`nH%HC4WU3Xr~B9Q?uYKr*Ih`>EMCu3Yw2O;XDiwMD<{Yre@F} zt>1|Z?`gLE>TS8f+sp%rYmTQ_tDIB;3S|XfrAfxG=K4Ept(U{F&~!_K?Py|Rw)~~t z40!zy)d}jjB#JMw8k!cX^7}X^8~(zN`X0|v01R4B5tWS(K?gXlb$^Nbdi=n}k;p;I ztSUJ>4);0>@KTD6YE4U}H);XLkM`0K1Cijv%JHbU7yCDyeIM9=vp@4LK?S;#bu1t~!JWQe%X% z4G~e0MVMyJI56W+#NA2;VEq0lLgH-re7l?{ostE zj|%#y7TP5WS9nW1^nh@J{@}yo6X^N_-v=Hc75=A%2Y<63gn7K*&&XAe?mz)r-Lf_X z=k&f9oycYAzmwzN_wX&reeQf~=^0gSLGPZfNy`;ry`8|_s!Dm)w469IBRsV!nMvM+ za&{0QsgOvwjq9u6f}2#*bsq-~^ghHWHB5fJ%EhUOVQnVOBL&lysiuvY`F7;BK+X6z zUxozk34fsh92kwq^iYhJ)xBz%o+~YiyY+f5H7|4ewfF<1hFre9Su+=_>j|tl?VyaQ z9bp!@Cj7orfx(J?aPR2J)cQE;ARL?vm45bo13IJny}jO$@4tvcGE;iPSoTkg`OWIK zwM5vq&ITAsh>jA=(C3a*t=3c?%tYY5l4P+jZhw~fq^T8nAfc=O)nEhMbBtij_LM!> zn!$y8An*>WreNF*KUiAJpb@w%#Cxm^soIl|7jtwI5i9r!KGhPjMH6pP?fDTXqPyNc z>U0R8G{Z`nVAg+$d{1mxD3@fXvq0&p{;GRR``r(%DV559iug1N8{<0EQnD85g{f%i zo_{09Yoa%3J$VE;1R=_tl`k33tv>-NL;dgfdmma}S#N0l1UwOv1@9ijtE8t5Dt^jT z@p8|if~fRuX3+i;1jg4)kPpLs-FuU854fwFlTS6u2&P$tXZ;J%jOi1cZDl#%4urw% zP?QuQ7hIO%i_tTpq$H<&Mxkl>-R7{g^nZhD07WM-BJsOVSR>&d7kP3qN-oC#Ja$&( z4f(0u?~i>CxYp?8l1wa`fl*$YVD>HZfaZt?#NY~Fabuk(^G6V9@5Z1Ltlae=Z#bp< zAKmIB+^fERhc@#Lev=eaDWCQmEdnz>|67Q;r~>P1?iSb zsbKI&(F{DVFg*cJS+HHdsqi*`UVkKinO4QbkBZE1JoT!)tFS1>xx9Zw=~Cie%At2U zMw>f@1o35+WZ_!G1hI_HPhdtyQ5Pt+IH1IBw zRTY*uYJ%?K!I^yr&F3>?iLYVjq=mbkt`W{dR zA4ItVunm}lf;jw&Nyl;NP=Dx0luOcMa`%Xe`2;R_WoI_yWAJWVh{0)F>;kSyS_o5~ z8!o8%DhlnVyag1CaXk7WAOyPReO;SSEHn_H!ej~E@dnA6)@dz6M zgj2p+VV!Z3SLG+#6#0rMYZzq~-Y9-la(=@E5oSNH^;f!Apo)5`tn_B53WeE-DP!~~ zU%n7zc|3epe~niLx_`f;J7U+j_&zYpONAPWM=n!#YNG~?x!wVpgC6<<(^Z<6MR{ON zajftK|8*qcREq$&m-K?UPT3G0JiFt!DAr+y}_Y> zIl9ujrv}<}fk8f&x);~wd_rMEG5l1dthjiGSJn5+Z=JRJ=yCM@IM8Qut^=!&?MiU_ zDZ+cRfy&m3rZdnqj2^5K`5EKy9{RVU2e@y|0mli1&UU)gO(>e&Z@y5F^U4>WC^&~? z4!&!Qv!VVM6n_p~&)avepYKOe*OvD;1;5Ff+jR^PJPd*=_`FdNToc_;9CFqXR_ED} zXPZ%E*FENN^-)%tkfADNOf^!&1~pJh{N>$3Pt{JH9PbJs-aLo|Rlb&r}bfD4Z$o=6kReL-uY}ENY-r+;z9Z#7Wg8t=^XY~%N|4Gz?Gu!1{J;Tpxb;j>#XBFcFf5Kd7R&j0V;J^TL6 zrJM1C-@UthdHL*p^1C1YaQXH!`Q6jk?|!&^dl;kxZ>CX+WlG6;xP+4wU=#3!H02yw z!A{X}t;XZ^lAhp~xFI1;cUJ-8=hgfQ^ouLhkAKQ3s!1m0mYsS0NAb(SoX9VHpST^+ zeE$}6$XC_uik-t?Dx#D?i z+uopCz$rxh8iH&oF*qP66g+n8!XXa1tE~#}A{0KVk`(;^wbaS4bQ;NJ2crhb*APf(L z;EE+&v4|5*xQ$#`VlzgGeey{WCevTWlJyYd6qg47Nh6wKq)NusOS{&S;cub09x ztbAR&JwK}i@tvT{&g1oj*2TXC^VbH0oy-8==u%@EVrD_*$sh6uCo{S8F1iIwu)tLJ zXb+t>4WhRX@FDMR^ZPJAsXc_`R0xHhG0kVGMBw+gpG*L05M$RhlYst>Sh)#611=#_aX=zV97Z%bSy@OW5~!ptiqRkEX~lM*r!|d!0#fchXI} z*&o;QlQae0;&wHg`XOWpcY*yot*Vd0lU$J)ki$rR?I&2XxEw!84nS`~KPs~`)0hhk z(}Ma+Q3}uagMFhrDOJ1-d>Of*cYD#bt?DXunPrNd05vXVq5^F$CVyO^216So(yFvK zJIA+z(`^vT>=+GlW_2agf6L<4K}AQbY-^{kPdrrJZuX(A7}~~NOku%ON?m^3_UCva zni}eO6)_ytKaAuPJ)icbx|55Vj|dpzt6Rrf^!H*}N&5i<0WsSiVzfrd zfoob&3OM?)8OES`V1LaR&8<+P>%O&7^5hycg!+kVj8O}Mc6k_g0O+DJeF>|-O#WJ+ z@lBaM68pQvhYS0Pmv&qf5K#%npV3v)L0|CH_jrooh#(shZlo&J!4)4ZsU$Dvcas*egnu)&dc?>u0!kPP<(Sj? z^zvMv(g?Fw#s@`w>!w{z<#w?^o1s2}pJ1t0^aCL_(5K@=SH;E3 zm3p$+wAw~n>xbFm!I!?~xAxFFqw^C7XAvevItCJ3=%>3125jhj!$%v6OOtdOvorps zSdQST@ONvExPR2rw0$!~hrfrW1!*EEZdoCxvQ*?0m8J{=z=t_Opsar*m6O7yb!!VyP4=#I7-Z?>(Z}c=?M@ z#W-5~u``7(pT2#GaUsyDYFBfJ2poKj*Z zvgRmmihQOzN(mvO>I06~%V`H2bg+=`k&VS2xqF{y~6hE6*ER2&8L2|4t| zzdIJ5EPs3z&wqg6(XjAVR?blY*c{il=80ZvlVZ??bELdEN5RRXe)PXaFObiNiF`i( zJ*PH1k~XdE`6!Wq8As=4v(Z$Y_ox`=nf z>K;yer)Il)Q0T_t)5tU(oHIoBG8&2ZF;iqnG=F#b0=LBeJxF4$e0Z_C;$0^+N!8pD zBl#v>n}X%lI8$qR?_)~Q-4x@@1y$N`bo7J(@HdgKG3|$eX#uDG7`pLR$|0u?`|FNNtWC%allLHu)j}-Y24vc zG=JPR9XO&EDlYd<&i7wuy*)Y}4C0P|ELY_fuJK9g^w>Nsv&xd5m0U46RP~0>!m|_p z-A$yL-d%AB1M2QGp#J7{3B9T5%XV~1^mU|ou=8%R%Si&j>M4 z6g*W5DMoLffBRdNckj~qe|^5U&XBS5p&uAAsN;7(yyyte?isRN5B=jqF{XVK+$xYd z7|vkeLjF{%E;5}Z-PAWFE9up+5>{(D#7`cDKI;ALJiAwIL@w{)~z+P=HRSyqQ<9;Jg<)B=>zE z6fiW{T+!NygG;s#rAdn=A+53@ex{DqphA2_X~lw|+8S9*nUocj{d46jkp?)k!MpAs z@3rWAP91l)fP@fCo2~*;I3seE-+$EPO+!5b3wKhH`p_z)xR_r?L{H0QPiXlZuk|VC zJL4844^l3Ah3|%lBGL#?u4lq2%&Uv{u)+*8_IdqGXYKkTso! z4f$S5CO2lQNn|^>V(_xOfE8OkyGoMay~q(u--2x7uFxvcO1qu$ycFg@KkjzK<^jMOiyB*>f%?(Q%v>V0)|A+VYh*v;%UG3lSxhzcPfz=2QU(^lNrt_; zD!2jy@uA4oPgM8u{qK;Rqz9zFAIfAKMpWyBBU_d?C05S6hC_|`dw-DBQnQ8($$C8# z1CtZLR!5D3ekH_4w0kh3>8VJv63eb6y37rv*S zK}ok_l%GoFzNYh zhD6}cpM7^oO9^%}5nU{O52=s;`uB}l7|ql54dDXbk+PAz zgS(~hN#3c8+V&`c5hSo%N+DdMOtah*RJA!+!x+hRhk=(kJ{~vl@Z5qSg1!R`!1Y?W z4mWyseOru%VEk}d7`1A%OW33fNFEUC)1>|Fu^m?+gPT;}^WM$Wjfw7iGy}cTeSZrB z;V27iS4^Gv&wo03>-C4lR6_VVJT0;oSyt<#BvdU`q>R)X$~NUCA?3c_M4BPzKy#Pl zOw{np_w?U+aeu`+{|T{K!v4P!m87IfE%M$WL4#0JQ&Q{6MU6C=7mMVgdJ-xa5@;CN zVc@jlBfp2=!85;yql(Wd4;h?l(7veh@h9?=>1o_9x_^e0m7!9YUOs*O-TSBCp>V$@ z1R`q!CC}pTZ}U3pvDszncoy}|=#nM2U5aj&PKgygYpZ-Q@BP*T06C|14zgm!!@z@~Z}Tp>?=@Dqn(Nb_132t7iA!bbaGDP(SSnY}|7_GK^L7 zJVQZNHT4)`WdG_uv(p{;W~o?>es<_id!dW%1RTGv!Q*=1VBTP759sJD3Da86rE=zNpv~2NQG9IW zNaftxKNJslIb2tv*8yG(>3_>PpzumxMTMyIMg%{VG&2HAge~YsVr(Rr^2=VP+Tm4E z9?|b%sBm-pUMc2qu46TnRpmYLmi|?#9DlgU-OD*5oWKXy`Ay;bCM698>|D#bO#-<~ z$hh9Q%6M^U2KXipQcPR1aO$}G&WIGso546rIW$){B`1owf1}?Kj3o5uq5gCW))GG6 zJZ`>kI@9oBl)L>qQ!0@+2D%%9(S6ViZZTMFUa$R#u}}w0S5LW^Y&9?O7PEWj8GnMW zE)nw)*;CD_ppLu!VT^N}tWahujnM%TRQd%G#MJ8%m>+fh{dMxGo>1+s8mp?)EjvC|; z^Il9x_FotsbKM~yb8nk|MN&WYk7J2Il%`FGeK`{fqs~p0Pc5ESEQX+P=rMa;173pu z1%f{iME=_s|9ScRA`#Y{E6&0KoC3N*4M60;>WnvuA%Rui~ok1_9uL4SOfp2PQj zDmdhA-@MBht`VbG zNT_wf#A_a~C(T&YFd)y4Wei^OehcLk@M6~x zWNNy#y2zJuhW1xT{kv1qE2!uosQFxPAV=MbJkC!gC)azQed%d-;eYZby9cAQ^AV&f z#iiM^AJ8C*V0R?xgvgo?*+rW*saqvM6MzGMJ6$eMjn z__xAcjM6=FQexIjn}7S&lf|ga)2(_Nb~xnZEN_m6%uS4A{6iqU|I~&7)k{E86aMN5 znj|lbDMqV#C$Bp~67F6{_=c3sP==d5d-oR*v#?e26-70YBfhFw6RBXPQPfQw3(UB_ z>-figr z6<^xt8eLSqtk=rHvX7#Tot&aRIKYo>i&C^*I74YUKu^`6tBGaZrX#<}8{VTXhz4u9 zp07wZpw@($4SFa>?U@1$&#`$W96o8pb#_(mw5oBdSbf~n(v2u~Z zpYi{$$Vg}BA$5kw;XKQlv|HqtQJPKD9V1;}g}sbQ*!`k_E_FqPz`JM4<324%H?u{+ zUOw=n;&W2eCgmy=&{3OVc#PBy(x{Kw7{ocF13aS9;s22ne;!i~pM9DE2gxEjWoy9%1AU;Kea}}J=nXi0mhbn}C zV`g9&7?G<|`~$vgs?8nrCIk##EsMIGtcxq+u;m+%13Y8L`4KMW(Gn{i=;CGE^{Jp9 zEtILwuM4neMV;Q%HWk=wgY1Zr;WP^E3h=E4Dt}!;M`P%!t~{L3w?S|FIU<;ygg0Jr z`E(P7#A7xj2{mLBhfB9Bdk^!u0R;X?^K{w??|91N*5*mys*pL2pj@6 z&IU;|^mXWl5l^G2OkCNWxRC+@k_i_mXn&~h(Lwc0u-YSIy=nKxH$X#J*#k5LTG=*^ z!8UR0&WP`^CwZx#-6N5sQ2hhfCm#N@{&_G;yuqoiY@BoYrEfK)XnPCx(P_Jj^%7z0 z?00KF-Bd7+rqtv7(2zvT?Rz*!7PKk+CW(83j+*ZX;aMuFwYl1;w1HiNbQmLF&d8w5I z^EHRQ$5Vuy4_l7BUiC>Oh`bFsW`EJK=WhE39q29LRxO^8q^%AWc>~k-28P^<2zI~8 zi{%8iL?JY}{@tkxMm+!Hi}x>*gXiwLf@>-<*VUnkA#YhjV%1fFsRy0Ye(kCWS_nqi zI8=u=Gc;+LQnXr0d0ZSLUB)sGxm%_*GvDy6cRKo0^=CI2u7AU%^Q7>E z)($L_kohOTl`&f^(hR{&ACiwSnOp)DT`{oVVtpOs`PIy4@991$>mpn-VC6Xp(IzS3 z z{qudB+-xXqFG9M4)|7o)^qDJeZlBT^YkE==2VZ0G`yj)HKsHP8dIKUW4a(ODaWhccALUH@9Q}n(K`w)q%R<;Di^Szbd%M3;q-p4 zHKY6W*a?X?kUmrgM6zfaKUVcb)ry~iIzBDrKgZmIykSV{ZFZ_gPJ8-IUaF%&VMjc7 z^tTfvqfNX6if@YI_~tkiWjIbQCdoySTwKFXH_63qa#8-%^nZO23OGQs=EH}6fF!@Q zpGcw8a!jb0a9O9ho3$a~X*0bV`Q6PCshM}O3F?)qjb^iha3|-mN?^boITRgP{uRk# zhwxQ@aiIvmEhe)mX9jFDN4 zj)2D|)$HneTIH)q$}%|?MjGjvgr8w`fB}v0*5ph0&6i0=;5dF!kLp;d+5Ls$<&-m! z8o&;O9bo)GA>-=XB6h(Hxex@WVe_nmD#%wTMgY(br+*A}%0p4bps*#;jSx9d!C%Emd$Lt&HIG)`&WCwfIiE#S2Ya~+{-v3U%A zrd;aV(>g9R6XK*Q>iH8aqJ51T4f3KQ&5P@SQn-`}=!b#me=@O9QfcZs;PA=!{DEmuwd{(&q3+T5%1^?6{;mcr5yBU zw-Agt{)N}hxFnL8b3^CHw_m3&+T$V0A13!CJ-PY#6J%7I-7J5`R1mZJxL(9UZO4|x z{$S>^54K(mI}FN|#R5nQ0y|1In>khm__v(uaybhCB>xcT#c0O#oiGR0B zMBg57hi-3o`^Np?dqA*pcD{EHkGV@IY|3o3ZqG1suD#ws#NMw;_c)&cpBqx&D~{e` zY3}*MeU6olR}7D>)YqXeq!;i*1(g^U%0#W2(I2MvYH9VtQjeJ>Ne+#jZg7w#-K3ZF zlfj|x8h_hAbjO>Lxwae#&Hz7+8GnFUc@(Xt8r3~*?YWO3LKS%Y@~f~YO2xURoK6nh zaw(f_{r04aMZ_Ku6{QkB|1aUy)pF7y2jNti9kUdR+Oh*!OR{hB&Y z2s)s#_VePH4H?)MH^uS1Se<}f**i&l^?klLffea6kP4}6f9?D8??*P6?7YEn7t}%a zRU>Y*^WOQ9OPfB`i7+kzUphdY)aMc3%dY-2 zN{#8O+=&rLVG8H1YyS{suBMx81*?}mBkr?jscTHNOEEBIlL;6t#TaG`Kslh8^7r#K ztu`0tHnCh757_fAkD2M}mi7Jo9E@+c2+Sz>v{_jo4M z%$vqbpTGBTeYEaWsC4?hVH-98?|AZ7?OwHAn}k9lgZM2vb4t=7H7}fR+_hdOOT23_ z9yZ@s_mC>y9l^{Q71PI6wMuX*Fjp#2dsE(tABE$^A>P5Muy9*AK?kZ#ks~26vSU!^nKjyv^ng98TWuJM!6#7wp?FNVR znQ2ZdwSUR~@z1chJ7r)>*~heQ>Ka2I{JLn&5LLm;G-Ldh#c??>QX-#7~h~Whei%8jTFx2^ED)xvpNzYY@n84<4l2l|NeJdn`GQK+}Z}BnNhm*CIl3GtELG5C_n%XVVt#D#s|%dhcSuFK&aGf_+fJPzm>$lz z@(t0BFkbW`9y2K4mw&zNyj#y^#WFkn@T*Q#x;&sOO-@X`)sE>{Qgx@gbXZuhMxg4c zFn`9&^Uk)N`c9-}qQ~wdsI+4ukK&I9qg-+w;qm6Ws)8KtZ;OuO_C9KMj4uT*?v!(F z3pA_PHQu1z9$O(-o#0u(>T3;C{5G#|TaC=vY&A>shxhN_Bu~j*P~ub% zoqbcG!|!>K{AF4d6YMM`X2lzMLvVx?On-VWKgXyF`coL1&T2KF z1p1BREp;rWDfj>!pt%GYz(Bq)U>`-IiP<)lBE4H;xMD~KlNVQi-O`Qq0V=y;NI|Vq<9Uet7ZbWq)#-fNYr;(*&Mu%g-hUw<1Oet0yrXjsF(9KA6gzf|w3nh78^iJAcMWhA0zp zxJu!;bWX2oZ>=v|s$(MO0=KkkZAC1f6VKR3C(}iLo@_onPoS5}_s?2{DB?a(iq#l< zb5t>4P$Fvv4q{nM3o2x{O_)S9oV&fSoz@g@xrHJ!wk@56OVbtvix7eVlIWCtKYzJr zq<5xDkStLQ7Oz@+Z!q>+ZGUH{y&|UMhP77*fhw0616aC7q$A&B+?)V0U}s2$ri*V; z&noW9359Am?Htj)swEZR7Q&E75N~MgJ>D?XD_4pIH6hHdz|_X0=2>^w4wkbk=65BG znGyuNH*A-B zwiZIEkp5NpujGKdrZ~4cZQ@YnO@zBXc=$FftFIEe^tCv`wpd>H9kp?Sw6Y>xxYMdy zY?)D)3uBT7`EU7jQ+Lql?d7}oa6^tMc>VdS7AOgdxD}N(z$_zBb)93?9lZ_H$D(BG zx|kHKPgO^GbsV9?!GA@0nkE?79qw#bK8t@aEPM` z?PzQ=t4Ku=+9NE|REL6bf*10(zz*p>1tF0vAbNhBB#E38vC4c*{ZCAq0e48KXDRC(X0iIH_ z14dWtWYzLsB!2<{AWBqRK@mCa)6@U?>SclgZAIkOn+~nC;b`>?q~zIuS^H z+lm@pO>Nom`|VHC$HJ^JR}XAz73gc zKmS7(cYiapHCr3}f{ATK960@@84-3>PYmPA7AXQY8s_*SbtL1Daas^aCftY>yQ!m~ zF6-hy5af$>afDb;^Tg#e)8t`8v8DY)AirAt;o-a69YCDoh$mX?zfgsZ%nXxoz0v(d zwF?-V4iBIuz&S8B#M?<$_fqve)IlRQafFyT^nVPx6OQ5k@yvqJ-}II$a~*6$lThuB z{hjqrD{5NwM%D>fj$ctj+ypnyR}$ukT`v3y5+rt_$?@a+XT3EMLNWSzL@dDVQ()c; zX?EKKb72S!rktt&<1aC zP9Cm9%~V_8(0FZCd>2{WOz=S<=l;}0!BY8q?I7xei)6rsOAbp80&7Xr!5k)#uG6y)AXU5vdPY||k=2J($4NEj_RQ88$1>_g!g!BF*Rx{DVs7Spl7)-=$;Ah5{B~tKpPj+srKf# z*B1{5AS{KxingtTbKFL*`^d|OB!6MoCub}t(4}&68gvC=e2@f7qZP8Zy?wgz11^eG`Uqu<|_hRD(s zt0oH3Qd=HoH4l4DcG;sh`M!JHT;ImvFeEEYPPp9;w2h{WyKZ)O(d2NU(L6&ulux(S z=#Ob$-|kWX+G-@CV;2eNc7OVYHw-Lp>~v!jF>zrbraPHZGBi)AXTeDHo8PT>irbS(v<)bW-h z*`dsh&Mo>zVA*D5B}pso{D~@2I7bj46-g@UXs#TZk7t?=VsX37Re$ahw0}t`HZ-R*ZF5$uYaOiKg6uK1J8`z;w=j?Fe`@tR!9*-j!A&qs z1J|I_;@SuW!vvzzI*;X0%Sqo*9fcz{AztHW+j)|vup7t3Z8lvO+h3t)0``ZfAX|(j zLWWKPaM?Ta@a5j98&h$}{bC(d-Dg<}_ZTbjP0a1)_HS@UaDP70@sIgk&M89#0Qu3d zi0t_M;sT`gPwQg4LFe6E{2!ugLebAnH)uVj6+WC$%xocClmzRPsG1E(TNNG+_p+Td z+(}+dY+9`iF10;u{eT*^s(x^5ZaGx}K%dV}dMa-ycY&}SP)WNQ0)jJ)iW0?yJEd~6 zj5mx*&!AYQBY!U3`o*m$lDGB!{r$Hfd@tt|cH7QR09P`zDDTL1Lw^&=v7#;J5xjiT zn|NUl@V}_u;=exa-%9{c;lhILHNKy;gbZ3t?5)HtZGJ;7eI+weHoUZ=(wES2kzkA2!I**;Zx<+hZj(;u!OGo?<_vAlOQ^CA}Y&jFRNOLas4Kr=y^rRQ46<=ZYN%?pAEBz}juKj!VPft;irGa6= zr~l$fq6VQi=0}6gh9a7zAOK)MpTF|EdN3HsuF{y1Dgd>?eiXq*53=#a`CbIr(%3=i z6YHRbtn;hzYoUnnaVE`PLO(Pwv(Ha@(4H~6pp5+1&CL{eXG zK~%>3XM4Yt)wMGo-p>AeSLVqRWZLaK@uBPSwDP5F=f!_Lwb=7e_~YzM&Mh9S2BTK| zoaT7bzERZ2sZbaHQ-BkQ(0Pn0*4<@_Ng@ZCV%F)j-(dEKD9|(aa7j{76G8m25!{bH zqhFk~$|iYNI0=Ac57!VYc(sy#Ok`JW;ayFO)xgC zcs5m?{lI@No5VwK&G04=Ql$fUUqjPzUn`8zEigXqOevQilV{bG3xYNfK3|d758YCP zL3Hjq*170cLRneO;QuWbw^$g%+kK75vnw|~Mj{rmaQEVPI6Xx*)e|~xzR&2CZ5?52Mm?3T}B?#{ZYgX zwH7LK&W#m!ZcWwE5<(j~SED=>`z)k96WXJbYCUo|GLE!`vBnf7+T0G^5K^`Cl4DL( zoD!oaOMxf&O=L6mH(cO#v4T1HRL;uTdL~s?sD%xW1UTL`*@7_arf;wna2qq-!R(HT zF!6t?>LAPvX5kpYwjF(NYef3X@g$(~CNv6;JEE(dT-~cZ3$SL+G*7 z-Xc>PH4ZipQP1(lI1f&yV1_ZsK)h}Z(>#B&%%vWpM?Y%oeD_CTh}xyh5uR}3izSkN zKq_K}L8ocX_h@bWN6xgCKFrp>f;;T$@8v>ehWmeO zpRQC)E%K@i^AE`cK&wUuUt`|TVeyf&=rKXD>1f%sDFT4qg|QoP-n|vnOcYd`nK4kA z8A!muRO%EGfPXDD1ADzScXgBP5d`)g`dVu+TdKaQ4WeduqbDzS_$7sEBH~D2yqtdh z?*!gLGuZ<-+VD^WvWfhpYOrk#FT#Jau>#F~THF=WC^o7}GPs0zB2bMU`+edoP@Ah) z`NVac&cLKL>DI28HWt=~`?#R=s6DRJ1RuuyJw?rP~t#*Rz?0#I4hs*tOQ^MLjz@d94I6x zRO^Xt8w!smy=^-!dGH6fq(wEM@ehSl0i8!rR9dlHC5$=>e8s_9m_CrQA8GmyNF%f8 zeNGxE=GMu>w{7`1>Qy|=0quY1_?=)_AYqY9x0v6+5`;H2@|`zWTr!tZQEhkPaX2x0 z!;(XEx4qUZPmrAshFLlo^t1E9>F_KaWW%%mS$2Bf%LXad_d4r!e_emzICAACeR@Gi52mur^l^e6 zCS_Hq-FJ!zlfJfxy0{q^*yh;X)C&w^f)>WOr9b0;21DdV3tjl5ac_94`d!}U*4^k> zaT9I2;Epf%H}yO{nXVoLyYfwEED)|Ye|g2htOl=HFb79fRU?0>Klghr=_a6(;R%7y zp5-_5a;5;YE&O3{_6g@2#y7$)dfYK*yEj!a&Cqp1DHK zltY)cgp|hwAt`^Ez|V0-FZLaxA)K^%mDSwwDe#duP)JKusgQ~iNvxe=;uKme`YnX6 z`>+SV4ei9L^{9lagY6Nd_6>(NiaXZqxctg_`%DsC0OLH4n#mKka8N@tR+@~LYOT`^ zkl4>(2maGGz_ivNsYzz}Ff3N?2+(zLtx%mU-cua9+s1#O)FP7<$;oa$*~Yg~PjaGB z&Af;c5gXQua_uS~$30~fNF7dJRqwtSX@LK$e4Kp$F8R;ouT@=Ow(sFS2*uCBC5F4Y zd*<(IzO1`x*6(E950ofFHjs0`2jM1hT4e8Me6YXr+&Ax@VpoS1P3cb|{M1rb#obPA z!76!JnYDkafzrSmaY?O)!v+!64!&lIuoXC0fna1b8#zt{Iu4-SsT1lHnImh$@YQ*w zJnr%f(Ciijyu@3HGWdMZfl@FCd2eonX@$xvC2CKr5hAg$x(#Q9HyDF7Y{OaPc`f8n zo5IkcF0sn>@hM8`P|E6i#x6RM)W15SN(Kj{%aVW44XU1){7NH819k1RqDW55iH#IL zzJEFDh!(DFP`Iz*^w#CgcKSB$1^4o5haX&v?5zD+w-OgI$@Wo1ai{nZiY4&SYO zQG}-IZodMZR!u}YJ>woZ!K#cEA@WYJEVSFp$dSx-9K>9?kz}`J$uf(o9r+4cB~mzX z&8&YN8H>TypnZKbf8K+pqs6>#TRSC10vCnvqkTc+j&WIs=Ifn~GndsJQXnN0j?u9@ zGNk3z2=o;`yv~mm5{JC_HhKR3oAy1uF_taKU`nk=>)zF@<1acnQv|$?Z`X)v{0vWE zvXz}g;^3{drs7nI$n`x|J}KuB@R`6~!HIv-<@4hH%4^D)8$(R|N??RPa*Y{&K#LD0 z?l*nBI29tgmyMx(bt9(dcq7g$*Tu3Rd%|swMx;0_Atrp6^Seq+M8+g<-A?|@ zJ?UGTHuAe?*4W0=vAZ{n`>X6J?~1m-ILzv==${HhrLcAFPEt?S5=`1CFKp`t*19jk z2)Bo>bw?ozfT{x=gPP#X+p&ludPIK$pn0hI=ywV!Bl698+~8~T<$i1H&Cpq+^#g3) zPqJ5~>>e7e^o!%wYPww;*AeYevE%zm40=s%_vtz+btW^!XiDL96V<24Vi z|Gd^rP8;BusL8-P-@Sbn&1Euv7*A~#khkA`6GrjP(|4C#@dQb6*e^;yA@G0eHm^y_ zVhnd1u3g1&ep;8~j~!*kvrS^n{*bPyn_B8)AG)O1*OVuP1`w3Js=bK~{= zqBZipBgF(Z!7}#~)N&^6J%l0HQB@(Ii%;@VPIMy9p4XJ+3yRPL1bwJl#g4TINgpf$ zeQJB^)FRj#z0d}osl6t?oCNuB;jx+09c-Dyd8HDTJ>}A;a>YK?_(FeGzOFqHC_?ef z%&cn6+GU|cD-FSO=(p${+X#B+y}BBIEYM*e;Qg%(y{v-~LzdRU>V5dQTQ>OE0rYdU zG%+?oZ=e$*q@zS>ivX3~xNODlo^-sIXain5ApCds98QX|*tZ=EU8@4O1Q$5sow4g> zP7nQ;e!&)=YnMOZ<==lF;XwXS!sH`7Xc;*J>o^&qji*cazws98gg4+nUA-ZaIH=Z{ zJPZDGQf$WVTBKYL47^j$n@We%P*-y7I)9Ldf8%K(1c8&J!l<@_A3i1p^+M@f+2*sY zR+3K76?A&_eoe}XBle#cgelmfBx-dw*3{wKIMo7GklD;6^<96WZTe=po;htDiAa=mOgz+E;p|%-$W)6&f5E> za4-q7>;?XnE7kQ+*T4IfP?qDM93@>G-obyFf@Y6Vnfy+Oqe3x~rJ)k=pf-^B8bo!J zc6_sUE}ScB>2-wG<3xjZ%8fFXZ}J{P1iV(~TY*1z<++qAWa+I4Hb+(j;ccbH@75~;)l}>Z z#VBSj+~rWCJ?5>=?8!C*wy%c#wd$mSN+g?mOQ(kDF@cas_x8k z+Ibx+&`f8Kt46Da?vmXMyfjo;d&Fr~74R!p>j{7Mm?2sCd2z$yzyN_Grzv77)Y;a| zK6ZW2J_H~Ii!n?Ns1`Jtj;nUy(}`_fNy9Bc+ngv-Iw-}1JSP=Vd=%UC`G9U}5Uqb9 z4x6`%;|bq`cx_bPIDln~((xW2cGe@j?ywn^3Cf`(BlQ*CQSZF-&^frD1EG>(S90%t z`~2H0k0Qk0UiYqCt=e`}p&gEM2;pi{sX&ahqq(X*bcDreS(wcm(C&vJ?uU;>v0$Sd zp%{45=+^NW&mMalu#1$0WMC}g;EjK8QnPM75RR8NdTaA#df%D^qtoMlNHB_|wI$UM z)wkKVY#@{D#;iJb9ARoUS(1H5I?mHKS156UV7j8id*u%2mDdUF8hfkJnuzg6g+}2? zcI4lSEw!HGOF_$?Tumyy6@*W_!JMV^lAXHW%xQPw?bP408etj&*-z6c2&jLlqXF3q zpu!X$i?Jclj zc>I$pK(;eSozka7)ZuIC-<-ycZv06=Fk5PtJi&dkedVo;&_OqKz)>S36#zYK3*OrL zgu0{IJI>BD_f){b&vJ&unQVXi9Yob)eC%RX3F6sWtlRvs9+s#aO)<1bs(Ny1Tv5cT z&j zBQk6qf1t=h3rTcN73yGoTfl8)94Y}Uj-=5ssKlltek*y1?qxq$?Po{mP#;;y72peGr0=BqZ2%r_;Tiyxs^ z&`#e}=q8EJ2&IFlml?us@e)WzcN~`TilAkL{Ota;3nVCvw5dQNW`n^k)-7nh4=z&x z!~mzKAJ2PR1-U8&toMJ8GuSo()HdD-LX*Zt&NU_teS^z#g!uw37P(WjWFFdLvI5y^ z1QAAAUY~ z?!q(7*6nY?=%Dojmuw+;JW2_5xoEFoBvXMRQ`vhE4E#FgD&(p1!=geD{nEKD7S$VP#`5WfvHlSI^$E(lE_Gx$?|M)raxmIGl{wc*>amI@kVu&f4=Bj*X8XXqiu>XHRhc4+RXj5?PNgz~(^RFON zyT$}u-KgD&Soz{44nm z#dvLh4WEwV`D1>UUp;;EVlTgHBeqOAbM!_JgQCK^ce7S4d1Fx3hr%g+NRbWh)+T=_7|z(2a4^STtDH-heYJ-DOfU}8 zi(JyBE<94N6!!@IlgLMyG8n7AG5_)iV{>J`fvY4!om^OS#$Iqr%uqmA3uzy|CGkR# zo=1N?p|~eyJ!%YT8=JF17fZH>3tsIvp7sO?Rh?-sD&=;gi;rYfB~{tXPhbA|U2^&7 zR5<`#_DmY0QfiC?>q+F)qT*~-GhEO|2b_xH#5yoDmAcRln z6EO7Sw4?YuGQlaHM7n9o+O#GlyEwc<^dWz*3C4p%<)7I#>VN41AR4mzkdMaxl>zN) zhY}7loZKrpxxEy3(iks)Rv5idqR1i$rYQdS*QakHX+lwbon&lABT~ebV&EZR#F1;m z=8Jq(PLZ<&k%bS1jk3(E)g`k1ysuh|S`lcUt4X3|T)yEfJntZL!I4e;cxaxxX9Ryx ztu!`G<(`kx9~knyVEmiN+c$yS*$cN5OWIn=D>#64Zp&80_t=RuTtlK)X3elhO9Pn! z1-E|io8&i#`@|;#uo9kT*jS=rW8u2lk9l%iAwyPjooP$q5+T`UM(yE^x zcaI0+iYLGNw7i)+Yz3+rAv&pfXE8Hv10B?U$QfhlYz=$~YvdD8np{5y zC1bY-RocXfPB@cJ)sNU>--b!p_7(f+u?l$6LK4tY>C=Uc-52q`MA7#k!KsEZ?XpuC z{fe?{y^4axmWXUtcToJ5hv<4&d<#ZMfs(ljsnn!NDSR+WEi+XCp%n z)G#z2qZkV$ZX2zD<6))fdyHq>6eJD{%Yp0i+9ji-I;^Lb?<+sOfikR37k{^g>G|$| z{_peu`Tw69LVN*V68Uul=Ywasda&W#XmSg6>!8|BZ%h>md6ur3V*VEN5-a`ut*#~;)_O44- zcNk*|hJfyNUDC|3ir-pFJ9M%c3hTfoTe`uyraxReY&L!ZI#z$_*tWVWx&pQdtI98E zTU&;>u~*$g++f&C0eD2*7lTiql6S=t>2)s!5aKlnk`m9oY&>$mdO?A6K37ME6PNW4 z1xGT2)__C|R<+e2_J}BiaFftzPaD(zHq_+**J55pmwP@UhI_ugy5e-h9qmPssd32` z8~*KUXCJi&4!VDWbP3<(Ll{x;%58g>l1wUVaK%+~=O&eBTy6Jwl!8)O`ZxLjaB(XYB3~pTx}3 z0z|4(x9r~HqV|e<&?UO~5^COJ_UeT(LHP>Cd=`xv4Oy=kyCRA{sX*ttol#^9fz$MR z7Y3nUH)jFAznpRz1N>mZkD9LZ#Mbc26^F(j#_;xt&CD0_i$abB5L#6*IXSBk_o9EY zE27?tiE)473_*AO_30ZjD0^I$?vuk>I=2*S%jk)uS;XKsy5c8Au^`-66z7v1ujiM~ zUc7qxl6LI#@BjSG%ga69T<3TE*Oj2$YD+r)CJA}S?KxPU-w=n$2`2_DV)E1tHgdM$ z(%Vfzw}N%AuSi*Q}7Z*KY8Ajz&Zp6Vm~`J+we-<^GMAH+~Zo%1E!IvIhlQ z;>{H>VQioFd17lSoxaD=JNy-|;U<2RfFH~CqzbN|cxV2>4$Xi5S8?HIibh8@-jJG) zoV1%t1S%ENa3HAqs>G1*>Z{_w)kt_6VC&71K*Ccl!hAh!9DoQ3Eu0-iFP$A`hgg4M zeftED&X|wZVKLBsBS9fIOwRAN}X z^l$J(n_?wjjB0S;-lm;y8KRk%R`}A^sgV@)F`^&^qk?DHC<+WA^uOYmX(dD&A;;J4 zITd;OSS}j;6A_KY)nYvLcC5FqX9#POu{8l!7vYQLzUqHtbhTkr zUV@)l_XHHB6HmI9lVMZAbsGJ3H8A194^(X zZ}JDY_`fNpWpRBaRj%9Hc_M!btB$jo>2g1U&6^&ldiOHn?pI$tL%Xr_3~{8@^a87j zb@H3ytKMmve!-y#^snrNgySa%vNHwmBKwp1F_C;Ro;W!PB z&3(rG2T){^XH{k53qe6XNnNsmH{P}phX_%ujcL^3>6W}>%g6|!F(Da4>>wZ42cH1F>_s_ z%Lb?{&cyS1Dxa$L4@Q5*2={Z+|0|`V_lLK=$+_#M=%wCgD%+AtTakv$Bqd!2b#Ohc^3@fC!j7K&+i`Y!^W>0oc1xn!z;ib)VlNATt1zn-TBMM zJmR)#TJ^PYsjJ`qf0MHJe^#GP<*iMQpRRg=kn_s<4+%X-cS z3a`W~hi}EhwSSIRCO{LNe7XrCit?Sqqg9+07V=bi+75`P<>83Qq_{4^WW6koFgNEU zJ>2Dw-&P|kW(t4b>ss~#$nn;PqPf#U<=WRvTueb}e0E#R4;%LEvlikl#(5ylp~bvs zmKw=F(7RNw0xASY;L`fyxuWA!RKU(*a}<8W@{n^)E-b&gf*qvhspSUZOjwphwKdrY zt*@?93ycXnSE?c^R>nWPhf975Mpfa^vBd(^I#$TG#t45kYa|A7lYW}Es4X$p&4@`~ z53Dl9^Ky?d+g#{af%24;(tem#@Kc%yN^!?dot*H1oO`0mFJI&fy2S-AxOoIlRkrk* zZhZn68~OX}-nNICRXGnd!3#@@s?}u9i!!E^3-+z7MD3VtlyRP~vqc!`XgV?6?siWE z*3w{N7IS}6?p>hK$pyp6%=QApBNa)_(6)GBpZr7Q6twYt@?7F8qyY@W_3m3AlNp}djr(hk8% z@u`@ET6A$OTy&&_nRQHK^y@L3M2SI6MZSn=Tcv-U?%4;OclVhN4wn#=FX!$mag-7se_uZogV-_<#@AT3}&Z+>EN`)1`7q!I+F*}69 ziC%vguyVmkSh0@@&DWHeyI$))XWK`BC2ln6pLncuE6&#iI;co7NLb4_< znON5(spxcz8}Xb(ga(@fJ$8@d=`oJ&_P1_}8wE%64#Ed7v=lQa?Q(pg4fC^|ZAKjj zkA{dnVthM@gJC@%nR>%?$8oh2SJZUQ+=9ZvpA?GWuS__^+*_hj@cNt#n}<5=Kq(S>)}y{(uz znKZ8U<}*R_Zo{3g4apr(d)=Axu#OjKjWUUX7Bj`7E~lJO3 zmCaWT*{Iq|M)QhMUqYZGB8h*5Q!zj3>-}K(#N2@d6$H6 zH3&U`Az|1A`+N-dtKwbB*V8I_1rO%hKS1pCF<8W{^rw2li5Q@QlJgI*`UZ`@*%4Bd zIKtl9)$YsPV3x_L^x_0*#G>U?XzAEo+5IT9Fs9nTXnCJm=;8-B5O9A;UKJunBPVGs z*Ly@eLlIjdnXWgSn$|gDofrBfIpakS=u|0A6ap^y9+HH!)9x=2~K%N4* zOSplak?%eyos2Y&z+&RPF{oH@UORQ4;uK}k{^)hOgAZB+MaVpKW=KxhCr@p~g#4`h z{p7ICQA(xH-@ke1z^cJr zIwY+Odc{hRp8eu4B{O4rKQc#Oa@7-RRy#aNDla1n18vn1wm74jen(}OX%5+T*_#sr zk(678C9e3$m+aMVAb)4ZDo;?OkWy>&SJ8z9}(PoX6wZ zMip)TgWAb@&t88nm(9U@N=6b(#(U>M;_QK@`4ceJ=EOs{op*SAZ8%>=G?Vwwl7sj3 z$7dckb?DqH(QeDcgXmJbF(r{{EIHOlUWBWe;GOoZ->@+^luBb0fC+O-BF4+MU87J0 z%ZJ6Px|mG{{IUGc`Zg!4m;M!kxOBQIT+^@f`;#?gH!ZS*;Pv zuwr3YbaTZOJ?St93)4FzK$Dv`V-d~L9Ypkr*BQ3{@6a36-bg!Hx6{k?-f-yxT&eoc zZ(lwUx5Kj^*m3sl`ajEE)IxJ9eoC7$_y+UwYE8INinzH_vAIkVh|Aid#D)GeICWH7 zEm0J}lu~~gW?WSCN>r7jiQ?XfjWiaA7qaM25coeue@`JUaY7rbj(_WV{%vxArObX> z=M%iH#|k2z-{%jUv!P3<#-QQwP1oaDlT7n9SYjm@;}uL#X#zfh0oHvxxxI8qBA>z# z>QG(IrK=Hw-tpxr$HVnhGE%Rnokkdoc7&@OCY*nnWYtcqT6Q8m>ncU_#=2jk>bdj@ zhw_1~&^~;E)v$mCxqK*WikJ8QbvjrPaeLw@wkClcLNu`0gil5xM`+TwuocT$ajA*x zo2*bfQ`ccdkXdUlGPU&8Hd_o%}P5mE_8%#k>Nc>HJ0~l~LFk+O7fVUbP?<{2 zUyB=55p^K~pQQ={S4!l=BZ7#$c4AV$YHd*(oUClmyVQS?A-&)n0Qy}O~wSVeA}XAs;CvKPYtO;(XLLX#0<@%!<2tH z9abjyOp~!NJv=#I{`zZN9!lBZDsGyI-9dCw*A(q0ruu3+zLJCD_~tknr1<|O`3NBs zm>Q%t&(?~#tv)m!vcc1_Y(J=r8-)$RIy8sc7pJHwB^1-vy;9S?&aFR@=G+A?m_1MQ zaUw5AO?;Cp13&2t&>AEGMSKTfQhtAt#EWLt^Ubt5A>#wydypOOc94MXe#?GQ*n3M| zwCleo=-Pf`{tK^4jx0%@;=2d1bY{o65@MT$u+sK^H~W)BgNgkiTl6Vqd=U(F?rO;S z`+@5~;=#teO8%W_5tD+1X;k*waU91|CgwNWOIJ8ONxP&g1oe=-wZG_-l(v6dvJ@rS z2n;KX)Wh2MBH!2){2VH92DyNXr30$MjtfDr_*fyyGik&LdVy<0CBqSswkkL&f+IA$ zD%FPSCU0K`M^C;F?bff|<0|$EI`mJ|r?BZBYUJ~suh4zHe~+O-TiIyEpr>`5ka6YR z$!+&SBOA4S-{0obRit#=L#}`8itpm}F^(qK&sr0ux-vw48qTr8SB$6SUK~TX#FOJs zGxi7+E7EF-vzD$ctX4zn=dSM-e7@w3q9x-~Ya`uB<~t#hr1`b0-$YM6PMlJ(+lkbJ z@e*!FW;Jus5^t#2B;BNF>%_odmAb@4Ex#mtKRPI9ovasvUe2tF6F=p70n3ybi zg<(dqrCz8;3Ki3hdz2ha;s>pLTwq(8pV1bZ^cL64qEPi0b{Ags-p9zGBGg+%O0k#a z+`uyF%eCE^?1+=!!byK<6me$TBFwI@1!Wi{gZce5V~yc32@U7D{S|Ii#u~J_5+oYG1Y_nT74N)u_6B1`um;HPJ{ryS zoy}Sx?|HJJT$T;Ix`P>Wrvkw%5Yp1Qu4d(`bG?MCx#P;U-Hd<70WKbF!u+l(ClbTq zMgPw?8(hpTnMD_7*sRPFC5nd-{6w_FZ6-QK-(6W65vb?}rRac|%(2NDo$0NDhOwek zPGoBmHc$$=A0Ls7`8cgB_1;F2>Z^YV7RDN`zM_$ZFr$Co>v}e+4nfLlS&04NBqMy*BsPJD zw@cJ042zFch~nHpVswG$;HIjanBl!8gbAp+jzl7k9ugEbou87snS*-_ zc^3|zNEc6zFcv`)$*H28!h5umuBKY+5($b;V&R)uC$P_(&a^GvXQ@2ab7 z+IwHR9?5^7*%IbT6uZdt?X{s&I8d*r3%#{2M&q)!CKU;N#&MFyv%-Qn>y@ezU55}h z!aFx0EZXyD+|+{R4W%~+|p`lTEfVYqViBQ^)xA( z!n#@Pa`8~MHfGUCY}oJb3Vuv=HyPi!8hu!v#QyP%vi>6ZqPm9vIr_ql)YY_-lsIqR z;@;n|GH%7*a{ycK3!VQ5x0{E?<@Nw-iDBURroS?xEfcyC2BWevSIK#STBngn;)c- zeK>tBJL+vcyBtVwbkjF{@`Be@#dd5p^*6<^lbSM5+sF9s9sYrjz?CVqy)b3erf7 zceC+zOiF16fioJ$ASgiip#C2{yn%npwb6a&jTKRD>05m@%vx)1q}>PGhGjBLf5f3`U_+oz7d89 zAIJIc{yuF)&o3A%K;S(L#D1|l(!Of zNB*n{KqbThl`scXA{*d0IIz^;YA4OOl^b``c8#~T9q%zpQ~W_*OcTs0rg`sXS_ z3sC8=F(m=c&$L?5or(}9KZDWrlnxyn?twKtHj&6Zf~NNO9TDVpizpPDvj2cP8|w-j z@ozyM<|P&S<7vTPAtHYpy_ydj4S|T@&eZm#TWE&fE`fn5WuNS~ORgz{a_38Q3gAy) zhZ~5$i3Bi+-w|&J_K9NPWQy2oGCkJL6n6gdK%WfHKafq~PFZsz`Mzkdnu#uUMc^ii zfCZ(D?J8}%w5H@Ni>BwjU9C%Ad>~JZ*p6`?UFs zqF9a7?(wp?4oI_E{V&);Dv?9oopt3?B9lLr`Ef^Y@=MRZRQHlQWI%nQe%fPaa3 zq2tURulU7nUVnc`8#z zJ4t)IKo3O+Y>ckM6&lF`l0*52TsAzKeeth@77X87E~9&vL2RV6m{ed|f}_Y4c(m!o zR?gW>Ivy`p)o=hvAL6B~a;_7lpkfD8qKI508uc&<4KaV#>s0G#Pn=4M*}r^G;D&W- zsUQ|r$ewEPa`j_QBwvOpXTe;?UNewSu3;$CgojO z$F_*yhY7|11E5#-B*_VNL4St4XwLg-Lx{4kqP^%H7gt#lIF)xtljT{0FlRHMZo)6T9Euwl=H>RKMaF?)xT|8ocs~Tcd z;QF4?9Lr)_aHz!{r}tu%FlxLG?)As*pjS`-bQynnZA(mP$2bVaOBx(9+li+aw z?>OnPbZz*4t=wy)0+l5p+vx4()90@^*Oq4ubvWf8RRpXDa4ze^|Bi1mKJ9(Kr{yM& z&fxv=@_2QOK3@WFaJeKfYwp-!S5*sGW6-B`PYt%W4^Wo8o|Go zqJMw;&?skl5!}_^Q8EBsz1poDTPqr%(%^seBx|w!J10d5?hQq;m?Xs zp8k0!KU`NZEld2#k?l}ZB*3dLxzcDg$KQOK)US$Fj$bC_IodN7=^DateY8dTa*6r{2bBSXhbCV_Et*hAk;P1bGs{AcqRjMe6+sVvXQl?V_y;81UD#v zVB1YkDx|yP9Yt+CcNux0U}hv^Sy6wkFrx~e8S?VGGc&%QX}7=scFA<~Mr=aW9gSGS z7m>{1&&F^4Zdp#g%ged7b4g=`4L4{z=v>F7a6|yD zZkKD}eU4aCYfX-ve0A{^hw0^j;OgMt5vAU#<79fynkzq<54D=4@xMOqhH`&dczDw7 z;&mlsC7_&y?o6>ZsvJWpdHYv#_#m8YRmhD^z>qr0INd{WffU887Q7m<=}0P*)H?G- z&{XE;CskjK%U*HqHR303hGE1Z`MT%yY1!VzL@O7LSNIt++ISggr`0VI#>|${$O1S1 z1&Bn-yDHJfTNTOM@1J3*z&n2xpeK~AtE^2Vk@18xHX_(OjD|+v3vFkd+sioRQR}4e zV$vg?Kl^S6nG#`13nsv3{64wI=xQKx5z2qoPw?Mq8Mb|r3$WPe3lnLCVd%Znq+Y?v z$ix%s*J@tPU)pM}-fR2Ic71fB`CB?2cTpiCZMsn9O~@N7KBHv4a=3ru_~OBs(N7wh zY@hM5(&pY(*I`MGU5H!|cKj>BOZeP2lF%&N$8gqJ2@8O%l=vsX zs`D9R%=16~Ny45JeMw)2rIo@v$m$&1Ah8Zcy)bEopx)^judzA+fV*Wjd1VL-6!NP; zu+GFA9`BuQBg&&b$FqNPsnB){2MfAH+My}|1zktU(#^1bODc85?hudNWufx@EheqY zsP{-bTBGO)spv>PZy%1kKIRv2jYm{iQLVDJ=ybk1xFRKDcv=Y zf!OANl|*wby=c&29vAsrOs;N= z`ihsSS2J($p?Um>8~}8&C8h{yOc@>{U4Fi6mv@iP_S)ex9T(0nS2IN~^_-D^d|BPt(SaoIrXON95wsJ0l`K{4plAjn z2=z--E{UO7icVqiv}P0)xtD}DDwiGEN-jgfnQ#ZITP|@2h8%{d6Qpt#DnK6%qQzU2 zW1qaVRW*P4f+qJ1F(IE-C@JTwH$p3)GmUIUKV#{aqk>H z+M=_Kc$}o7dvpWihY}l`VX-YV zwXuKV>XJCAT0sLBVEmlT!EOD34XSC=14WY~)l}VX6pyX*)e_mIBW1O9!xW4WNn8t% zEXsoR9Mdvln3XFc2J7RDzO!$M>KWYLqKU?^3zM@E006x1n+c^!20yK)?-WJq~~@EN+|hp$t6 zVK_meg&cOW^AC!lis>xlp4{NlgUA(M(?4bIDfc&`doxJ4vOv^cI$YLf-4^NjEhBe-XlVYl2CfCfRvtp zoM#iGrtZWCjsN?0J)iS+1?Lx}7rLze#zi$h;18s1{p=L64?O#VR>og5Y#B*k?EXC! zyBY@|(t)*uS0W?iVoL71#~G_fVdsC|7b8%-q3KJ>6>pb@`fx^gB^>PukIm-oy6EGN zE4~*ofyiJG&?8q1*G?f>D=%Pct3a@8J1OpHc}UT(@8<3gCzK~5nIk5NQwqiuOe^R1 zIhwu>nfi1I(*yU($(!|P3R?Pt{?i%X&pNAo`VsAkv!{#YAJ_Afe6{MNX_kMTq-h5c z{sQhHUnP>EwIPdWWxQSd$KWGy%fX5&{KEM%A7|pgF8c8be-g;mM!|wx))cE~V0gXL zp+kgKjju@0weQ1z4IXX#MF;sLU&IS9hyp3Wfc0mCKONUR=0|oM0;+WD61|lXy9$nP zAZp=f82@qz=zdWU(G#WykwkxiS1(>&ChxiY*B+wCKK0{sR}hhmTPZ`>_yUFm3kDM_ zwV?|J4Hyp;oK$OJG!SnHTmh?FkYMFl0e(sF$zi3C60VgCV+nU2#YQ#op1%e(5-Opz^jBZ=O=Z{TJb6HNtZF)O!3ma~tBPxF9JJOiQq(6tizt^WFj)szrfi{{ zXtdQ-SK;ZVKI8s?pS)q3Q}2Kiry~*GGUHp_csX`jjX((~hz+%vU7@yWFb#4;bzlyy zy9YHx^&Y+wn2$wg#c+S(L!pWe6^$d)h8*OQBreNi1_!3&t2FvsI{N&6GYuuKJgY;6 zI>n_~GdyHSD&jbehvZ+V^tb^K5%2CzVQLx~-vBNi;#?~1)__^`woJe-xT{{X2}H?` zWbqpsp)JzLQm5)|z?5-j^*3#G9_R1PZjV`_W2$aD6^@mi?LPfl=NUtP>wT#zEV<#< zi06_Wp~HK}IDt42{NV*#^2$mG^`|kU-v+{VK5!Td4#SCBy|bw;6<6a50`WJo>EHk% zj>JraEUzZ7ta-mnt%_Y=bdJ7b#+{FIgd9snxqoxM8fs%b!(jHdG#ImRM#4 z1DJ|4DbKm82%z7p-@4^f({qgKQSv4I4)nI;hIJqK`FwS0Smn-$40aqYht*{FQ&{H$ zjy)`@JNRww;@#26`)l{IZ>BrKkx;7F7-6IAQBl?Ve7MUYaz0zag~C7ISKy1k>C|TQov;zDJ; z>&?-#!xQ)Oq1ptr<}aSROdCWHyj@RsZwKDPJ{QZ0T_(eTYXXii!C}U?6=+~67ZHcV zB;a_8W|+E5cZp=7&p1(qA8Wj=YpX@-w^xQi;FJ6mR&j$#ex#h5HJ{qA16St`I!X|%y z`{GG-B93*`OVr(H_A&``nvq}>H4!sfgmok^&9QQn%%K2i%fbA~r5m}~9(2QNk6*lj zpC|)=ORMHB87xAr<*By#80mv;3Yjw(8JCXdZ~;1+*I34E{IOUiH~De|V{S}J8gu+` zT!G;><7vqb65J9Y&27uOKTDvqSl~4rWG1rVq&m?gINO^SyQR7*JF4aVoE&0oJ#;l) zLgC;VeQCz_{|uAF&9K2xerOGcIh$6V*NCx#_ZWLy%BybIGZBH_}<%N;$vD%Ot! zf1&(?0PuS_=?mLUuNbjC!%!mPR%W5c-;4h)Fg&$*XwF&hLo1yLE5qpa(G|mV?X|>z zISj}vt?maCP9?7os*7ah>Ze!%s~g{9G(Dr?p>05eq2P~m3plc{m*t4!QI>#JEA3%p z9*8y-2&E~G7#9O08z)Qcq#>X~O1-(V&}0h5rpUaw{)x5R%2ecC7mawDd@r+A-W5`0 z-e$+UKe{=TvRGw~iBH7S3zOI)YJ8Y~O-RDxZ{Y;;M`uwEavws#I~;GrppkiLLJ)=a zkW{E*NDo417Vip+|ND_4OT>6%$>&(oRX3{+h@T|uBRFmdtQ%>M^%Ut*rVl~zn$lx@ z&JWf^rP@pXEiyMTrKlwPbiL^eu)0X=;F z#e8+l_1&<=%W8hZ|7^}ePdm2VYg_@>j+FiF*ov;?TL~CClmjDG;o2Mgj-eWEQqes9 zQN*~Or!dk9DEe=RY6@ItJ%`H*^wvB#wA<7!*)%EN&x;@O2jXZTqZ9R`1NtWl-$NAq zE%%%VK97mk z`e5&f|Jx7yd?5VhwA#iX^TLg84!Xp6T45QHvjHT>Z(Tj*)oQf1Vfgl z=EDA!pQ@*L4sTbt)x4Z6%epfvnLr&hdY(m`$PW!vBKH|Rw{3JiWUm|&!s z2y#X25MS>!zA_N1*5cQHIN@c(i>B*;%G4}Yi)l427BGXL7*o2Wn?P5cI^eGwo?6G? zfSnGaV)2)s7GS#77fB~$GF5g3uwLw=G>9ue(oWLWf}wk}#_a5UwdL?N#Tp&Xbq5pz z&|}qrRzOn557F%i(3M~3-7 zV6`ePJm$f3=nuVrK~-#2t`hMZ;I?Zbj=7?vBpJx~yl*4;NskDWg>vXGc>Io-2bU_1 zz+dTiVFKaPtJwqmt%JxlSgB7kfdhZ_NcAi}X~PhfFKXh`LvxsGKI9b7LicYe@_{wY z&1FAZ_pZ&xkm(5^yIe6o1ncYR8063`d`h*bJG1q2aa)#u{!6$zM199a$7)PseAqw% za5rxpN%$Qs^GZE-5>lmk1M6BFR2u7~tMJ;AA$7^d560%Rq$5OPmytzez5_AY7yx$P zkurt4-zlh`I!Z(m5C>|5UcNc!)OY7d{lwCWxpkrZ*i{F zh`Sio2f|`f@?$P49haJAJR{!h>}_Qr5l5c5q;>6W4%U^JmRa8#=x3%dfjE08J%rWJ zSo5>2N)sQcl67$X?t>Q|y2%IHW0ak_lDAp6p?)Ll%O zcdK=4^v?Wrrro9y%uMpZDUGsamXkXcMoAjG9V#`;{Lv#{C*rt{_(xC@SFDrKKPUM^ z8ylXYg7`=ByZ=o7hN0W~g1MxA_bmC4{O+&GKM^|-~IEL(*K<24U<466r^K+ z*(h%ro=4%CHcDJGJ42iu1dCb%8ohHRMCwsh#xfVH1nf%Zlr-I+`tG}%x)(H>*SA{P zX`+-+hgQ(lWDFj=nYnAnHSps~HHwBp08}+W>TqDq1XYsbC@Ryz(Ssu!yp^%(Y~f}x z2YsFVy8@&>&(VsR&#US5fyc$B4%v)Iuq& zYW~S#y8?OEV>{Wmd~QN7AleTEHH^Ir2YXaK6Hn2*)>c)?0N(ec|#-}=^fp^4&tG>tD!UAi_eI+ zx?K`>dF<%z9jJO(e^G=8x0>F6Md=wDcn0Z)^;888>w_tkWd~!io~lTrd{`ym6<8#W z78>7MESY=c;Ch~X%97*br;j39!r$Qz9fobSNGEkX8-35o!j+)^)&`?9uNRC zHuaL5jRVZZjHi1h;~C0sldX#5Xi{BxauI%jv6pfkYk;S+^S*-H(F9AU*U{a9(y?8s zZUIO$69f6w!~iH(WlL!ocM75tFo7FZy#JHxB$c-dD4vNA?DP!%^rYE`UGHEd1D`Uv zjwSm{|6Qta#>G82eCGszZr^%870?%9e^lw3szU^2#VM0^{BpB<-p2OWp<-L3g?3nycF@huWvl78=eq40`& zeRCs>a}VY=_K^Y!{5SZh%zdkFF1Js3MPZ!|sLa@*9c14Rl3n$GVucV5KDnGiB7g0n znW&rN=03@eQ!v~5$#-zwg1ML=wx}|-%*k-mFwYl`mfZ|P?l<&4o#`7Kj>wmtuZg+I zc@Q;uw{vVDRUY1*d3^!*XfdI1H`oP>xdT*V@WnU#I7;|ROI{Z@yk(!($+wJffk?uHScM&9{>k0U)=kqyb3*4kQ7aSqU4KqR`U-04La&0j2>X0~6wHmoB9NAd|}04jUK% z000000RR91?Sa18003oqWiMrUWiDfFWS0@A0VI<~*AfmG00000009610HlFF+LyGZ z0Z#%N-IoQY0Zsyq-IrCT0W%0B0h?Lau+4Rskf#9_7sBQM0A+b)FIGiTQ%O%wRa6B4 z0~6wHmoB9N95o~Xn_1_$lgc2#008H>0sspD7ytkO00031005+c4(9*>WqD;UQbkNf aK~qIlR0RM76XI=`4yXYj26LwY0000_vH#fs delta 102349 zcmV)7K*zt=)&{iD1`SY40|W{H000000)v;44H^fOfN5uxfN8NVh5`fdJ!!MI0(Jod z?mcO015yc0A+b)FJ*aUE^usBR0#kB7l3JJ7=USK zb$AN^0R-p+000E&0{{TTJo|GRInuxLSLimi#W)`rKeBtfUdQ!0m?Yf!RX~!W5n0tyZh0f8j^g-Qm^xkqu&phwLMdnCbb^ z3O)y+?=RTETiPB6ZtNevU>BT?d>_zv;|>I4&e{)1rkMJ%cvA4Hh1731ZJi7I8@hBqR0FQX+Hn5LFrygjn z%uv{Ve?7t%Vczq4@XQqa=NI+xxfwN3gP9zEIsLku5{hi}<|579n^xOceBjB?tL@m_d&$0P%pppGBta+1`?w z%!0mJfElfTjqn%I+6*}$&zUKNZ`okxIh*@d>~b$MBkXTsJ6tdW<|F%ItSEliqfX}B ze{@>5#}Jl)*cxV*A4e?YA_{E_d32cVSx!7h84|E#ySC~9$w>jC1x&#R9g?%dz!vrb z-#HB{h-WYbR~t zyTy^%qP2)a54z+;GxtGd)Z-uAim(OIe;2;v_-h=R<$H4*Mxi80Bb^l71MD z2OV}k8jevRuSYjmoffJSC~k-e&|MEC7gRMXSOie;`@8WVWymfD=a;~1e~iR9!~}Vt zBFKt6feIh*gt_D=3>GVP>IdWjXV2Lw1ZflBzr;LzJbT{4#f-sAtnI*I-6eA&4j|P& ze(knWTEgmfEpgu!JTOBu0zW%VKb|3&^~dj71{JZjf|$WN=#sxF26H}(m#ppuvp#@{ zFOhH{4E$b1a~_6y`mW_ge_PVS{DKC{k0A_(qK4fZm!%!pUHoG>8P@Q!-N3) zU(YSLcXt}-?fWYj?3`EF@rS@c)9POdl)@|}IvA{Cfq!AyK2dO?n4zE5+7JSizh;Dj zf+ZxbX>~vIM|KK-&dMZjug?1np%B?Ap79eRfLO<7vF$`%+f$6}f2HS#9KJ7Lh4U=l zT>wqW2;wh&Oqz!Wc!ol=@u-({Y zUhK}`YhE>paXr6_e~TxqE~s@BIsfu}mOvrLfuI51DaRpX4HGr+8YZSE);Kd26N#L0 z0YQ0aIzpoi;F3aXsK0oo%Y{~zK&_y4wD*uNvszk$){w>)TDgvtKSbQabvyR#g$-6% z`1B7}v&<|J@cL;6oaEkzCZ|Vvk|I!0@N{bZ65BkgRfdE@GMG$m$b09$3u_hV zx%z@_0M1c~#0UwEz)w_5DdvRpMHhE=8duJAL0dmu??xA|<(C{aOqFFLwW6DZ_8W%L zA)!?nvUU_%fBp<%8ti95U`$0%dk2T=LM9pcuorM^?1)G#L(-a4eD)pgc3}%^&)F%x z~;8q^CDYU~7uyp~86ns#wN!?lWN)z3 zwjpo8Py#bFSe5~^5I@_D+XL=DWE7-3pfViuS}u+6#rJO+oxO|IjM zIOI9vZtXHzN6Z2z76oG`d|)V$<{`72KsCp~!`{(EQAM2jxb-s1QS%R_?^IDlL$B%*%~vz$ZL8V^g#WTA3&&h)+e)Kd=*9u+n_5EGI{#808n&)rDb}?+=8QX-^_Itu zKyRrd32a@f%&~M_gjOI(lfnDTV@1f?fA0OH@ns1z#*}e%7%1MgMfPE8L-zg9VSOJ9 zXo8B5BbY7)Gf>>C^ofmjMZ+sotfu#-Qx#He?saaVKt?KEUK}ZUK_J>)O);tAlopkR zpe4;Kw|?e4K;!6|WkOd5(E``|xuRAOnLtJ#Ybl9{Iql}4QEm3+!(QahBe-*uX z$D-0?IgTBb{lkL*T4}4$2H>@PJ~hSEJFdcnm|_^7LKrS9Llfq7Q!EGD*-*t_@6dSQ#P_b1U+ZChU`_;C!Rv~Nj@Y2ZFkruUmif3FW zy&lIiSg|t0U|(+PVC%f(`yP*aM+XPTy@O-1HiI5)ooMqZp3Us^*u!+rf7;)VF_u}r zE5E-+%!LgM?f>xa$us1%9)C}ka^v}3Il@veOgi6dV7p$g_t(e!z^ixo>#x7|4vu<9 zM^rTtkFeo*=z6HaP($q2Mz2covawsy%f@g9XeJ|(uUu#_O%NAwE+Yfp8SMz(s`>AXv_Wv{bGle#*Lj~ z0Yvrb&8DCS2q(tE?XUwi@~qWeWUY|@g)mVHN=xpy;BL8t$H>O`Jzapo|MwIj4q*JA zow8qAiO{fgxMqace`&%g4?{ofu=exkY%m(#j2M3SIA9_F65AmbZ6ervm?Bcg)JgsF z7eM^#wL9$7-Cm}x1?0}FsdVQY{~U(Y4XN#LPilo!mKd&Je)JL%fseV8nPl8y+_QYV ztzyK{;+OoTpL$(Y91Qhh1_Afx22g)$cf0LB5ggnpv{uEbe^5|D0dK(fyud~dhRo!Q z0R6m%{Pr&8g=p9USnY1R;7VAApJL^C8u?Q^=M-|#wE4uH3A7abj3_XF&M1(#!X?vW z4w#w1jC@z2pToz5brHd~rg)A5cplh-CNFSoGZ+yP?G+RvltO~MMo{Ak9lXU!50H_~ zVF5yr{YP=4e_Hd$k(;> zc*XEe@74zmZe8r04$i7w7yL~p2Y=*W{}=uvVb%wR95`Da8j@3CM(#EaV?(G}+Te<} ziAI}a?{*>U%KQU`y0SfdyTy6mVK?&T%U({hqWY}We`nZGE{%z~+{@4l$S9M>lRv2r z+xzXbSNg2FhH2Sh!1hiz&SYpi^R4Bkb#$H4#vg{=The42gA+U6Y7AKyiOb#?a@Z(X zQF2FAMia=9jV}(YKJaHRb4fe$uA0 z5tZ=Ue|axRM9?5@SWA{6SJR_;g+JKf)dnfI+vwVNB{YZqqJ!S;*Vb8!5H`!ezU*Y2*-ERzNE=Bq_cmaE0?vbc*> zmaE0nWywuE*e0k9D91sz$d+M> ze|R>{hRWiL*D8JE#KKZeD zAx^eYyr=g-exMV5`7ybTlzfAoD15}vsqeOnS72m|teL6Lp}ka}=q$gTSnO}Q@lHt_ zFzWZUxvEyx>PueJI?9a?zW~CU(SR9mf4Ij(+hU{i+NXS$W^XfxR<@p{Mo*(M?ql(2 z2SlD6;5wUFJ;PYTQk$S0=1{&*h6){pbTjJfntgHwx0nTngzoOLmPCR(ImuAa$>9?w zTC&2?{Rn(M1je*59l@(8*<7q{w($T+JyW3r)6Jm{>mF7hGmitn!!upqt9H6*e+J{J zh?Xs#LTDk2IS-GXS4{D4hjaovj$gK7c zbSwoV-P$wbqP5h(WC6A$|aZCl@DA7sZqnH@Ba%OqGx^B;qaW_8q1z zTP*ga==BEQYvvOkDj7M1Bt&Vpe;n=Pak<!iL>>L2DF!Hl*V!`m~?1Tlwr5 zpR?H`t88(#+bn%0qNy5D;!vzglY)roHyWV-d=YV%)?qV=hM=Bdf;f9tl!!tK(9 zueQ$AxvgBVcre<)?4+G5NanY3d4!F%X25%P*4}25kiTL`iEpK@bAu(dwlaWBKRWF9 z_Sg0A?Y(`eTk!w8`o6$9C}t#cL9T>-XX{$yb`+vMQw0@Os&4Pab!MWLv0Y+=8@ zOfH8dTco0K6C|UIwZ$yNf3AQ3pW@6da#v89XMws3*J9g6pDk?6>nJwvF-j%EacP@Q zD*?1>XY&|=`sGHgAcRo?s%tuh3bHnp0?kg2no}u6Ile2qV{VFXl|4bmu=c~xJLXSE z`M!7Gs8kp4albOJq@Q4sxmp!U!ev}2+m#DDQWp&fsV~-6eRBJSf3a8BStYsAGOS?1 zm<#;y1VTPIURNVk7YpSR+$Z!GE1r0lzjs)iBL$$5X)*DI2Jq8L&6|QDoelNb%iojT zaRQ*nRAi8p_kT)?Ngri#JQYg!+f9=@qbyRv`Z)C$R7u=#*SRi=oPqG7FE6$2pb}bf z)Pkg+k%hHsyOl|ue}blqQ@Ou%3EZN`C#{C%4rRL8)MqyFtNC7Sx_K(697uPD+2gCa z6+P?zRgHk&@zx5Fs5Sa{(L4AV)NfZ*k=saVw+E4>Z4Gp-p?*h*H!`P|ypdT8jzi&V z1&}LtnLeGh>gld>m^F>Sq8Nd|6a0)%l_U-9qzfAx+sWBQe?bg9L(R_(SrnJ8R1iO| zCcvsPeyk~tHSNuHL;{&6^bkPYY3WojiYEpgat1o#051|J#x^ySxa z!~^<%+o0-x5a;TmIU|93CL`7S3Ll0cR-;VeId)kce;fz1s4)OQ@IpwtdTKci@cCHa zPy1~H5PKlk^Fzo4t6zl9twI% zNO*3-z&l=kJ;t9CSoG*K#Q0}yaD6dON*81vvaqyY2aVJr({!X-Nn@~SMmx|j@AScO zSJ(aye?$3(A?$ucFJoKrS>oIhkZhJejljLx2z;82?y8G97MhI#LQzn96hwPqth}5s zM`P0cas5sC`Q|Pe;!aKQax$uO0Xt@=?L=ADIG#4V(Lr!sx_~W z!u^Qs*UR3*r=$$uaCa2Z?lkvVs+;p-aV{@?c7f!d{BbwK=V+&T(-*mKqfPCvTkYtO zdLDWSn{gW@RhMnBM!b`J<>GolpnP?I3nA1`VU_()^<4NtP4!!vTey|N{6^2Jf80R2 zwB1HMVHPES69!~;v)uX;Z+$>w3h$-L8C{~!NIDX=e77`B;Wt#mO1~lYJ@0^4FPr6G zn#VCV)TAmdUr~0=gwz?uj<)eM&+pDWf6lw=!AscEHc!h9%!)s;w&M)1((8v?kGHLK zs+#q5@f3s2@|6%b2$=lv+wPL3f0VT%RWLTlB7a71cS#gotsEuzCMoE`#O^}Kdlt1a z6u=uqpr5_lT?9#1D?$<6EJDElg2bt*%e30N^D>wfilMdV|-ew%-OEtRZB;an)=RN^SGtorfd|V z&`WluOHyvv9bR?bX`qF>EF}SQkfvU9Kb6_s_ca{?5Vmpje}_k!Q)&Ws*!4Eu7JpRp z|J!@>#x#zkarl3KigB|0e*-Kbf$TVmuV=Y*_>dLrunx1l2u9MZVZaPna@L#A{&w|! z&H*D!cI4d%=(D=Iy1Kf$sygG6(QDfmjjL1=TvE8sIpC6OyWz5xiiL}Z0?h`JsAq-6 z%#H;@y#dIG8}0hQjv9NRIG}8X&DkK+T5y~mtOnF+;Ny33*$^hVf4$k@F|*@=z}IkD zAs}~m_U@IuxW0v#j2a*HJ2(|<0bReVQ?Y?;2VL7HCEcl5o>mL4MR~ZqkgQrY18^hBXe!oL17D+Wl#{&UzvyByMSO+F&#EpW4@uKcfV0w^3ui zqrq&7BW@N&J@n0_e;m?2by3qHl`~VR=)hS`R}BllKHLsgdSkyS>e2`LWV^qf2wqG5 z_Yhp-8y3$^zdqv07w4X5_#v+0J41-Zp(?0t#6hmeplV4OHJcCiLvq)%VCx<>6HK*vf0%ASPwMGm^^&gL1-i+BxTY&uL(B;2`FVQassR%e>J)&cn{;i(ia3O8t35z zCZ{!KaQaSL6T~0jT`7afGmy@t`=vv#shNp0X~u22C1DCeS6quvo&%Xa zQ@Gn6YBp0v-AXYRRF!cIV_jC_mpF`*n)Wqm_iG~|JO;MriqGIZlw zuvBpt-S0o5>NEi*k@3btPiQwUhTDB!3>LiFf{u zUF-?*-HWeVZ{F0>dv0$ryR;Vt%Vj~@R^X+%NOZpOuC}uo*Iee9{y6;m8+_bF-Qf0@ zJ$(I7O+dUtvxg4XB(hgpb$_Ls4Pxc?%`(C}UFw}K^-h=iW9U-(O$&QQv8cSXfCi!| zFBR5R0FHDzv#?{{9AuXaVMt`dWv2tAFe>UVKbY_|;rGvldvT%63Dd+80-Nd%LBT;i z!BCndLzQVplacBWBOWDelN_W=T!kSap+mII_`0~r*9RiTJ@QH?ntwqBDa(wdzz&0c zk@u|Ok-xJmi1|GV3BM>3uEACzS0{7d6vYph`rx8A%G;<*(v~>6%+ManqE&213aVHh z!BcGOXtYJN&F_$%o{mrBX4B~aZ?n7n1xsy>umU^S=#d1aauj*XAHP)dNzdN%l@;&A z{bHu(Ti*WyFQXMnU4P5EWu9jie+X0V0dsTKR66F2y&gM^#%xtBFvV^27Bx7DRrS{= z8W@mt(l(iy0idgEY~h}6d?MyPdCPE*K41uiF|%a}on`ipJxDsKxLGneBBA(3DRKib ztIa1JdnF`GZ-9WkDAB>wj79Q-Vv*CjME?vj+FQ1H%h-4#=>~pSq7R`KlN=;OKXD5C zGcCXaSR)oWI*D1j8RffaJJqWKbPIVmwMg*NI4_i_ru<08))E9k8za*Hf=kjD%uKqs zm7hAwr+5k^lb<9Qf5xpvQdb|zO(A}X6K2Fo7Ia0)8h@L4fLw097}zn_?NJ3Z93TrQEIi5G6RV zj*q}5V~xgNuoXuqgwRgeZc=s-q8boy`d#3N4CD}S*m!p?e-P4k0_%{W`VJuV@&ZoG zsH=M5j@Kv0r>Uc|0hW(;VJ0z<1V*oZ;Rsg)|1dP7w+nZ)Ke@LZcW*lvsRIDUpwAxc z$wp<;06wAtd`yY1k1U=KLD7HWQ1lJ2}J-134BYkb43vp{WP@chi^?Oub4;mLf8ZhWxgwH zheV&`KPE@^kc4(Ast0cn#|v4r+_0x;S8vbKQcC$+EoFV~rRs>t{$U9Wp7E12cDf}b z^IUPew@zxxc1RNmB%N(}IhR%%I$?iXH3vWDg&XVgaqcs(17%w!^^gIXN6O>-J2D17JU=bczgh#o<94N)8Y>NO*W~KRc24h>^`+f z-qc)OW3OuB*4pWU?Aw8Y`$Qz;?aZuN(@T<{2(L}0E;Svav1UEQpPOuRA&Y;geB60P9!K_#nmidZ|KbN+T=3SXymnsM(2<&dQigPE>xW; zcXHBBY^WN~dTxuZ<;E!Ut&#KQD3N4R-qC;?N7T!Hfs^UJ z_1!cVZF>LJLtrdh9~J}l{@#n&5nygm1L^;_aJjpTL-lERcnALf6~mCba=IK{}u z1!wUWYBB=hg8VF@tS4W(pOs?Es+c7e;%mfWF8Ci2)11|W>>HVrWiTyEYi2gT$=P+7pJg{i%h@a~ z9j#=d^hDFO`OVn!GHHLyZr+xIsatwf$C@xH56zH7K z4(~d4l+-9pYqys-kjb`v>5O4g9y3xA`#f};^~jMLG1bR=*#qx_4Pg zt#zOT=gr#9hov+foy>8aiC>TXdfcYBYQ(5h1e^AXM8GT_LTEekmA^JCMSMI`FHv&z*k@zuSik`%O)o$e?@jo|ZOHe^9S|uLaU5xxM<|x( z_vhy0F2o$pg_y%@Lku2no}!q7zw|6N_L&zAnbNoySqA865=JzZ8y`q49$gb~4Nx2< zPv}z{Asm0@MF^Jd)3!8F`RN1-?n}%}Ou4YRW>c@tWm`Yn#3J0;^g(pgwv2lQ-95{f4skw%jCwIxdPB3psi*I9?3->oCF&#SK z1cErk*YF>*#f(%%bfS%bC5VCK(+m>pp<#^0#K(UlhxoWJY-7a=JxXMTjtdg2aSCaZ zUD6&&(S(jHZfvStVl@l2GJzx0wlEvT-Xll_{fqiM6HTvutwUDhYqM?Vh*Cgcl28ZN z4OSoJ)`fc;cI7d*MEs&1y&Nlac<5sV?OcFvU>6`_O;R`wJK71+Rqi}pLBCV59SP%H zP!fOKHg=(OLwIh~#XQ!*If*$8a(vY|zUU)=HK8seg(iM*hIR-V@d!|id)O|4$(x+j zT=vj;V;!=1qZ=glSe=Amrh&#jEOB(yWps1^AIs*XZ-`UWCTS1#gL+$UTPMCo$^a3` ztpIq64)xr>Di;2Y@V4^c=TW%wV0Sh->-K*@eE$cb3Rwhg!5ThT_BNzoY3wL>P*T!x zoTlQ2lqfWMXeb*4DF@HtbOgtz;>G}FM)qnwEo+^Q5giFoPOmL;~B8%S@ZyLe>^LOPr2I1HX$Uc(H#R1#ciQ5Pn2=0UfMn-XOsSI4?ZtqtTXOvedc9 zg5fb;4+PXEi?alqAFC=o{0PrJT4kN;>fxK$yS)p4*!>x9$FcGEA{bzAk4Og6k9vRIu}{+* zBEqLsx}~PZ2kBpT4}Q=M&ux&B^qe8J^k1_e$RRDulR;Eh5PRGPU@Zp#LzIW1t6QGF zbc#eGk3<+pO^Yz&u6e?OQUN;b&{>1eCe$YLS1$>;3K>j#L;QxP#x7|)hI|@NLIA?O zi63@{uA^lf6og5sfY8RU+y{SABS_o`Y|1vlzq-BNXacSa5KJQB`~=oO!|r4?d{_?r z>DkKkYKmG2!e|^!{JwYkg*55bx%`5u%*8w{j|%{G-0$c=R1y1xkZ5vXeGE=WZ+Cjcjf#B3XoVRwK+d$g~`LhdTE?$D_$p`q5|Kr5UZs7)Lu!V)V(;TZHpX% zS)%1o0#eio?H#d3)EfwECq##WI)E=k#y=4rmf{yGQKi{ObQSRq@>a=;s=AE7fc~Q$i6hy zJZgx1*hZXVH26%?_wiA9|J|079~0w5wrk_LP@ltY1)c0Lm`4cc`lCyDwtJ7I#SA^$swMXg^X|6nThJJ|3hc zuD_I>(=-zVs1yCYBgLePdq!Lojw@m0*BOlgi`_v{Y{~cfQ+%$$e_o?MAPtsE265@Q zhTm9`A4C$*=BXFms9;%Iu36enR-YEI_M<>pHV2dw2^oI{-h-N5G-C8c9z_prp{P0d ztF8~2L0&;^XHRM%({@HrVhB`4{%hmof+-DWk-JvnTllZgQ58-@e0Hi^f|ZF~huAoF zhB&wakq4|^zqI&S-ycseAbyb<;7;KP3rPJ`~ip!&1XWOp>wH$jBn)6oD+hP(J{B=HLqSjGsRw^rTI054FaWSbo(;Nas$mw3>*S|} z{}H<`5zXSiiVmOFqp>V_>#BIwoC4>O+lG~1Y=F{)wn{k&Eh&0ZwJz{iU7JdNU42;7 zuE#NS^EGBm)**~iU2e34=+kU8^<}+}rI!{D$HtaZi(gM^N^Up1ZgF-E$P*|N}-L%VL`( zH8I`tS49r|$*J}D%ujr@zqho4LuUc)AoK>&=&X1khyEa;uf_xHw22Satfd3!nY{v| zOq5z)gY~UeL6wTwa>Xy0n5X?j6g)Jw6eoW|O>u%>W&!Zn+beBRvu!Fb+}+VeztS49 zhwU6@;GMkVqEf1=!!{#^?P7cr)=9G1Bmd9Px+v`$+M)#~%+M>zv!t>h1%Kwl4VXI} zSi{F~=5>HC3n}yJSkBM#V_63ROLSyyLm=Ui=GfbwW~HR~=L9f_#uE=Z#%TuVeT9Ek z-liUatzO~|FHr%x$TyTnVxPvsxSUT!o#JlE5aR(qT-MlD_6s)c5CF8AMx0!4S`fV6 z^jSoYAiH~Z`t2}?VDJPMQ9VXLjIvo#D_VXv!$(E?$IXYNYv&7d( zM=05dNu+j3Wt;-Vt`i{D@_49L`VJ$5p!#hmyW zYMxvRkEIcZS9EAaqQ~nsewTl2yO{w67cZz^%?riOvSz*l^}vE9jpB3nR5ieq zB|~vy(1MAQSy1uAFCHp)r>dDo4K;e6Tox2)J4(8bktUs4wF3^qQ;HZZajDL7oJ6M@ z535CjzIh$PPOPEG10i2%=gaq|WytWD}9X}|O@!YcfSHj7Z7 zE6()e-+!42Bgy2=t8jq1ZlRu{Sor*cDWvJ1vTUcfdw*2k z18{GVO0k>QIo5y4ti#`Q`bMcjlFo$=htR+ic(B~6cd1hezFv1{H5?5emgLY5w!SI714(zt8|};34Itqyko2%9@B~q@&e%r6V<0L9$^6mD zZ08(jDvhc+qq^Cxa*iEGjLKQ6SIYSM-T$;p-@3v-9V~xZTs$~Abv9o7?>k=nqw!)V zExUNJlZfZ$#hF=gJ)Re5X2tc}#Ea`0nem*w*trLPXS_Ie95KAuDN@`DUTis(Vd+^h zxDS3MuQY8&>1u=PL$59q%%Io@BA)zQ~6gx#1EcSaJme_-g{3#Jq zbJg-D7|!rAzEuHA{uhNzZQ=XAN_7=CL`_#`r;Py;M&6!jZE0iruw;F!NC})T6^K&^ zNCwZzYxjO`OZdC9>UmhYsTI!vNLc273zMLfq9K22HIr~?g<9^Kx0zl*WNqFO5iuDY zT}b3BJgb-(YhCr7iHeD1nb%q@g~+Jw+E(+iBt9db#Ge-2?!Hht@`phbdwHcZlr1BZO3*fMXZFVu~0QGJPR)1 zGy{LvOr7urH>rS)S*jKy)~v>HFW3|zHI5%Wza5|DuX*n z&FA19jymL=(&+~iL~FrkAJ0=d_il(^9zkR}f0sEN6#qbya#WhfYYhh}vU(>{i%jlB zFYdgw`>BnRbjhN7jM+ROHq?lk9|A$9FCe>Sp4si;i*(F1A1%*fv--3tE#Lp~P*(p{Y!6Oo!M0ZNX%Zus zxk#4q2BHga&)`lzifg>&I?5NRz2q!Jt9=r62MOgQXE94jj(G{=+LVYQGSnmxw$p!e z6J@EVex5_Z1lZIz2wmn0TjrqEX#gays&x)5vo>qL*#{K|wZsi{ ztef26{&j)n#yFiwk((DvX^iz1tt$&8k}I2Jt3u7!NIEV!o7;(sacCv92Y40AfjL&} z#pvc~L5LbCVw=Z(An_bj35yyfZySH-x^0x&H3TJEJfm3*R>d%j(0rmjeDuFujwXE= zUDgl}c5I&FU{0@32eK$4NpC0z0d_k0b|%%VGyKhMQvJGn>JMyXU>32(3@x#%+_zaH zcgPoAv=+YadZWz;z3Y3U-t);`{6@#ltFrIQ=&_ixW!LFNzI0?5mK`6QhiZR*|A?ct z;y+UZng%F(PsKSgBLlhzhm2?LwGaM_DP(t z5nAyzLiU#(bd%EO1sd;GfF1#sz$Zshi6&_zew9KK5+X1A_JgVb#JNg&19fC!DV5Veg&bidz$l2(BcEue%>td`XFBZr7pIURlU!{ARG zuJRuK5f!&W8dQUMC!Iqm9uPkvr%{n~54c9LQGw?OQ5Ky3M<1(>CkWF>)4hu>apfsC zF2G5U_a=$hgMokEMH_z;?%P(u({LvN4B&aspL^&W*cqMSCmlJkFlOe%S7`5YW^A;m+GdtEckuc)MmWHTene1=yA$6mKeZ}R_ z$%JBzqFh1h*!MqLXqBHg5WY3bkSc&$DOA4ht+n-2giQ9^Rds)BL{+@!&rla?r3Ox| z6n>9uOIO@eKRo7INKw=vVR*0$nB`f6BH>A+5L7$3EW^s0Hbk@qpg|H}JY@_GlngZ$ zVD{GVbZUvT4Zjx*y91j?p52ROcbr6Ov<=#c1pP+e~y7t z%Fhl;p)J@aCHj9Dj0yMU6Tx(zbjhx1&9V;pTGso!1e2gnH175=0WK#4K^v?l_r${S z(5^JH)X4F^;xcJ#MOybCQdG3El)jZEcPl^fELFc{d%#F#0jRE6G77FCN97KV znki~0FY*4T4%66)NhO0&mZX#F@oYkQPYIMP)|9({(s6&M|H;v}gy_Noh%Pu0T}VK5 zAr{evOo)zd9??+>ME@Vp$EQzx2#V)VvfPEGV0rQKgO(vYU>;vloY4|lFOe5W{OnJ& zp!X3goS;u#KoA4!aA1h4QXP>#<4j#sd19Ev}@()q~0(cOmyB;h7^-Uj1p)kJS z4PZ}PCn8=ff{2np1a+^TlVVG*Xib?T{X9n}1Y_ulRzRLHQoxX( z@XUX$Sp*w?gyZPfrn{<6w}hb`F#{4)hXOlsjITt(i|Xfy?PYO{#O$H`6?46IN)d@Q zDS@aqNrl>#dzRye(fQJ~cPo|6V5f(i~Bl1X9V5SJWt3gd<@R&+?Vv5FBFAo=$M+Ds@ph-sBJ z%xtI=1?Q6T1||dpWMq*TU>g4G&^#P>lUhM4#M$F z#?Ok>pR9b6dMt|2FU9i_I&6G$96(K_l0(JWF?8;(_L&ijoG!3Sl zetQ}?A3g|pHf3mX1LMAO@FF$=l6qS_2rR+7=73j{`UqdhA6zHa?nU324@A;571Hp5 zC@mi-%*O{J2Oo$Wd?1SB1BI-7AWF>#3Jdaq2;qDIJ`g$ifMZ6{j}&|$GAVz$kcy%s z7ez<&@PWC(NX-W#7axe`-~;(%?Vh;O_(pty_lKq_%)dw6m#ago0OC4NE079;YC3c< z)vS~OlPi4Vv4<%(IK2$Q{^&BILF>fI-t=C0m8*61kJCU4LirUp%ayBY1^p|%cu}n^ zRj!)9RVwn6>}nxzIO?N@9#wyE(S}?Uw4(5a{W>B-PFGE4f}jwTxCzt9T4Yo#ILkU{ zbc%6|x=~3pY^l^-x z2L^Q256**Wu~{uyXJO5(v?eO8*(*IXD?JpI9@;BCGAlh2l^&I}Icrv*J*%!QHP@a! z`)#TD@Y%CROU*~{^ji>i-ygLgk0ltK$F@`(OZs6PeJvJu@0{?VvX%*oI> zJ4cgMj5jh^QwmFHdYFLDhZ;Ju03ovVF)?6l7}XHEl28~^plCBnm^#*2C5H(k-RWZ! z1{$(~MG7%hu4sQ1Qxok%Vr0}0OAzRrby55wL|4faMipIUO#V||GXEr(@r^Z$9w!4k z?##iBJMqj|8p}h+Si~u-qr-lN7M)zwDzR%MpcsGrfRen`P>Qe6J9*B^e{PX5Co{C` zmE=TEZZS?>I^t&fiV#7Aj*<|-T7_?3NVG?HGJNk4y?N&hvI{%0nAHIx2rCjEbA z5+X|&q-Oku-}seHnvl@jolG_UVPAf@xMlsB(?j0%BI;oZgwl^N8wyE-9dMQ{N^dvm zRVsx}X(gs1y8t0UEISYp(~fqM(Ix|~n9hvTg`O1|47d7R^j68QHzvstSy;!m6?xsk z_@XO4edT|sQ@LtbmPzw*ii*wO%!=!2Dy~~9uC1@9sQK_$3$PD=ZKkTaZdR?Xr|NdC zQfb(DNu`;pvJL39>Tjt4XF!<0dTv;`*m^4!wknmXWo~~>HRko-Z9T6y8>uQc*KL*8 z*V7;j@1ADu7Kk+x^}7ha7kwF;bf1P<@v>mSBDpS#^sD-RuhtA@+j(e%zVh(#`f_Z& zwaUYF8<9P#z!6HAmnugPWgmz&Y@GO!Kl$wUanE#9jgqzs(d|4Nh640I=YUx~&Bu%D ziyRBgVXmbZCONcJ@L69UuWPH8dP=`xFE$JJjOyxLwYq(MYZ_XyfoGfyIg-C4vayaV zv+zUom=lYI2WoN&KOAZ#pP=Lu zGr5hD+h+1IN?taTpP=L?X7W>%{M1bTFG~KenfyPL{691K|4{P(naTH2@_jS;-#8SI zk^CGbKR1(~k=H2nu z9F=hZw5Z??`$GfAUZM`naFe#kc-RydL8CogFA#f)b4zi-s*4f=|3xCKBRr!2ulyB% zVr-(e+s=4;e->#M_Q06Rh}8FOwRn4~TiJ&tuP6n!9EF1~<FNC=9u-oa)Cedgj@^utX6(%AX*puoF??Zg6w%@z;!>Gq z{6XGrdZ%teAC`LEY44)g10=tHD`9B|F8x(!XsOH}wlXDKh#$Osq#V4}d4 zd)v!iG*bNh)up$s1gs?+l_px~dm5TDIUDU(%1_HiB~N^j+_ZayPiVUYf7qi24{|6t z9Qfh+^rHA0ofXpTEl^CwZo&>ENnHr*vC>^Pj4u62v5o}R`WpK0p;WnlUiCht+;}0T za5o6i&TCG=iD(?6v=g%zFgTILvi^U9Y0#n2(2oY99QKu0D#gsEAeaVz3kyw47yZ=e zx{*ejz)$4-%(06kibEydF!QYcu*CQZu0cv!qL)*SXDeJvA%Q55sN#;UiLaCPl2X?6`-u#Q7oJ|K}zSL`IB{4+LcC4ghP!N48mgJ=R(Pr>a|ES z-t@vpq)*S}_Og0}xp|@8#g73gI221DV{1jyn0?vUX3KUwK$JOGw$U4+J^DsF9_h50hZU;AeS*1jyF-<<#jHQer|iCA&EX> zys~T~L-Mj4g}@H1jVRLcQiJ1Y$5zy}$~CMzWroq?sd=IAP10*J@&uaNDTX4*kvD!x z9`OEKDA@*Xt`Nsckj2zEwmFvwx{xU9npxNE(#r%UtTruwO{JDq(`de6hTuSlsOPg) z1cXdDU6~@E<)Hfs0wLO7DY1yA4)HW@gHF3C8_OiE3Qs1x@}qeK9Rm6PWI}f^{<4en zhw&n;WLHd7L!%jj!h78tSr5;u{^)g2HsMCUyk}68OSTh#?02Ox;R`6Kg%n*h^ny6M z*r3_90IfEE^j{;utFsxzox=ZPt)|pbF&6_KK~p1~%BJeLbqEh8cYEIXmPjtnT}JVNAaX^(HDR*q=AdD$M6 z;2Lnjs7#ez7Lv(RHfEDAT349FWx<&riMfPi69{B>F}FO!c2iFKy3F#lAWm^sdBv34 zO}WK?Ce1^yn2+onpxu7iYmpB@SR9&9tO)GVx+wXnNGobOP`d4^%{^6A0dNW0XvduG zV*W3GS*hNltvrkf@I`>Lrm!Nwto2Zg{yE!M7ocg`)EHVlFW^qoa6fz~--MfJ_74HVF!(dhbiW5J7I1Bu~`l2;C-R@3$Vvj=P#eY8)Ai9sF z*8+(R8c7XXbKEde{I*wYYz-0lio8czcKN^2uCNuJ`4ez-`~EitqBO}W6M)n~M2?J? zVkeY#+U#;nW9;tBu~~>Hzk3Q>67C$eQjfHAzbFHs5&z35;l!AC8 zLH{+CSAR#7X|WlB;2-u8$CLB0yo<(#L5V25c$ah+q5x}!B*ei)(N<_V*XDSJAOeNU zfvK9H&w3u1Jqe|jC__MwJCoww-G(~H=A4Uqz^WFossl>dg&$K*ps5GGFG<1w9P~{_ zg&0CHj!&U8UfsS4!~jJaE^!8!sQQb4Y3sD8EvpPe26@2EEgl)Wy0WQ@t>VbBFEE~r@{daj$2&F-ONR)6BZUVZnoRG11*-sw&E+qB zRD+9#1J(LUx`7UuDCM1@6Aj17R3dA24Tb|~eJZsMIu4DNX{G;DaeN45Dc3xMOR>=e zXt$#Vr~nI@iuFqKa#}$x@Tq`*f>lSss$Ou-QE*KzcsUK(PmD;^-+g1*4~tS*k$Gqu zHdruqdLK+L8Z(2gG4&NNzAD8hWuyO;Jp|Df-o*R$FE3bY*r>{2W4PDiPmuXj$vP4r z@s&w*(VdJ}$Z_Zlb?L8!{uKIsxLSG0x-A1|kACj^6SUA`M|NV3M@$TV4S|Wkfu&3> z4&`HBB^w6{gTV_^C@+=@e3}VWsc(`LEex6)w&N#Ax&zs?y+0iU=v)O)owwCz%GI3r zs&MmO2kg)R72dQCRbN(olmp&@xxWSA4@<%pAGl9JeO?u2s)OI>du_Q%3wr|uxM98{ zB-!4@M_9bC?RQ7Ujf!@ED_N9#x5&b>s#p{~IsE#%T}m=DdYS;E%_<9H3Q8Mf^!1g$iEhxBH(j>M(JmGp4vp|+z?(_ z;Ulo=Q0Z2_&Us?lvKP@|%G()Ukb6BHVt=PCyzz^&*s7YDIm%|yVoR7#f^)tl$mC_1 zNp6(PhXibe+}7$ZA?DN8Qq_e0CG*%ik|Fn}*mxJ^zfqKuZ&a0J4ovsxTQl9G>`eD4 z1=B6ccqM}K8gZ9@^K~Z5I?#$gB*jm|tmV&BR``WffG1yVHJqD7=ZR&Hu#WZEG7SQa z=x}gSz$>~i?G)N>lZgL|-F0Gwfke|>TFZj;$EV!}&qOESCX`rR!)L1r* zSy;EK$Fh^nRi|LxF**gO>)b@sbc!ywONq{NJZ6D~t2!`$rgPjl2C1OX*l*J?ocZPV z>1+&|9Ki31J`}W9wY6>U$g%C==W(aKZtubeK;Jt|3UvCUj-#3(pNuLwk%o0S6bxA? zG^S|SKE6Z7L&09}*blu@_buV`062^j>(?_$5Jtm74BSjG+2DHOfQ!NQQq?Qy{~(m-p*1&YhtOaI=ew49gI;8Qdo2S>Czocs zwx}1|^D7W;UY4~%%7{fMeT8RZ-LSmn#nxpP_tipwih^jm6ekZXo=LL!~^{Q{j#^Op_qn7orM98!2voL_x^DVxe8Goqk+D6x$NU9KDNml$7(B!Z^94; z_H-~hMbcv1G^(jt{X?hKV&sFq)urzH2iMIFbbYV)j}lSRRf~mx9Ms+w+|B&oflbX@ zl|+C;a-q|R)NkQ`GJGsP+0^Gh$tuCA?N(9u_ptbR zQgx<;^fkv-QIVhM6=3ihFWfI^DcbGBTJZ!LZ70F#(2Sa@=Xj44c~nm=_YaW`pDVf> zfWnHccK@0Z$8JS!JrYb6c@xm{^=Lk2GQHkf)M_uYQu-{IMAKxyrE?pqpL&Iqu0ff9 z!J7DKpqeVju|+Q2+ZM%q90CSP&+OK_pb&$!GrYfw7 z-&pq=w$B`zw|U1ZSN`c=Dyuy*2b_H?{y|VvaNy#{nf!nMTe_cRQ$OhkpS2B#Twl?i z$dR}Dm5U97KmExF05~=k3dibG-0NU}D)d)>r6L})q+tk-Rh5a-qlS~BsI?EZl#KxQ zP+9q_Ur;sztLFQ!0=8Hy^g*e;9wVH_UD8?heqHNJBSWD>$jMGv?D1RO9?>v&g&0~)$Brl6fCrT zb;15uTCQ5wir0CP&n-J3%WYjV)tSiuGFvHdGeE76|GJGu{#RId=I-Y0R?J&E`%slJ zF)gm+wyvnm9%mx^d=F%50I-3&yzoO3k4M=yaG)G!9=z-Y*vL-y>NRwM`%+^KEi#VO z*rBzt{lv`%=Cpi)s*cVl-Jy1Wsm=RtE_*HaKw8V*nDkvTRc^;p8|!ZP_vJQ@OO{|0 z(9pi|{yM+td*@Kkzr&J&>ijtgOKt~LJY)>fEt8(eE^?pc~(5E>+_qe2O-z*#Wg+ zG!b^A-}&&9Y9d@Tn0kC}@{q=P6gNkVM>K46)F5-zNSGth#(Z;hlofWP-%OFZ^5mzc zy+Pe|NXZmichm{zouXxg?PIvNoCmD=&Cq0A(Ik0)!)L}|VW6hTyc z3lFN;bSl&ad{3IsJ@1)U;b`AM#9bDdf53KB-V+JCK>UA**FX2Df6>=n<@wJzG>_x4 zOa?&|mQN0CgMcGc;X~o+heCnF4Zbb?AYvzA4j)x~MqjW+)ggEJE2S_-O?mnyUHlwx zoVr##EFbBE!QPsG(-FN?FCRH7>Nk$6Ggndf{4#DGcigv*JMMdb>As&d@W|%=<0_?w zZE%#*+=Gl#Rttk2)3RVkwJ2Ed(sam4H|ElGC!q-SO#?Ql2d0!rvP1psE!T)|HB0bw zIYqvi4XwU{wmVt`G{?`OD}aFRHpWDyx-0tVM zuKM}Gf9oQUu)6&3E9+Wi2J2?zC%aG*yAkI!X>U?^+?M_JX0Md z+(fp)X(pX{isuRk4eE+5}sLmmlgQvw9QcF_LFxPxIGqaXFR<34HziADr* z`SSIDBUVVn%zk1f1^D=FKg0YB(MfGEa88+K7=US;w~G(# z>dS#nM|`QjT~tjUts?Ayv|T!`cm>yM0;f8EO`!xFTm%flI9+83eMsU0We=p3dN{7Z<9DlXqMHV8SOA@I=Zpk@ z5Ba|vveg8EhZL^)e<)S|$Tmf$A8u9Hi8;@I`%H4UuBEOf>?e*1O9;TJB8OLscyf$7 z&vKy$J7gY9#&Hn|g%%mAup_C0q?sqX9=%7AMX6(^&?u@;Cs`GBvNkH3a*Yy=v3T;z z|ALmsbkbH8%BchyA`9(OL--hw=)Z@hRr4VA@ynXi+{B% zt1NLu%vZb1-m5*wtAIiIVgrtYNdHYw}$tJ_8S z+k58uc6Tqv_JNppNj47A=gx)S?fYmq-Nc{7-iv(4SItrn?%ExC`eijExtU0RZ|AZ% zEz&H}t@M5YHf-Niz>=dNla~_TU-%P$c>y;-1pOZM1cdFtANaj#$rvquI}!IKS;EOG zX$S<_L(@U(n*sUNd{fZ;F!>M`G~|%N7Th@AB{Xpa1qsQ=JSQL*KuZGuYG|d!d1nv| z5y1U2sa0SVUPH1*hEh}Bi|2BG!T7+n$|EA~TXzyK58>&A#1N2WaY(J<$7Rfy)q7{e zRFxI`TE_*yHYKs0mC>zH5w(;ff83p*B?yDxb?{iYqAn~K%!?0xVS~D^gOUl40r%EX z?gMI)Z2`&`z5{Z>zq3Dz>P$kg#5|P9JEQW+RFSp;c4>N%M1uC$lM{r0y$>HCD8)~0 zjLM(L_jVh{TW*z%Hr7QdjJ=LEDk;6h`e@zm1w-{zp1FnjYfl&Jdp7ABF0Pqc_~Lgb zZ${ztqPcKW{q7gQq|{LIOaMFYsjx^O z3H3xM<3i_XP`abzEbefBU$;iRskJ4u6KO1U`>Gg&X=18rCa2Ia|4=Q-&v(;-{0Q zw8*vV; zRbobIor`XCQA{jt_l;avuR>0{k^lJ7)o=hA8^(Ir&{sn<@6t}Qim zi#nw+hUuSPIp!bAZq?p+#TG0uuZH#}u)Xu%bbA*;=$8^}qXJu@*F{_PG`jEygC{tt zx=MvxY+VXAb}zht21;LBMN4q>8B+eAxBYex##=n?_C8*ACw;GX(GB3`+!8uD^}XQC z3#M2+i##X-fPM6)Bh)x*>EWukbtX4MWM8l06%lK&G&k{w(DCV{`_V`BAL05CM4z3~ zNUpKzs52y8J5yPf^~l9+Bj1FpC)VOKqm}s}X!@*u5(A_|y^V@lE$?D?HOWgR=#a z%K~(65ryG@9WlKiO7ULMHdN96VluicqTV{9fsTLG^ZmZxFVara0Z*?6r3X65!!Wkt z;Ru^UA8ki{EgTZ6AwSZP_5zDW?0iv32kLn^nvmB#XtZ-1l#+|3I7Zri-mInQbIS>j zfb>S=FCA>-8Fr_|1s+4uUdUR2`d2(c|70EF1ppj>>90?O_FWTwO-mshm1l6e*9b)% z`#Tdq3i>m@gG0Y5`SSZQ>^DBS}%@x+=_Iv^(SQhtuBt!f3$!UA! zIO8!*J}SJdPzQ-2(NtP+jA{104oaI){00l67ta>j>#4}3+Y7N=^FEJ)KKYvzQk5>~ zluF2daN9pe{PVNFOX4l_2M0ZjZukNXuB9{;!DUhJ@EL0WViAvaw&8`|OMjmAzs5WP zN-mR^0^xUJLn)I74~%iyn8AYwUhCbvx9>dk1+fMAV4EOsuLJGjL9|mpIg5$O(n8$& za4`$&mZm)l^}Wl>T3s{4@=aK z)>h!D-qNDaEE6Aa8N;|~0)Nj!N8*_gTq5RuMl$<7f{xTw}cP4N664=V>pQQX3|vHquk7Of5yri{s+{jZOSO1DB{O8v}UX zSg#DrpocTmEflAh;^F!5d=V|l1Z_|3VOHC?L?5u&%m>8WkJYJE4$QqwQS%-vd0Cl% zVoCwQ4B{e?Z4Y5{ilog5osXuI;BLa|BM<3dUz$a|n7&APMBxnA+7z$|;ww{efy(TJ$EROuj8#QK z7-o=KWo9TBJ0w$HHf|nM0e5>YCFeEheiS2LGIwIEm(sbD{mv7>Ao?-of)oHFN-cO} zR#s~joO{zdP)~Bjl5R9lOiH+aCW<+p+h|rUl-=z>dd41*j@GPYk~o;&Gm@`G9tPE% z!-XQ-d}%tPQ8@Tg4*knQM$V{Bd(uJNMgI526FL;vI;r?qqjNu$ek)2!ZqGwlAAOM) zSY9ZeG#0x&Wsq1bA-p7j12L?4v{zzvwfGL97eCE>Sr3HSNC>>4iHf#=LU9Aa+|nR@ zN4-EMghqTtwOQX;OmadyZFdm-i4NMiHcM}sa&A=-^Ws`gwVTh|0DmWM;CI8>SZ`<> z9P+ID7M;KJTTU~~J}RqJFAhV^&~~h`YC)+f83n!>I#n4O7ciwQGLBd&KpJx95x=rG zrwTi-oKF;eSi+`)ub07p*bEN71cmlBozpNM8uBmE`{zy z--=tIyoElMw^4<(?Ur$LUu~HCYQo-njr;5M?XlOp&*r*S=CW~{dv4;sn}w@3a@vEn zeYg?2)Qe7jt?tK-(6NK2+><>%w#0o|5nJ=yo73#infK_}ecG{C+xF{5n82X*(u;`; zG5dGoIqIA4Q>?~+Xe2J#!@4Ho^YFk~9Ib{J zx9+fCV6*vhYj4XdHhq8Wy_`i;FzN&|cl3$Y zF&I&Tm7>i_j!ZG?6^xjhhGU|wN=*vvZp#M)TkutJ)umsJ=x-*iFsBa%zq=s3feDU` z%9@Sd@7rN8!q3Hn1n}&ZBySx{_xBS=TT_gOWd9?7rD6^CmK8Qt*pdQY-RdwCpB0=% zCQzF<4Ie9VgUZY+U@h~To0^vHq71pgx=}~zRvp?ITyAJ+ch3WTv2DlnO}d72YA)wI zezd+9do0tpGYL7&wvnm>5O(wwVQfxT4Ks)rr;EDqN6_6+>0Pq+>S>YRAh*mLASul^T&NR~#SytlT!^RDO$S*O+jbv6c&WCod892m z9mS+6@xIxVNa3jc=_TNT(CD!P9mn__^+NG^9CknYSRz%)9G;UvThpHqOj4bB&ip7N zv~FO$RaUe}-1EHdV0_W#3uXbs=N4I<>+uhNs{jGC6g3{hR11%9BjHwJL&lip&ZNa& zCfQu}w%o6qY_XSBHn3Mv1HY@cvGl#yIB%z5T+T`5NsV5Rt(JJ|gq7CdE z2!c|J*0qNq>gb<3ZD#sPk zjc02+xIT(8xNSyyDWw@!B-Tvho=`{j5PO>X9*m0c<46%m#O|gUuTdM7+%_zB<)a`hHq5xP>_W#P*sIZr zH=sbA1z^f~LY=8Il)|oRE@n7?FGGab_E8=UWIWl5ITXyVlKpK0$5jZ z$^f~{J=uW<`<{+RQ2?EK3e-6=3EQ|J=;cC{H%fN5cEHVsmDV<_{4v6RgFE};g|wS* ziiQKbA_1M3u=I(t4+fTe7P`TeNssBVlI@0FvXxi*YdiNOu6pyw5jkG=HcR*>?N!X! zA@FD1*pFk!z8O3A&1LUR!r0#|dwY>%>)1o=crUVYYKof<)P@&C(=hEt@%f%;r1tC& zOEG++Qt#vN`92n(Zyl(A5IB8nzB$Af5D~IokvM^g4nkNpWyLOydGHEv1CDdY3$L2g z!MYt&1{5a?aj5mu*H`US1i*Jz%H?9ac&+i?|4#$^prItrKtdbbSbM6DV+F00QU1XY}ne6FCu%-OLt3hC*pu za2yK!x+7Z{Dw7T;Z5C`tdyH3JcrdePXGqQ}LY;$N{0#SS*SW5y18B3Cu%7ty&uBH> zre(F@%GekHOI(D15rMqY`D(LfvK>A&LVDu>3;w-H>%QRttdnYkNiP;{4%`c3bLhxV zfrCZH__7p(z@j|7m#G|_UZN%kF(swpz8s|Xs#s`oF1Af>4ojt!hZ`1t_U?=mf5ypm z1N%E4qF%bk-oeq~_hLJFmsDVP5iuR1=bcMRUx?s$?dx%W;zy&wE!$gf_c}C$+IsFX zZH7h5EJdpBy(lNSx?alSGy67;5I_&lZ|z5Lnp?M@;+Z{f)v76Pde6K^3whlxqWf6C zHl@dUEK#r9S+7jguk4BjgQ&N^6;W@yXCA?@7I)6t#@rg8tlr0+tQI}*qfSnC+A(vA z%I(L^>3-~goHiWPox^_o2icEnF{1tghY*PKS^8RQC+V&JfIV$FMi%c~d<1uCv@>g{sK!uM$;%Vz2B%2URh{>S!k2Iir3y>7Da# ztaTHwvWp+H!Ud1>znsp#h#^EVS_kYh_HIqz@S0Awn!f?V;9W3>Yhj!3GHnsE{9D(7 z!F&Epi_^q}dCH*PVIJdBsJ$d+=Tu1_iX?<=Y&h~I z^DYuOIfG7xdW~gYFtZS)Orq|<6OS=}ugm6tU|@5H%C?|RHrfsX*jSKvZ`w(R>*C|2 zZacwjde0ZNqPs5p6sLKLazc-}dU+GCf=xB-=;LVM59tZ}eJN2mcn=_F+4GOG$vE-0 zG}M$Pp836@%b5~6c-9-IN5AF2u0>bCv7J?N^xI* zlZSQo##t#on58rWXJ`tNisy!GI3T`0vnq2Em>T>$skT!ZKG^Ki%@<8NNo>JUuexA3 zSAqR4JK@}m1eJF15M|DtlM%y#a9D@d^6T`Qz*EfFT}FRgP?BS_fijL zuam13J$#cz$4qW=GmBuE$2c4AD9Bsa)AUo1G`*SLXwFD`nWJ?;M~OTp>7wZ4xtb%H z9(BeN`-M#O%DsE@2My|eK4)HLB8C`o)$$?wQV(r_EM(2+b5d}j4o`iwaH2FU$H-JoqQ)@0Ba(~h;r|nJ<4M-i+`S}37EICb;nJJJgJQR3E zlwLPnB*?B9FwyCSyHh=G-;T3?)18aCe~w~_xjTd&L7y*{ywbm$*8mEU^Na-UUQWh zS6!HnDMnoz@r-Lz6#BC zAAo|fJ5ZeMvo|#wLD)S8{?`V+mq;1~yiOm4od}(<{9;E6uPUhW6!p36^^t(>2sDce z$WMkw_KLLiQ#tDXDHLQXnp1>~98u85VH}$a5=9VpCtq6Obb`*HX=wvtE}XGD*M@{u zbmo2X+^eiqI40}x3Mfl|c&Zeu(o}0vaW{<;%f-e61Ts3aE)}cgMhX9bFC`dBaV_6< zf&{7F3}Rsd!7db#^DD&fX(XbPDZTbpCPmrTfvMvY_&-pbIHh9mWs-CR0c|dOC;UzA z;`>rtktZ8~`KAyj7scryEp=%RS6~75M2crdBb#EeML`&k!|e)xaE!Y0r)b@W(U+l$ z(dls9ISU4Uac?-*-|s=JBgE;;-sJ?51KO`5^!>ySd!s&@>Edj9_FG9;eolQfqo|;B zZwW``Phl5{`Gu5^Sj9PQjnA%R5#G>)ktfXy|3b&2v*616>k|Ecg+5*m4}qt;RSE}j zf{fVFYsyJPR>6sdo}detzAdCGjRMWmkZ#POG=xvvQZd{u9;}9t>HoWU;IKl)#I+8W`S>+ zyFVZqGy&x@E>SRg;w1`k{jlH)wJN|%Ueb|PP zK5_)QJ%LbvI9{P`zZ9T?!Uk?2&4S&G4Y!FzpDB9;KpQ2F#E#Eh_&t^`zNC3+BNHq_ zAbRV8^KK{Z!N%}mCww@@^uH{EP}?Z!G#U+NQ@=Bt1hhE%Yb$7iiKK3VXN+-#>UY-o zbiDf_%C~F4`~JX3Ft~&TOOdtYA`dM^URx|SpMFbi0F=0^j^pUU65(!74lJMQ7`NNA z3yRFHO^P5cX-4aYX4LV@hH~~>=v9yUvX={fXqZ7ULjis45qL*_o$yP7MMeF|)Q^I0 zxHB2`XT51!vELHZn{X1^964*+MEiOkP!C4Y3~NUgp-BD|Uz6Z?!G93`#EW3s-Rg&ZPZxy^20$%729RaQLg>) zH(M8;!v5V=@!etW?lAXvJj}%$*79H}9m_i*Nr%4c?)UEScz1ZbJ3QVU9`iUn3Zv*( z4%cD6@4m9`yB@vDIDa7#i{4l!^_92ai{64K@?O5(IrxV??{d7t?d1tQkhB-OSFiK4 zFmrcQuhm5eC+Mw37E%kdYW*N}*`0*qAf=v;D6}|wQ4KDl(SNO;Occ`l4N?Jvf^l!k z6JiVFk@mLHE~#&47nx(ohQTwaoHUF4Nync|MiaEGA3X5h*MHt^Z*6aQ=qp;LX9F|~ zaB`*{QvZ(#q^g6~yWRa=^o__?6g?YlKCi8|ZN;1oX3<55NCZ;vnY;|1N**@XgGrcJ z<0UqmCm+yJW5J{3B$~b>&+Q__oupe4%=@<{PDr4&IH`Yav=;*h(?vd)`K*P;wdj7# z)3W;duItE*m47+tJmW_)_W1E);?t#3H{)589MCoOE?}L*t5cRY%|!N|flnqbfIH_l40%uM2O^(yzPdW_~~a7N<*TqCl% zn>x{3qCMJ(I@0HG*fb&p19GKzCY+VXX zi~Mh@{bIt@Z_0p-e2eeZ>>q?OP z=!0J2m4E+*8A_tW4jMucB`tgOW~n^O;gZ}`gr;kO8DAGsyS*f+ zTO3@tT`|FJ8I0l@Kt`B4S;ycmG>wyP*dGlA3X<27bl#$Mwo0;tr}j(*oQOy#ytv!$ znIKVw93vI6Yy%htt#I{mb?sM)bAPqq;5{7mi`B}b$G@!o`k=W~ef;a=-z#em(J8y~ z>qGQo?KioG2u#MBmqnunYpMih z2gTiT74ho_#p)8IyegGe=~t1tN{hdeqV7r(QZ!b{3H1uSh(2nf{j%CYO*CG9m5VOn zJ5Y%u5IYy$=%RSjD(@&bAC7|lLJ|LPY`!X=(#C>YFMs>x5FTAgf@uDJrnB(?Sj&-k z?uJOvAANt^Ay5>L#L8i;P=C$NT^$Vv*K0i1;B#^QCz@!Qnubu(92h29Y^|u*9sAO1 z$222W?=k$G-_qqUjggDxq zuGwM?t}~fNI_GT?loWni(FS|%NG80t8$@Y+U!E8FSK?LV?Y*ltT3*3g^GGmYRFi#W zZb!o1D8bFh>RyziIDdpN7DnSybe$9KcX%(?GUovjG=&`;Rvx9&#MFo;rhyel&Bg4F znY5dV@|-w4R1f@gJ35NJb!A=ywg(jHE#{Hw$OHejyl38T#x`prl%M@ zy@~V5a1%Yo$ZHDeZiERMEG~^)twSMuV=1%^N2ND5I|`w;p?}r49i|Q)aRA$n1p@)v z2_tm)52Gv|NV`y{Fzrw^Id(-ljCpS5_&OQ>EDR94PrLM)RRpOeEoCfyFwdK(nn8nH zIuDp(@oeCQF+aEz7;kr1;!nhaaue^a)(myLlU&3kksvJ`99(`L&yM57A_w>WWoPQjB?X>Mr+T70y?Zm%sU_0`5 zm%bj$zd-PJr~c3n4Gp>pH`~Cejsy;7!6U>0^CctwV{3c++;*O^bs-B^-q1DCfnq0Z+YS{Oz0}n^jH{S$Y{`&HQ z0HX!j9s2b_H~bjo0<**MKvqRdX8rJ-vpx}wm46V06n^lzsjHvu&pcXP4c?m?4E@>1 z`O$|?^||mMnCnp*!)vFRBchX^N${NuDk4DUB_94=oy=mfJM4~cjw7%O_Ev0Mx^;IP)D3dm1aD5`;8gZPX%x1N zoVLr{r0$qSwWtUy0a}}8o&6hQRtc_fKYy0XTPjS%xwkEZ)6|gUd2WkA`{JiI4DG}p zj_{LGH^lBDe}F`s-o;0{7+RJyf;`lgxkELK*fdXNGuxEIZ?WO$#PmqZ-uK6K^zrU!gH1WU5S*`Q6-d+GktJ_GvU@}A2#n4G8>VF%E z^Q5E2_sCnmJ-W8V#kRv-cESZVLFyB5vS^5!Z@(eQQCtfDDzFf-R=LH^Q!`=d8rM7{ zu>}^q-JfnY=SUjBK|TXuW_Bt*^N zmtpGUyAe9l8ZuIUDuc?-Efv{}a9VO$^mKs_c90~9U_dO=BsA*PUZka^vVY6o?xYuo za#ZyahGJB)2ARZgKPeZAjbPc^2^_kRodD2hP=7)gJH6P>1?p@ku;w#(P*2av;;kWo z>Oslryg&kpi$|F1s5}Yvu#1O+#vYLH{`HF(9|%0W3#HQwcc=QxPdm;|cVb$J0Y}V5 z9MHyG(~ft8QYI%3MrLxac7Gir4t9=6Dl@=f~%VB^6PdmgiGwFM7dwFq(Fw2!EpbEEr7jJ(?ml za9Kc@j~^0s?+)HLI+D6q5oD8kE#T@q;{NAIzyCR!eM=y&v3XnzJCD4MkP`uBbuGz%Vi z=vi;KC+_2Z>_OZP{!Q;1$@7i-cqfPE%Y z^)(HKX^TRud!+chfPL}1lQ)RcFPgJSm#oW_U4Ma|vwzm&#oG=M5tElhT=r5T41A2V zNt^1BrW}5YR%0?|1tx$=F}Bmu2rek`*3pPDnnJKcQGmP?Q>^aRSy+2@n!8y?D7yh? zu(5Q5+fV}3xb3aX6fCGork^c4UWyc2B2qqq4ct1R4eQg^%>PvC1lyO^OR1!x`!UB? z&dxMTGJlPb=iP>UZnCe~+>i|pC#7u(oxT)>Od4%Wem45_*jQU+OTOqvJM4X^MTH0a zNE2Mg8gZ74>u=RpejWp`vpoc03$?J7`hiAG4_4253w)=3xMB4}-KBo0-`xV=-2!L5 zoi$m=_1pqy=;!Vh_)cGTcME)X3w&z;nm}d0Zh_$x@n(O4+h2|My}7&f&35an;V;Xr zZ}xMBHQB9G3eGxH)JF$AM7a&?-10m(T~*Fx%u8+`Ke^LUyk+*qBL*bl0KbMMjE+ac zAsz#MGU-S}jfTZ6i2sNX|FYLbKizkmOjUN|unsS$M8o0OvMk^Un+(WnR-mgCZLq#&cOLG$hubDrwY-9^ zr09P(lB|C&l+YS=$5kMOxA8<+9?yH~tZC_M^&9r}Wd6S9W~$*etQAZM52M8!w99Ie ztNA5XTFd$v>r%VCKr|+w7h;=09JJUVYKmp1jh5AK^3(44&W#vXB?5u%th|PNC}FXi zVGXRQ>p)=unhsZG0!j`w9n1y&SxE`dGwy%(zF!uz%__K9%o}(uZrk=+oV-ZU@_d7v znU5g|C{}L;6i==LiuoCq9QG?g+)ej5FA>IxHplvqAkVZ!9^ygzNhizRu{BaZ{5v)^ zpJ`OLX`-2#*P;ucckA06Qx`q_#6fzS&#HMHhhY5j`9TZ6mHhyc>F#`tXx{JFqV0c& z>a$2VuFpc((754FH|m5BH3V5*vDLSdV;|49Ji;K=ZkhL_@~w&EmQT9mOMAy>yFEIC z?oW&gH+ElS*KGqX5M8J$Zv7H5v)$jixkf}#8l4#CUM}N{Nf$>TUF>-KRWT_;Zz1*kx666xQ&Z7Q?29zrctth7s1Nq9wGr9 zEhxEzNkd}DU~5)S-L60OyN0200|d@mnF^dp$h!0q`YSk|MS64Hs5=d!GrWH??>v|8 zJeTe~m+mYvZoqR1eO-Iut@i!TtKke~{WxYB#3aKCsbr^d&t>6lHO{t_@3;-3Rm)Vn zjkRu@9B*3S_AAP`Vaj6fb%sk81}2AKJz}f^<$(IyTy0#kIK+&X3Lwu4anXzqnKVR@%RaUz(j7E}896cIIgWp~;emgxtDZfh=sEqwTkqbzeFt9RXghoGfEqkr_1ZCR z2`;Dam>RlyNsMDaobAwIlI4&&w~G_*+er(CcSpZBN5AZFtRRV>YN6UZ_pYVeOnnzV zjx%|!BnN%mh8XkcKrtJ4l;D?k0ev#+`BBvAP0(2h^}2c*gsag-0n2|PJ@l~;W&_c* zk9bpY93a4u$XY73odKe|{SJW(3S#m;aFp#0MiFT)70uvAsg~`)?h6)o+hx(!y|(SRk^JoD#9XNjRQ@S;b%Br?S_#(mb`yJAwqH|j2uO?m_qMD zD}`wXeXTKl(^1SaJ1(V(*-oyHKKlN+L$E8`b+V?^Y@2Cl+C>Vs0=~XRu@b)FAg%{UOvI z3F;23nqxlf%_e`ry!?%(y7`;q(w5xXwM|YV$Bd6gLm%5EA6lFRtScci-A5mR@DCW_ z@7tgHkbwfDF&j{^3?XS2P@6wr#X-WL*+-1)Fx$zQ%f$OJGO-g)#{wX=hP;y>FTRuC zx0BVi_L)5B!@0$V*({*ez6{`_oNr^y1*t8)Y-@iZ8QFg#G5`Xgv9xkJE+4n?hz4_# z?BFdzVr$%4UhEYoK1;O8P7t1r5Q9$x$*?=U_?dY$9drjXe;!_JK6J)5B-_eGA{Oeg zxIY)_2*ABjbZvV^3g}Vy#r=2|!W%g_ z1&4HT!_#_^$Gk2?+dV%R5DWb4-n{Rk)&ShurF1j`M{qu?M z-y|vQKdAmzSse$9A>!b{I9Npu&5wxSjQS-m#+-j8tQ=n#%ib>^q{CKh>&N1qM0G;S z@8_P2*w)EJExn(6j{JN*2IilIeed~`=ib5m1GyTHLO+}aG-_Z@1P58ibB?!|G-g44 z4;~yOg_3)kL<{imz4!dXbFX4%?7K2BeWGJ|@qGzS=f(XTPWgC3&ITj%HvC$)Zrsx% z8~1-Xz9^jRU1SiYuW=!~SYR2@V5NV|M$>?Vq`eJNG1NXF6ll3MLsLllrxS?;XN&dV z#bk6@{L`O|I{n~t0P3FN;wUNQMePGWif#-2JX?T%5DVx|g6YNZ`{AGmnR(tZ<9Yjp z=N*)CVZK!MdQhyczR!!UhTW@tcqsG8YB+yPDQmGdl=U|_Z9zh%iynzri&ENzVXD%QiG3}MS;tRL$xD=Z960*qee1{@8vw1x5w? z*)FH3dBcJzo=*k&J=10o=0TgGf6k=Tn>r$v_ZK@HmgnDM^7m6-=+yCHky8g6%f^50 z5+0vFTWmP5Z;>GLVv(sCPe%P&Z<+&#qAktuK91q}l#57y&AO08K^+O_If~|=(#Yi3 zqn9a))3PyABFL@2znvqUPe=4%ejU-I+Yh?o%_=mBDsoYUCQ*ydj|hL*MIs5j1@e6y ztM|(X53ciQZAVCMhiVME-~T2`B+`EZ6U7&X84EYJfkxJ0aMj9#2ZREw%5P=t57tYi z)%Cf@f3tQ8d6*@17qm;bVY7r>tP;A5nk7WDVGhd{wX&epb+gtHc^F4@7qpJJVM~Hs z3<Q~2B+M$1MkB^1(QIAKybD8=i>^c7bk)Oxdx6Z>6Bs54|rdy2% zl@kFn_G3#N`6iE-T_rdw5Awj|yV30YV({hrL*lzcB<>m!`zAxYzjbh^(IP=;$!yA6 z5KW2EV*b zIwUL{OKDt>FAfO>pNbk#$(rvDby)LFQ3??Ql2lGkPAY|eB04BU;5}X``~}}H+Yq0o zX>O`|r8TLh2j8XYE$n3MdH?h-N0X0TJSMM;{);X~vq9fG^}T2``0Phs5YqS@Jb3cz zL)TDVny$+bk&1-(sGEP$3AKiyK9U4B+_-A^X10uKG}(=XR?PL7vRT5lu% zHK$z;9Syuc{VjC=N?l`sE~%Rfs7K}k$Sje!+!A@qk$#*}B0oWEZnu4NV)=d+v3%cd zxI)#pdZ;lr{&i2j{*sYELu`>?l?SQ)(CNC}us?5jEFA$hay)+mC{*hpx?}5N&!ScXeJ%FVM-o{g_PZBDmTKhQlX^Q7Y5tMo6=gpfqY<*GCVSWc z8iM-U%$mL#O5UeNNj+DDIIK?Cc(?NzuO*!AoB6`o{^1y>gd^1Qo1UYXvO3=Mmc8v> za)aBrSQ<`qn45np;2LZy=imIFEwuR)d#h{#!RerCY315Rd=Omr$nYYg7+w04T$B=r zb06Kzqw-Pm>285B4IG++lqf(5U4-_jyh($>(Fw2!z5UU@JT#%;i4{b`evD33ad= zf5y~GbI^Z|>>X$?cfc0dh-qC3Aqc2%q!Xe!81G_R7h0@;fWE2Ekty}RrnU!lkPv?vC)6EV@-gvdaaI1!>w*e+w7PreyNPoGsRjwKv zHm&$D^c5zcCMr(FO(!e)Og zbzE=@6|AmQymHwy2ekKYbrPJF`_t1^X#UYk75)dZeE$hWNI4v#-ue*Y2T{Be$G_r+ zFl<3sh6Vz#T>jbGing!TONyyd9c26F9M5W`mb+@+hv(0|#yx%SFy3-)8m~9Wv+-yJ z{f{6km;_})4w*3|ssdUTea}*P3^af9izHd!x+J@*Q_PSeaPOxLM!nC1QP+~+qJ!|@ zbwdhh*k0{|;WVsoaXE%;kJWAkxh_D?4;YouenG2pdp7jZGzfVc6J}0@PlT^WtNc57PUnhW%=nEb|n0}Kn2q&3ZoCjdtRERXFCuo0e;~vgX z`WW8_-u`hv$Zy=>9NYJA`KaT3f*Uz_@Mp)-{LUc>ebK;PKghh$(d6Z+JwNWQZN7%1 z{&&B4$_Ed=?L_HFOEEiSpI&3~GiwQ3Ph^$~mD=CI^yzU#bC-YCR@PL!f|*)*deIH% z#w~B*yTI?W>&5Ov6}!|4U@?CL%Z+>&IDT=xIDVw!7|z6taR=VQ_rW1PTr-FG#la!U zqsfAZHkut;q0M`vxP(_TO;2Za~L&F#1XtMj=5h2 zBkPTZlsuH;Ao)lWW6zon1|}DF80l7%o9GogGI|3!!My`-kh;RG1~! zdMfX(-TAz`YRS%6yWqi@#t^F!>*q$jQ{B;npf3m>6gS%s$!wDml)=e4>y%4XbGmrS zC)_~Zj7>+X-O3Lfn_KNv1h#%{1csvor6I75B>R{RaI-z>EPH>O?XO!FcUww>Cz~kO zv@z2o4nPU3*s2-Z#1ZTxO0dkfDl@r$E3>`?)_-U2m)Yt{HoBVENN*mhxOS4r--J&_ z+TYSbFB7eB=JJcO8xpVIIrl^EGOUu*bsdW@CL!#){1e%V5rzb)cfAAriMW znfTgPfEJ9g5jTI}U&(;67xY{M7Bz2fz^ear(vW{6L-s@1fXip2NqII2vJP9VeRD%c zz;?hjq(cBo9DKE^i3;UYa4os6=cttX8L{nWRnt=*vaNPSQgpG^Yao~T9h_(mZaz2YVj{dvq`krOj(-vQRYgUuA7=GsuUdt z;cV(JI9t|6exUi1r|hQYiz;>_ADv$N3(l9dksp6+zW9{g)O`JFlLQx&0vDK}o1LBF zZD4r6Sp~iYg}v{0N^S#B``sefEhN)@*VA$1EUQ{ECbFoPU>^bWG8?6i-)D1LXJERQ`X?Nq?3mZa)Dg0R5v=U{R1@xoD7M=>hpz zU48iYMu_uQo3?x2?b+7I?I+Mgu>ZCs3N%@Ifd8(pKE4U^{LQA^pOZYTjog0nOa%K! zC(njTl#dZf-UuyHr7Xbx=P2|SyJ@nwlFwDs9F|2E!ni&6RYZ5>KtcmUVxc-M|hsR zNIqI{tDc+G{~lx>N8)$nt&{g7jl8D|arEf|+Q*iV^U~6>F3f_li)1P1MPhb8$1*V+$$fvJJl6Js z#aByAQ+G?|M_MxFzv+@;*KPDo5|hp|-?=$k%6GxkzkfpryHpk)=?P}+ap1&DAul}v+`S*BwE}wq6J|ed^errXa#@|Y2S|89lR^zFsf-B<~o0h>TTp_N08TT&5y2ZG%juIdPlX`H$8rS2RfRERYSwR z*xGP5bhkjh{{`|lRAN3{(+-;2{Lg*NH0UV5-~x6#OWTg5k7xEktc;_*M!sjlYcyawCVwxSP!KbTqf|a$}&i|!qO}K8G}E_c~gB-_%%3oY7M-Dg0IWAf)A=| z`U4C@e>lP;K|_L%KbF0B(ts+67T%QNt5kpgwYuz)|5wQWQLSyQ)>{DU&C=G=!|E^K z)lw;MmtW?+C(&8iac_S{Z}IBhF;@56v$M#b0*pFT@GqKnhvN>k-@zTcT_)y9M`%_N zf?!^ky=M0d!r5pBDcG%P+1thbBixoAp@sBg0qkrT`MqLA)IpzdV@%OC>ka)#+*fxq z?5mGcu(n*;+D#bX<;>1*y$K#?V?PA<5_~8}?p0KwdLy&4jZ%M%d(@&#Z61b(>%Gl; z>Hq3fi7zVC#58wv=H|I60Dm}nMi;>2_`%lFtN1mj^_siT@%m2a_`=laxEW5 zx%Rg{p8b|6qvd}npWTdaRE~1l_kA$SB8D*r_o|dq8v8bfC|NiwX|Z|A8$a@4>i5`% zI?eAOm4iq4%`VjGZI*2exn|LYx}J1iLdy+paaHu+!zz9tt(E68J+>U0HY_XoxQy56 z19d?k(*>OKePhZamKCHO22z|{v621&#-j^dw={u!{Z@Z+!=p-)OVNVwJEUy)?*8fr zxW6jj-Cy0Ql5Xh%=}|R3qq`0!cXylhecfi2?{2ex%mdh?wRlVRoaCL@R`2e%zVo}S za%Q#4-6hwZWa3~*57RQF{F%|6BKNydwa6k?%ID!)f-Rz{u3srm;Fz(?jR)}f|@}O)%;nleoF$tHh#$1tyU!;HeUu^ftW#_n~gB#f?9!pfP@Gg

P^!->7%Ut}<-3TWk`y{6A!f=q+A6ACFR5N^EOL-= zv~+(Le&>e5?|hTprn+V)qy^6+?#AxO=|;)vx;HGU`7{kU=jTi@ZQaF}zTx=N--bs$ zauL-+Tq?e~JJPxpq;=i=>KE;%CLB!{z2oIg+}+V!|2^-A>lU;hyDoamqsgL_VzzZh zGS^Qs*S%Z)8gu!Z1JPKUyQ7=yzYe}`PV;}8bQQGNHk8X2bax4KQ(MmOwwvL_I7hx) z%^hjn%+|72aoiR!NE~@@DR=a7Gh4`7Rk}Nxe+!xBaf-RSHM+qqWNpoMl{`O}nC5y~ zxg(7m+(I5Yu9p`ijy$)JJNmf6E##4Qp09mt`6c1zc@bGOsmXu4 z%flPJJiPYJ>2dO9bbjQO@2TgG!g9HuzHaXIYvTR%`~;S!(YtHKTXC&;?VRklG*{Mn zl3JeJ?2g)UzQn#pu2!wAR99$Bww*yY2w#&~A~6mCso{Bf&<)SC22Y4>Y)--=Eoc!B z=Bl4aKlfK|)p+MxJuY+sM8!r5B=k#1mtn6P`5mBp=((Yg4U6DK#)-!)V?}B!g~IKa%v2-AQ(60FQ~Aik(R-60n-+iG zgr0ce$m@*;gSp;gwRM#v+iT28EY0NkCLgfX*1Uf`^BVWq7K`LOuUx&yHda#N`Ey!A zE>*cF@4&RF7g9mFa5ZUT&K>cX`05%uSz;U1`kMww4A_8!yF{aiB%l6E4#YTk$E9@>@enIVJNL1N;c`&Z-6WiaUXx|4o!Uz{SO z3N1A?=ye7`G)0+68k-hR3jansUkgFCZk5v@UY1LM+mzubl3W;B05s6~Bd zo)=mVCZdKQtf%5EL4*g0_D9ZL>hkdh*hXDB)+iv;+e&BxF+fCPL71JOl-d}4@~r(l zN6l~)e(p}#a4e_Hq0b(XuW2Vf<5>3;_Z(kAJ?@os3_W58ykYmFpJiG(W8oDMVrl?G zvJ?W{(gQ*d9lSGli7TZiqd9*jfiOrIPrVd}JSrBS`ZDU$M%_6!)N?pv zB%^CF!s$f?I8O~=iW|9ztT+$R&}s|=sIx5cSXNw|;11#t5`Xm>pJ5q5t_7{!`>fGBgz zUag5kFRp8uub|hLm9w(pZ^nObW*HFC*Rc#XoDA^Rs`MnqYLq{B2Qxp)I#jLtwVtl{;1ajG>O)5NQ&dd&77YAO*d6+~sF7wi z+8aTu_^+i|lzu_7FYNhWdV`?XL91*C#pGXRSA#AtMLx`I%ng@4_GuQFoTFU$W627p z7egeR^g7r)Wf=k`#h0UIEgdjxS@vF}FWebTSSK$M`T&0`E!x4elqIFspC{A_M^j$( zgB6k}Ks}ScmbpXe7bM$0w-KBXpaA)_G!GeFR-)@H@+T|ur>zJYMA+|)&N_%)_+20n zBgIk)a7zAKAV=wIBzw)3e?ju?BcF~i7$bYvpp3uhPNHQ`{_ZFUTKi>B{_ZLWXG~s_ z{IC}#qAhxtzi%EaqK(Uw_Q7Q4&Y>MQCa411rJ})d1 z>{Z|zjTRMn*h`KeTt{InDYdbDr&WTSU& z_q~7d3@olu0rtgG25*&};cQAtS^I5*LkiFo5FL3XCC#ijn@s$0+98Zu{pBod616MC z*+dYc(Tj@or?dD+|BEP$e>jT{NBtSbnfBXRVKf$n;k&!wY^ngwemg7h>rYWfN{Xo_ z&!R2SQWe2*-A9r9}yxC2PuCEF;(!9SFS=6ELFaMR5HErJ80AR2vxKM zvx-0P0b%UZED)gm3IDNVMR4mJoXBYa{EMZ?XUP6+TiE^C zcz~y$PJ;g1Z0rjIW(SYQnrNwt&+f|}|6&#ybf;4g z%J>&ckrC`|^uwOrIRlvjLD3y_z}kO^7Plmu$Rq{%a$?;%3exw_lwPznTg}k~7sel! z{8@Ct`Lz1W9PemCa7sUI1%`M8^wUwGLw9xghgo#u`+q_y`e`XJ`V&td{WJ>zV%f0q z7o*5|cY=g>zXMjMeh)!xBqUYAl0alsWXWcAv~qSnTv4=BA*K_2 z_SH&Pc6P;T37*N}b{8J_XpT`L5+eqk=pr~nv;FK@T#e8_r&x_0=6G}oJ^wqd%%|CC z8u)P7T#d!UBsjk?pnUPdS_Scyz{Xps8RN3Yzu1Z}b(i$jD25IY5mtW>^Djn`K^Hn8 zf6Yv)FLLUQ2It-3u!{=NPji%mAoSTeUH)!11)1Yf6p$Iyep-sdz0f%nq+iS;Bgh_E zwHoNNTEV&SVabn9Q7-&3^M>84We@+c=FvG5-weRWb;7d8J{<*m7av&}{MAw{ieR&v zjylB37>XN7W;Iap4()$>UX;w>=ih7%z@egSZD52LIR0bF1AGo0NSzI)0SJYtg!pQ7 zO+-wGpc$Ta=qVBvk-pmsvNM+S)mDrt7Q+}FBg#Y6`Vn6?$lqNBS%dt$tzhI&S%d7W zqZn(>soo4B-E!RW zf)!k(V$ZDN%&IMuYOn<&mfHR7Y?Z7v{>3OV3Of-JJYa^U zua;sUAdKu{0%(1#nxD}aBqZ|J$V7*d$fuH@{M{_*`yZ+7Dt)yVBhst%)lm$~uhLgb zu?YyTWSdZam_>gBR3fl(pYZ?~nvK38N0L*PthGmDx~qwAwo;Snr2B=Fxc=Mhn#d&& z9#~sr`ZZXfXxP&)%bqRGY!wwEvVizzDHP!0kPmxyhwe4BnD`lA9M~Q#7HguV>Zm`1 z1Dpd1lCCgbaY(;{RtQAksed))Rn$aV)!~?w#-C;ZICy{9&)O)Jt%#ZPTnAZnJ=rU`M=GWuLYJA^oBK|R52 z5QHFfFz!XTH2-cXs8doh6{#fvj;>LUraCKg0mVo#t5E;pWlwyw6(WK&|6(f=&5*!B zcLIOyr=@tW2c>#FYv!=S`Ww2=$f%3^tPrxSBup%gT=qs&yrib~g$2o&JMu4< zB9ozJ&-SkuY062)X8*F3OZ!f-?R45(!rLRU~kcXD^b5~a9GC+s^QLi_fL`d-Udml-A z)(l${pHbs0E7rV^;pj4i=I9r*$hfZOjT2S0y9ZTKspKZS-Ku2vr6b`YH92`UYo(V>W?l5F_qU=E5ELyB3h;JVN8FWN2`^` z2+aYha}U-mRO&2y`|q~6*Mv2k$Fl-1gqnU)XbY!1R$auU%ArvR8XA?iVK&{|LcFxX9w*FX$_q5ViN|&rJ$Sc77Kmm1JSJJ>%L~9+j zv2#Df8r=wzLle-D6i4v%LI{6V!s_uG2IA>N>NUW(vA$GYW%Ek&XgI`-+jYNM_wX`G#S@&e< zPbb}vB5aL7-XItTQ`HHuh|%!Ot1BV11TtwA$#+QsL33i7_#kvaG*Mciw5-h^9y0h# zAuRY;BW&wgL|^dd&a$_=?7c0?;a$j@F7Bvop$4LxcS0+)S43Mi(YVs4j@}&!Z1}ya z{eCOZPuh|4H`U%n2GM`V7dL6NCM7Z%=~O{8ZCF7q4wJN_IffaQvBjO$HLKSe81(Zo zb9zI_K)i*afEaJ79&!|Nb0+Ge{uhg*HFdt+Eg3%5H0N!}<;bQIp9M88^u(el1)3}# zcbk5<@0v^o;fEzQtyo!%5n{l~_6^+Nld`3hv2GmxePpiCq|JZuT-FrIMRf0xD5#t| zKjUI`X<(#cLy+HR+7hRS&z7c(Vp(-?DB$;Pg)pIOMjo_)b5et-b3P~@sFY0--|It$ zG2nBX)>hSqjA9J%CIn#6 z6Op9R5~HA#!!dtPdY86t)z$sOk_be$tj>Bzh!7$u%2P3E>nI=nUxIoag2BEafYMNBdwtAJ~Va5HiboNK3<`O zYoyx8>YOL+Eqm`Ilp3suj1qyqXC%HwRaJ791`F+GZAO0xkZ#;EK2T4K+uFCrZ7qM? z)~*@1`kJId2oh;J zaMUanhmthXnj{udW{_*Pz1O<2$L2L)>#@7xVlG;Zk;C)w)) z&3pQ@0w=An&9)^dLT@x14}3a4Hb$C826@szHPL?uIl6sq$+Lya)rn96twH3Y&ZK`P z@Fh|*sf^Bo35!@+FMUXmWr*RDs%gyEsF!rLm28fk*6G5g# zrmz8?%eVk%m>r!R@ti}HbM*CCYJ>z3*9 zz5}Y8<+Y@5?&}UFnDT;gJK0UC?kV2ZAXGW^tg#P{ArZFhusJ zvdTwgFvrSy;TUm;1I`cn!P%LQ4ud_P3>8bpY7AvGHo4Rx$<`636){mjU^&!~fD@0z z_@!p{>EVfG&>%(cm%W!p3&)VC4X2Iea+QC46e#gLVccspbS!`*G;}DqvxNOPG%>F(0CO=IP)oLk7<_DF*ae=i~r3 zyu+{W+so#V_W@?5kB-@gUIR}`uREFgQP2$~X+R`No23q_6tq)Rs1rtbPYt#uD;9rv z@Fl+NSy_DJuO0h&9%jE%rrZgsNWqu;qV{M-$fqq}`9#*#c7uUamx`B?(uXb~3G)OZ znF;nL_1WY)0CsNTqG_vSNIC1KlvDezt@AehP6BrS1j z(9`+WCXs|D*E89;;IZ2BIw2}8zQ#lVyT%No~+oaqjxmkZMN*fq|G2@V^@6hHbc0Da~3qPl^uRR1pK-tHjfHX-H zI%3`3qv(^@B1;lWQ*J+92bAOh?y4fVwSc^ z`*n7LtpRH2=c^8Bi`;li+US<9Q|Azq!|ys}TU;@sXefAwu_^MLIt}TsHPcCINtZaJ zM`@&Xn;)8*1X%2_+@X5WaptTxzc1 z=#$`SgB!2Pjq{9D9k9|yCl8>L?&ot=wgh;9L?c>OM24<~Tnmn>*P_*0h!4e|EkQ(S zv$Y{(tLQfZpg!ah!{;j9v1>y}N0rC!9x=d;@oKRamaF6_j_QB2IV3!^f^}1ntgwj| z-MEDmgNjh46wYEV=P1bAG7=l&kg@^L6t~K)(u3m5@_K1$6K1Q|%NY;Rv|lBa(SJ%} zos_JPHS~bFda*WsfHFYx7)I*Uq6E_5Bw=nzI}pqlqVdz1%3F5wuVb zr^D`*i3yx4@kvsujT1nBuGEs@u&!N&{Ennk(V_RkI}(;DqSL0>mRM?orxJjI&<1u8 zs$d793bs^h5wM>rVDnBDut};4HafSA!U(ZnKa}_D%ocy4r=!up@6xc~^Eb2iqEPx; z*U$33i;u+{2W=gJCY@|nZX4>>Z!hZh;!)R;!B(>BghWaF|JyMP4CJktY*l%8OK`M) zdvFBPg?TP2A|GYuZxK;uKOla(;uRkGIuW1f>Z;8mi^_gv+G^zp2`H?OEJkJ+qC@3H z4~t>hYny-R14yi|mp$3kkje=tbz4e3hAn(|bz7u-SUT@!5aWE@o#=NYFe;p!@9I>qy>Soh%KP-(XBzM7O2r~e zX*h@Cw?(`{2Qn+jw@-4u9cWu;Xlp2%&RZ)tOPWT0>_;k@LxJ$j?9XB13UI? zeN;QdEXgven9;F+f85JZ0S+*KsMgh%w-EnOk2sbRN2)QlKCnN`7kT9saxC*{{oj96 zrU6}h@SwO?rmvGg(9Ys+37BYctyC(-Ben^P(^-Op@a{p=S?DRF{&((4xtA{00_@AA zN1R`p7?gNR#o#Si1N$O2VENS=`xTl4=qJ6(NY~<)TYix`3=lS*L;&LovWr;TslD}`0^ z`w9E~9G{BXZF)Cqv|6V(rmC@5T{Qv|#%rKbmBN2p#V-7gQjz-I;l%+5cgYl1netQGg(u~LX+J1= zDPcqzu6{M{wuc?yVjZPzK4-k?+Lh{$A{>mabi)bi5?Z@bZ2;+$l;LRXYYM9-Y5_k? z39f~z4WMi_{Su;bPyKOmchY0`#h~!eMTNT5+)Guy(_BQX%{6WQT@rt_ld0PY`-a+W zJUPP+lDWDfek!~;1VE6|JNSu*%kBhaAP6+4F&1iJkrv}LeD{Pr@SHlhGs6_}q+M4S z<55l^8rfiBZ%bdyUB^=R|*9czJeP(T1SPCH53CNEuuj< z3j=`M4I(c99cnIJm8<4&5U=H#SL05k&mgtFzP`*#G)Rd$_bA0B)>#RxN~v7o$S+7N zDU&u!4=PuWAfbO=CQV38oEFBdwm9on!=n|+bfB{biywm!yI-mNRek&pV#c)ECBe|s zRW<9X#^LK&iPcoupN7N+u?9C#>z*}MMob%+z%pZFZue+To~4-PU27H-7NE*BD;ER} zeSmTcb*Z+ybujB~$`+FIbkK_LK*$fmb{{`)zg}{;yH0=48lPre680z>4Snl2jc`W_ zrHau85pV-PdQqSrx*n3=Kg;t#+XCq-wnR6KF6HadRGo53GrmpKdCHP=Ys;tb2wN`^ zq7Fqoh*#ZHe*mv77(x@DBc|{)ib9sH37NDljx(|h)e@(4n+zqqM2MLCPka_b^n}j? zh#Ml-)(wAARYYW`vne`tvv{IPSg;iXMtnu7gcQ@PIYpoV zwSS3ZNvj=sK1D&P>n2Q$wznw=XkaT_b6)GjB%92uNLJQ;t}RQ1!~-^w*XyVyebZ>E zf}4q=4kMoWrKm5J!I;(ZmL>ylETjI%|ECwvPRcaK7qh zU|AdDbONDR-`iH+dvxre3tK;{K%H$c2d2H5+ZNBUxjx=!jyxPz;oC!!=$Sz(QCC)x zKAgqOlxR0>S#e23A*+fJ0Hnswj#i{IyI8T+5oQM|DJfLY}%_79|HkF?s$r`=UF=C-pHso%IgKg0oX{^4w?YK>) zuhNPVDi}OG2>f6ii<}$vaj;TatQI^NLWS(-`~=qbC&6b3dvHP{N6~=6@Q!&gMNnBH z+kl~<&>ZCnO>G`f@WLhg`q<&1~-Ce-zoMCE>jhq0F}PqlxX zy4X2X*K8){LRh69rAT;xq5`n>f>HgFL2O_jJ0taelaWK|XfMF%dm$C!_WQExo zUVbkbrAbQ?NUCUVZ!Yp;HIJ9QKLs%gWyY~suACYV)u5BA?O4k?h;{cMzyp6-8^f_{ zy&R`mEV1A<=K=4Yn$&bks>_P6w_>Z#On0aoX44@$Dx$m8ZB0JLX&V|V#(hrZ9g=4% zo~P?VDJJ@82#(28nUlED7ekIJMK{#iphIh3d~Hr8g_smlvU#Bdyaw@$lor=`Q?P1j zMhJ>gTM5?5uXLLiC=(YDm(zbT)hOhYVZLY^cx|Y0xld|sWxA-<4eD6#SDgrL#&|*N zl!;ufayZu4v)olvEDWAZR1L?*dTx=O+=(G&9(kz-Ed_U}7if`w9EtLEb%lSK1b`Z@q|q%D zz!HfC3~M8W&S}WD=%?;NzN-w%eMGnVPjQ7}#h3Wrv4%GZK(@cDsObBHWL)G0o!YfO zj)K7`v<1hI+Ne_S3p|u`>@+16f*DYt_|so}{IV;Yb>dS{kUEFoctOZGuvY{fBwfr9 z9sBGom7>L%+`+38 zO~t04j&73%&`L47h7AmMh{LJq&^sQ5*iaS6Cw?W!0YCkjPNgvlxBc^f?lk!9GlUTZ z(H=Q}zcK<3qMlCn+I-RK9*bG~qL(MH7HqJF@8+D%0(aQs7Ij*1`b?o%L6?Hs-%0sA zRfA2^3yGO<5<fEALSe7a0L*NPpuHhfR$MiuoL8TP)H&&1cCZSlmJ;ao(WEvQ zAc!3@Oj3hR3c@~%67nE6U}SYH!0m(;4|3V}6B)PQMmFq{p#*k_d2r-r5TH!%OG z6hYOsSKW-Bi#i{Hivb%Ooz9}=pFxmi|5|j{L6bk#F|#W zUk9D#_Nec>)`Ym5MHJqFhs)|EQ#!4(bzsYsG<>IFVG*WuBQX1&MPT0jI2!oFt#?~4 zV6#itbCTIE;$mrl;CLyd5Vk+rvC~Nj*4ycYKOq4GM4%?jqnKewLOfb*>{45;uiR6j zKgHdAD+TqFm*oL}n>=`&wQuJeL5ktpNf4ebdu9AL?1pXIK<2oVg4b;K0!$GlSxjcH zmZ)aec6)1R1765;_)EB=yc{2*97tI`? zgT{u?SngomcDh=@qIQ-1tD;phA^9j@2q!t77G)eu=^cD-1Le4N2 zs)c+&qzKgek*p>N*3DSF+R4ybMnC3J&op#2#Gzr$+W4uBk`}0!Wtu7}mXqly8U_Op z>Fq69Eif#9?_-&-Z#7G1D>aK9hocIM{mhHc{}hkK#4l?bYw|mEYarLx#pNJ&${ltG z;3VMpiD9sRHJx-jxCv&-yH+a2dO^YOHm+rDwsKmVYx?5E!)#?; zoh{td^)641a+)dwX2~rzcqH2w=U>b%v6xvO6CcMnm`(zCNN#u8+gbMBVvAwVnWe1# z9dnI;(x+9)L6`rKYT!0vyVbq9MR67Mbp zsQwf{ke4a;4yn23xupT#QUObZ*}f&X^YR{c3Uy$iTYx;)1swaYWS zPTXMV4U&)sJ}j|N9kxddYuJs0R>GDeh_I>GsJXFAd5fFSTdkvw*yTOh0p zC5O;uNG}@<{`4m!Yyw~_SjWv*zivo>N>B@ERaI}Sb%nigNI&LUqUjw@CbF*)$>dL! zP2tg?lLh?&8f^>5Y3Sj=b*77&!{QxnZ+6;1^BcWABf())fI!thJn%SE2i4t9t90D? z3_A;m3WjbWp#9P8bl_`no()Fb>8*m2>-*b!_$3OF+K z!f%KDKL(|iYPS_})3n5ykuW)$GSMUMIKA7`E?ckLwQ;jQ~#ok6uNQxy~|wRanq6dHoOr z0Nz{vaD@3c;{WiW1-^g~OdD$W`oz+9O(MCMg)m^pC>fN20klAK@U9Mse6 zUvSRe*Vn(wIS7E)zmo8Ot6yLLF6W@py#Af#RI4nj@AraX7sq->sqkk_vYGgE6#8J& zjZz8ZBx?(Zr@SfOh+8qQp?w2;gi_4EG%!!Fjtae`M_n0pW>Yp~)||+!JCWINBD3j4 zW-A_<>uzLjNXVo^cPXu zmCBNmDUTo>{+>ATXB$d79CGQ$#A81S&O-^4J5u)`2SyB+Xe*$`bRZexaG*EO_%Qfw6)4<1&3`Q`ENzpO1aAFMrI`~BBPkC$2xetZ0=Qdy}iVb5Vx z7G-1jCI2x9z^Vu&Li?)tn5}b+6TNSO6L;5a_)SJTcs^Ojk5a6F`^G}xo$G|UB6_Ic zc8tv9j_t z@LaZk4e>G3#BYR;mCnhP*60fDUKtf37=~`w&UA#)y+TVX4N%%jYT*rSffg4{c!cbd zTWHc2aA5@mg0Q6eo3uVDt&V}>HuWHAd8H9H5oRNddx?g2X+x}z(vZ}rME{XkcCXiX zTmz748ycm5;8a2oGNI^-Y>2gtZ);!zR0t)ST)5k_35g$rnWapi>`H=yk)YoP1S3%J zJ&m>iNqX5>f4savEeD2Ng3uEPTse?xkIXn2Fw~lTsPd^nwA@w}JSj=fIyznO#trPs z>wkr}Vm3{mpVyg~IQoENG8Dw4$D)oNiifGhZI?hA?Qj^P$My{ z!^JY(eHQhu2tZ#^DvI6F76gF6Eh{EUZ(&?O&!pPwD(s4iS<)|8If6e({B246}!ZwdbJ zo9h(p;i&IHL#5T##}%^;hVWPNF@6ywZsGGO{ryT{Q#tN%Qraf*JOMx?7%p4a_4ab& zwSu{n7o<^&JisF{J15);45a{}Sdc7vWlsTrd;zMwqq}6fOQbCK1yXLj>u!o~Y>Lwh z014MHtsZAbBc>R=}zVw?4o!3WGZ5wV<)ugUew#0>{3h}NhZ@T<7^4dB&_+Wvd4CSPEw4m1f*g~~6gyH?&jx)3!C@3ouoDqqD zXqZZbB<%j{M%`lN;K9Y*V!Zc2ju)?U`4ts6p1il+A0Zk=B}GIT7?kdKVd4?@O_KSeI?F4@zKyea|CtdD}M9R9`5s>$WaHR+Jyp+omo@E|4aEllLB>X z1ZWN58jgZXm!Sq@UGC(=5{I&Xo(4)?g%gc%^1f{8LBrDTi-)J}mJL4_^lb7zzyZ$Q zH_ekQPqx+C#GoV=MzwbuD|bair7(e9V~^#%<8KFu_TTX^(;0fDF*#OZyM3s4n-RSn ze@%fuIg{jc)B_AJK<nqG3im5q zXIF@kyW(v`>n!Z1n1u!CbG2|y_@#}Tcxd7FNoeT}frkyw$&=T_KAxUb%i{Z|t#}M> z2@Gy!!{8Qf-igMJ9HCYCa1Dacr$*At-s_NE6l15oSxDM|(DEI4hy-HPvG%%WQzV{1 z^&+ZPB2VTLrcZ67AkK_`oD^wkXGSTuV?kq=y>9P*%d1?yYh=Nz|+VBh<`%PALSZvtTd{@NJz=%JamLhe=06r74e@53r<{n<07ENCj_9{Pq7; zrhio*PyYICsr=X14?Tsrc;=()$*is|L4*Ot+^$Uy1rT|EcBc!jv>{9vn6IKmg=SQL z&JqudmqcGmrsE>3k3P8^)ER;m8X_yGjI&VxL2ruP!jxy~AXW3rJ%9iVnr|*zFMU+9 z_{#snTEfLNK7g{l56_=_Rt*~rP&yeQB#b+k!JyykPWslz&9oAg!UN{MhW!K|Sl-Lh zE7jN;M{CP}_JpWjh`k|tHk2G(i>Ci9i>G$qZcIyQbQU4b=T9ahG!=yh4<2}befldb zkS9hZW7)whV$Qfy73DDB3#Y}iAvO;=lORL=!0hp+h#_LlW|9koxSRx2--JqkMrAyj zOefth9r|j#T)w6i1-OQ14h@8BU}zNoKTt~p1QY&onpYeZ+$xHn6J#=39hmvtVPew)Z#g|_ke7zAPO~%ow7X)t z!Y5Z%vYcGk>*aMmE?`<`i)k?{=Bs>FRyb8j@lYgpSxWt+dWy1P7#ys?IG;{`fQflt z)<3T2V`}b3e<_XCmt_O{W#xQTEbBs=<>QaiM31|FXoi}@%+9O(FyvyA(TMJnw`M6EMc2f^J00Ty6V6@t?HA}v>KhvV27Mc%aQ*3@w^Aa zNsoK*2}3oY>@c}5Ke-90Van?3G9OI~|MY2iIz9JKf7dJA4Hxx##6S7R2ljC_yQ*_N ztK6*L`W9N0YCfLA{;$Hr>Tsk(f3#o?>g2jwCNNElY7ILQ)?-%tR%+eTQ~L^7cmJ4Q z;jGiO+w8W$M(((lIIIaSBD@KI0lW8w``tk`g0U>CS@QgU{_jg{`E)s-tPcHKQuUUh z8O$&0fA`#WTTjcITR7qC)nW~YdQrgsg1v@<26vllb*5T{nW+}Ap}Ovwp?zk2o6m1p zCP8=AHA|*BA2~RXB9)Q@C$Vs>ym3*~xL!|Hui-eg^$CkQqZujZMN)(K0+9jlkx!%N z6a9RUw_dK&8wcu*-9u~wa*d?LG&Q(rCre;p3yO?|jwBlSZM8En-W4{v$>kj#r4 zc=cTY3s>L6r@N!)+VxaB5b1R_B{^5t^}5(~(&6V5dayppx|!>-t9s0E_I_N~P9nMv zRWHZVd0A0^zlQ(mjH_w2^t&?jm%`ScEUU%BuLn#eZAo_(&3g-X4Y~GeQ^)5Lq?(&e zX5QJd)Mozudtm(Qx=7?-<7&d64fC-M7De{%!IGx2Atg9ktZo>$H0paAOoJqZRPN-7NEy zOzWM0gqM}$1a>!k0Z6WK;Tol?(W#$4+$t}r38`lBEXw>1!#?BI{*2@*Pd+y9W zr|w~VDx49VYgq(8XkKsE(@^!)Z}tR-tX?k`sL{C&TuZgxP>Ge-JYL|XuERlVhd0Fv zkK##}HVfUM^|yRvzrS`(`?e`=I2`)5=y@Q2edsu&pjsB?by-Z{KrC=Ke)(nM1VGex zasU!xjXMv-!q;EBSM^#)3BoO}>rOSFK6K{Az1!Gk!n(F)xWjO4vAxjpky-1T&G(=_ z>?h2%(_0dRimWHL{nyXWsaXm*zBny%rBs~}Zut(FQYbWN0MnfAgBDc~x>8e(Ho^6O zdP!P`+mJNJPU$#-8w*;)9D#m~KfzRtmn1l9xF0?ibOyoFIFcW_M~%-vN{)|@58d0l z_U)*G2WiZ2{2!TnII|Dy8|L7DOY9XBzt;7U+CIW11Hx>HvjjTgcv*sd#s|3}PPwCj z8Tru5pvNsX{`UgM+q%pH^TFHSAv=>R|NZ5c2RmMI7~YZEcbG~2ue~OzWtF5%Qp@)el+xNnNHknM#7e@3-fm9z5i;sZj1?WD_R8NCJv=v_hQ^Py|r3(d2B zn~ih7ENPK{LIGR5W?j{+ci3XV-e7M8 z`c$>-s>n-Y9Izw*_Omg1lb=6uFK2oov6pB{n6t0o-IKDam4^3sm#}z_TLF+}qUh;+^fJH+o26SoySEJ-A2JdZuSCL|;Usf_K!o zxNdZ`JzEFP-468};qC0>f9SXQl!h{{))=5}U!I|!E)-y35EpYYjSqfKF0PY{Jh>Pp zKeGY6%_NO`4_zOr?V~kRm;AiVyOW(BcTYnv zD$?p^g%5x0oIu-wYTG^h1^3*q=|@x>VffHjzdPs-(m~h1sUO}%e~!%0m9weuv8Q@G zb;`?E|Alg@etfg18{G%kiP|Vi)pw!4MmzHRSIc`JaB>}aCm41#usRytD67pw@SZMg3F3WHy`qMaaRMy|HU`#|n`Zj&l26b*UlH__3^%}+m(+3wF&H-y1IP#zW>*u|9 zr1xy$Tl|isH5#+BJI7Gl6kE?kVq(}ggbm2sJPGKYuzp?De>Gli9Y|NH;5|A(cj2ar)Bxm}E^0{y*2!A7yiI+j)}*~Nk7G+F;;=c?;dZ6QQk%k5P3 zQ%#ETG-o}~_j9KD8R&ixYvFD=v}9l?*D_nK?a;PuLTWIE*nm;^@5AqHk%4cEQStF( z{whCN*4^uBf9k+bAc88`iT;Jy7j4ckaP(&RLmWF2RoZ`D>B_f487|-qIFmJ^!|&&sH;fuEW%J zsNAATY%Heh8}{BBX+AK+Q6{I^(As&H4a^JE$Yo_whzr8X^1HcpU%xOtk5rXyGuPMe zO)01fD-B|3bo~=Q(bK0jJ=+u%a0_0$R%+v?L**LY7RbnYdJ8I_)vlNIY^$Jp?`qh! z4Yj(`f7q@)Gs}a$2bbDbZie-v?dPLwn!@>Fmy~@a{FscE`Fwn<1!Q~Fks+>0U5zom zPrz|sTn(cG=GPAH2&)a6Je<~mGfb6P(B6#OTgAY{E+M2(a7#jSA zdrft(1eq$-*S3s9d1D6JFw?GidbycX<%}6!5^ey zY8x6$bZ7H3^QCZxW;qE*+4u0+NbaOF^L56bdrL@2?*%~Tbp`KewR+FYhlZO?^{vQt-LH5k!6GK zsM_^3usyju=BBuvy2dj9`0GDZ%Xt#ORYPT?KzqOKLF0wvE2bIycHQ$m`@A@Q(alHL z8s`-D2SK~ohsvTDXp3HJ7xbx!R>ahbe>{VclxI>cUjtpaBWdkA-|+%Q8eD>8d!&{b2^f8WoG z@2@rL^158QEFQDr)docEz*&<4E)&q)f{=wzOX^~ERb5{#Dj3vgS}1I+-&VF?!F4@i zR@An{J5;P)cfJsiQPyM9OIbpyB|kNd!~9SSczq7S6(t*ip9%bivqsl*j-Q6Vcb}HT zpEl6jKK&(%_?h(Q&q1GpH!Jv_e|nlXHF1jz8HC;c$abfpod#|gVLu3ayRX0(5(1!v z6I=t|H%B8egjhe+u(+RE)xAO3>wU_b(VEfgH?NcE>7IHzT*dl9dhfgfWqS?ZKXt#C z_FdI}ut~J>cVK3SQkax|(~mCMmT{)hv!eb+IcD&N`C@LG_Dxfa+f>V?e}r4g=@cvo z5`NHfwg%%1u_lBWVJr9l_<#L>Rj$wFd|8gGdS2?r$ zlKG;{j1B=v^ZC45DfPdr{L+1jxanN6+rmZ4m9x1|s1gHtj<43PaxI(36%3S6ps>M{ z3elb*3qBTe4)oEQ=F5Oke^EYU?oC93?hP9ilbgb#9+l&`PZz6e2~DoXG#M!VR(UzU zDpz$ey*}v%i=g>g!F}AP>*yES@m=Lr?vwvTL?mVm=F_?&6{z;!RYo{aP}Cunl)l#2 z`HJJJ1F9Nq6!CCUVgyWTF?m|Q_HS3x1n)rVy{r>{kU$-DCl-WXe{f)OrKk0^TV+yQ z=djU}Vzz*7A4fY~+kR_X99~|3q#2*H>Bf9K-Z34zuDZ6X5b^+#SYcKS zqGu|MTOPJb!LHKP`r4O+o9|#WKayR^kb)(u?aKmHRxe4UR|0gqE>qj3@lF4dj?Y_% z$^tWN?skB&zS?L|e@fiTa>;{w2d0M&=#<;Gl>U29o9u=&jm_CQwY@|eWAu>x5$&$z zhb1OFN}IvfHmfy3xzJ8M5s<#V!-6AfYbKozdEtYbo|6~!>8r?h_~7N~e{GTUC}dK&O?9DN46u#y z5$rPv26ii$6*+6(KWxpSVNs6D6<8H;G7ex_uVx^brp3Xu1RZkua3J8S!^5NG3eU<~ za9NpIk=-xY*0ppPEzPDS=H9LM$E=G=QRXGlP9HPjI%k2Nbe4gn-D3K?+mX~<;l_Fl zCss-&+Xf}-f6`tVlv|M1X!&g|UG+m(O6LS6yKK5h6@tt>9qDc54XRmki79ZHY110k zMI$GQ>naSGX&>Nzw4=j6JM6}g#;Iz2W?&@RE5<29uRH(YQ!?=11o~uu%d{Gy4m++E zY;gwwB#iRhcouu)EmejeuZT%OL02f;!OY^Yo*yb$f2-?H%`{qB4!6c)RxGPMF3Huh zC{COxJ~!@0?$|+(IuKfLI?p@iTQ zxB(Z_&ZM|2rXfkNcaAGtOsIFY!@IO@L6Tmuy)3sHD9Lre|Ct2)sxS%m)N6lJuY&!8 z<Z-nmhY1J=?}^*gMP4_0$!sqkO0Y){YPR0wu;TFE zKUCve*qU<~#I2jO)V@Kv0Ck!$N&aZU&Xoe&)n4Mpoa{4{bEVSip`gC6ZXR5L8K_Y* zE(R(!#-;a{;!F@&pW6@njjA8@WubB8@1@Krf4O`$h8?cdo1!_o-qs%X=%CyBd3!X> zS{pXLAsF2vHx`m6Po3x;Gf-GI+f9w&=zI9j{j!?hfWDzvg4Fa4%qll%E zf6n zYFqT|^8rxFLz9TXxsLC2wc{7@=ws0DZVNau^Ywipa~3hzy)veQSW|in^?H{tFP_BWacIQA&VCw=^~|TS z8eF5bkgw#QCrF!dOxgx05YQKxmE6nuKAr4PfL@C`tk?PGp>xU571oG^V~K{qfAWxC zPrE}ref}Jl)(q+$Vla$)0qh z5ilzd>0Z{e#{THHHeVKtf}(M;EBk1kxsH!?TdY82f1fF*xf}4Q(H>IkXO1=?-I#NKaPY!Cq0nP7Ip(Ay z>aS<}i?tDLjFQR4sh-lf8#Ugmk)FY<)g2K@MxC{Lv#3J`K6U5kFC%<|zievQ7y|FW zJ#qyLdF7n%{QKHCc>P?l$;DB7Gzs`*t>@0K7H7G#7{Dj-m9!ywXyC zKUI$hk|5cUga$c^6%(3fc3-2Dg#XAO0Pb@T`b6W&5r^oT`N^`Z{N3=|-=6%IcJ>o) z-&gImsq@|2r*HlM7v#fzf3=)M=Uc%9xs@^Hqnpg`7_lyHiy59gW#w?cUDfYtK!teY z$^jgrb;xWpOyrs67;tTqXDVLGj|;_#QqBhEkv^rlgK0$$X7n6^JYluUETL!?*ny%6 zkRHef4I0@h@PBbu7MYV;=X>v>Gi1y$9p$ylX$`Z+Hkg?RMK~aDe-%}c^D_&O)zkNt zN_L%Bt4sN%F@gI=U{G2ai>W7QWUd|-#S^V3KFOc(KP@ye@njPMeXf6Vli#?LBoLJH6F<<0HYiOx>9>H~d!N)6#BpYrj?0?EDR?gpX^ z@oB*)1ueXTegfCvs2Jy{)8GQ|>Vg@E0gCUwku9j+(%pQ3NS$a|gzX1KZEr>c`}1wh zw4NSD>Q|&1kJqG^q3k+2$(&mm-Z-1(OKz#&kq(=&XmpEXf2fKUpljaKk8yY&y_#?&Ar) z2Cr?qK%$qVe=a`lTP+K-?shdj@oeKI{xPlpIQ~B(=0a55Zfiv687PBU@WTEFBEz8Z zoT~BkV>y7++$VZWVp)+U1KUKa9)T99WrjV)EjP8uE+qC)p&)v?XP?$q1$Iv~y0trs zt?%pF9s*P|>{L&8+w)|=n7UF|vue4x^#o#0bP-t5f9tl$cD;%N8J;G>_h{@P80a(1 zRw5s3{;`l3)cLiH`aCq=7Cpn{eXxSRDHYu(cc8YUvBrvgsVIU&R0`V+_iCf3P3;^` z_j8%l9!IW%0#Sw@!fo&mFl2IuEZk+2YH@|u69XC59z&_2)u)g-i}PSi$>bhsyK$Yy z>*-=yf3ElqeftKpINYUdsVL}p?qhe{Hrs03In?#JkKXxKsOaT-AF9O_E)ZCAYXg{X zm0f0gh5jBWlMENiM{9o%|9UF%J^cAyH7gn^YUe)4*F#cOG*-f0+OFm^4a^qKLXyxZ z>;K)vQ`|}t-}$7RP%gbLlxYYQ;6CTEb3JLu}E+&%CoG^rV2kwy!$w3)}lVYu|zT9G~N%8F~G8a)vgJ;bj+<2Da)@Q1<;YoF%0AcUKV5O6a<6A*6z_3=* z&rtQlWZ*7+!0UIUBWr(?OG}E!bgKF?e;gHIE^#j0-EGmw)Pp|zsW)p-=1a09O^1w( z0v#9*A^E^356@dq&KlJgSi_2r%A0Dte5i(_@7e7qc(ijB%1@sY(vE}F8koR z9Dyb@9+$z#edfJ-+%8q2XKAJEC=_4vTcd|Mk%IjVbbm_i?l`5ULw8As?-E3vilCl8 zxCEOG7O8iR`+KLazc~$L2PD;cM$#h43GR`3d0o^iX{-ktOvon(ze#>`f0%sv6{FXl z2&Nf2#8y4?N((CvsOLvONzS~(!*^*j=JteDiLDw&+SNN!C9)#^4yMsz>ckphA=A~n zFVqx3d69TL3lduuk(=PmJ7RjSnt(1t!hq2*E740++tPf$;<0}*zs8&i7&9sbqv{i4 zL+v3EN7#IM8T8{mt zTG;%8Y@hQp?ycY2n>Rb+m-~h08V2oJo1?})35SSVcWrBN@9;-E0x{tfi|zzYe}nJf zB0p!^mg3Gl+C~Vql5>764UeHMvCBxJwPlyci?=Uo7bv5p_|@Ief4)~46%kK9KdRr2 zxoqk^w>g{$;~+C~?#de#zoVb@I-Kf#oGSI5id6Z>4gC64yZ2&(|7CSu;;f!(7v9z? z01D-O#oJd|4Qk!EPd#JdxRPrI;U~CR7UJ-h-u$)29q6x>_#i3V`z$6;P28`T7P73T z`XHoQ5mtCV=a%QVe~X8}l+uCh~u7HW^qfh1f$YfjpIGAhY(xtf4eQQu{jhfJG$jPX8UJD z{hrM+-CwnRujlux4_Gk3)kCIk^Hoc@>0K*uG&uH6U9#hGfAkSI04 zGI>?ZM#WP3e_jXrLS=4!7r<7|gc9##VF;fn9duyjMrv51y!9KTkmY-jB2)t_FBFQt zMSrsI?%HN@pBAgcB}68yVK!T;-A9BV%24&g9*?W#B(BRfKfW(NmJ6icB6J7->*O7` z;jYuD>kTS`IwTCyLp=I zO07^Q^8CO)uV#k9nwp5MrFlPUu9;SlhiAQ^o!bGH^uD$Fj%nAm?c9VgFIu%m&D2F6 zrA202s1MX%Cf9h-Y8_Lor^t3RvIvW=LwJ)kHF^+!OKFqx-ZZ=yeZ-pC)R~;7-`e_` zu#kpde}3%aECP*D-4oCO3qh{=e?K)j2-MH1>StpfwsE>rvw>=cU|6h7NPMY_2Je-sl9;8ah2cHTyUtQAl$@<;k-KX9yZ zV;@gAU?xX)>`coUU)*6)PW7VL(yhA&t5!%wjJaA17YCY5I+HbX6?RrtX95??d%R^@ ztoa|%mHG~JsZlu}e{>V6Rx&ee06+g6e?}TTs$vDidF4K@&sqKcB zVnjWGa+pw9{Jq5ge;ZOOlLM-2X^MYRf4YXNp4boMdOb%JKP%^a6S>MV@>psg3t)kA z%;gluAJJ#*Mkuu%sBu4d;gK}n^8Xd=32I@m&hq1Fxl*WEVW@V!rM5Sjf_&#UoQHN28w`+?{oOjlzII!FTJ)IUzQ#w->_{3qdQZ;>f8iYQ#U!pYsI#5TKFVyuEN8X8pG;r5K&9?GwcxMJF zCGdrtnyZOc8A0*GJ|F9Udo6#tOWaRCf0evnt_$g}Yx|QAC|kdPc?#+hF>DXX>*Rld z?y)=h=|Fg|a9bQo_iAm@f8kc0oeVXskFbYe%=9v%cGVau_5G)5QOu>HD9>LS@Eh2& zzjZ|Wj6^|6vBO?7W4Ub^6{6I&Y7Apj!&BSP5Eid76^C>~jG=7kKyBI7p(~Xj^8!}^ zKjqN|n9;qWoXysACi&OOY-;p5Dy=9iWV#5U2e@;Ku5Ixsh&=a@f7u?qA7x&3ep0#m zmK?@4PPcsW##ib+l^v2F$}liZYD`#QIF`H{R4gJW(YH*h)w8&6W3aR^$DmTnG>jX$ ztBDHk@Ub;aI@HSVBU9&O&h#8_kWld&v}F>0;`MUOgwnylcECeYItG1d=tx@iRjU-I zs*Tn2AT&D+BSG+Df1Aw|e5casIG?-h(I#?z6g-2$dnygR)0L{7B>$E?zkKud^4Zh( zm(P`#SzwU&C4!O)R|aR|6+L*uuD;t_;bn?J10Qnn%HWjl2l|PgD*&U(6lEk@GV8aU zo3?|PjZ;bjhL@e`bumFd^rN`r;(9;R6W(o0l5R0R&h%ufe~4Cyw6<`o^^ecYw51WX znM}H2%&Q3}$Lkg4sP>P~%*3Q-V&>KAMF5cN=^5%)imA_!!kY_Jom)Ed5F!@{?JN9? z)TU9&mb-e#-mB0;MbtkY=%w1(MXRYf(CeqV2-PrD3B~^LK(Ab8YtgNjG32Ci%(}KIPJBXnWk!$~Yae8qx}_qkXHZ(DaY{T1=*=hx@cpa*;h! z=y{Pwm3v67A%Son3c8>cg_lrr_MCC>r`Of}6cdrYpZ`#d-hm2M1dg^7O1R2Tlug)@ zJyP?l{o0>uUk5Gbx||$si}!od`FVBaH%on0&aY(5e~NX!f2=IhQw8?Gx8SX!AQt>| z7M@lVMPXAqnWr*``wCbk%}fEK9gTaY@z9ovic3VTs+)p#jjCw&lze9I!X2)xDK0`} z48`@F;^D}CLS|~n9rdCAzKV`Z7lvP6W!WAtk5|XeqsT4Qgm+^^W0dt>Yi>0B8kczL za#;5`e^_0!W_`=VXan?p6)cxhMFz2c@tiZ;-ma${z45>K52kgShaAKRiD`4<7*Rnf zSagk=*$mlBwvnWmTFTwN!oo;}B=26vaj z)a%iY%=T2TLY6*;0EtzpmhSbpL>^PUON6tYe&LF{P!Gy8JzyUrmZ~*otjfiq27T2a zC_v!^Iu#|F%C6o*3PiPy1Q$0Ve=^`wbF~s_!_JXs)NC7`pn7#d5k@1mUlgMPG+i)j z>m1ZT_Z~l`T*tr{M&_WbzLHk=Rok@$y(mqhuLZ^DFmOqD0h9=y%@e+k;S$0}2N&Ny zeesf#&*{B-^yr~;%xxMGQlrf=zLl|RznY=rkBtlkc_^pTGM^=XfgSrpe^t!uVtOcj zows(Su2b1nty+!raTfZ(vn@BKkVAM72`ncv^Q{uNaOQmNNc*8}@A76?+>z`f5EScj zc)8`%X)%$;r>gPL81O>LEKWv){}<1k*#kIoY^NPU%ZJ}DLj{Lg$PP5aR( ztWEs5(Qq2KN|}p;MD)hqe`CLUr}{(Pc2&2hTXA#NSm%wop|NsLnB+%Yxr91MZ3iN9 zyyr>wq9cVMpoKRg!aKxtaAMk^GvpBlHQ`&cbMsb%{lS(9voRJ@lwj|*DeCOZ%t1)Q zA)M^^_M_I4XswDR5(VUQzGpS8kK1zs&p4mbgl#E3*fTi1zK}hrf3q03VW34qNG)lu z4}h_0cD=W68`ih%*>LI=>jYHixMvV|hLV5ROETLk_=1#_$IEb5P$;x#aCY2AS4ghp z;_t|NJN~@^V7znAPUBJS`j&l;p~je*3ISV39d>>Fv0Uu7#(DF|n|n{jH;)u%#fH^l|3gzsRcSB7+xLRkE7iGxT-Ue+^Dzg$eSe06(~kE=TT zbSppBMCd9%xnHjGdH6|wIVrE*-9rEVXu zV_?|+D5bNWbf2m2yEa~@B&<^SdM&rvxHyS_-HLAjtsq#2vez0t2>f1f?=p4{~KdF#`mz9`B4+7>XG zm2=Qaz+A-iG*%cCq_d}u)<-}t&$*xBFYV`y`#Dwpgeyc`(!%rI5O*qUW|}=Vr+GN! z-g^I<-cGrzDD5!c6>V0#p5K>ayZ}4SCtrc&78?3!|+%pSg z@FFgJe_Tv_lLYxnoF3IPixffaHniy57N5Bgr>ERoueG;FENJi7^phYw;L7QrooB=D z;GFyS3vH^TJfi<@JNCM#s2ptH-0)GKz;T}a8w~jUsd|4%t|)`Rji{=Ts^%k;W-N0o z@zCN32@7J1oILuRb-B0hzoxg0d&_KZa@od3f5E(SP=z2kS7OyH3j5_(n*ruM9pUV1 z9xSbF-_bP6O@|Ztk(4+ykv&7g@N_ygmvX2OyJaYunaf^me7wNx(B)7cP!7f?3`dXG zq$;_T&3z0%GtJS9dhbZHVNx2Ww9^gkVgbVVu;W`&`wBa)lY;%O6x=dXOM5gm1MI4s zf7WUlyI<@@=n5Jjz z03vd~``)?lRYGIefZCZjRm)~p%3xNsPUdc_u7S66W8%rmxhOglYwmXhJ3rQ;uGKl# z;xmbF@TpTObI~=%X;-+q+OuOC*|uune@0{|pQ32gsP^UX>G=-xrE6@tu1m2O8*N_A zJ1}vpO~zW+Sa{43yKiet`5~dg`lAWS(J!BY?X+61$15M=>KYr-5Yz54;#5nVtREk$ z#v&|>36_bOj~^UTTe{H;kTnoAA-dRz@V0)DIjzb$^)HEP%x$Vkk3t$kP`YXlo#bFSZ#S`eXGbhvS`j3yWJ^ME%x=4X1kL!r-32S!Ut8uVYv7j(6m zXJAZB>o{=O)h07D)@tX4#{@9cwXCgQ7Vb=#_BlbhCp9{SPI}yDYWrkdo6|2iLtnU@ zX;rfE@La_2oKOfhNvdPH5@m#VCxdQh!|vKg6~vcbP`AK9ipkOxgN zZ6*Qw)kbc|9qHxkwr>f1@YKve7AvzJAm?B?#OgL47Y-!-%T6;EQk0(Me*~YJSu|4U z&kmVHiG8mLmt;?B_=C%f)kBAe{`P_2k=b_yPltZqf4lFNuk@GEDEPOGfkf=HTaj;t zbqkYL>*noH*3`pp6{M>jN0|mL>23^1+PgPT-~PwTqyW(&;QFri?{Ft_xG0mMKv)q| z(J*kLap3xa5EcK+jJh=yBeyldM%@F2`Fw=P?Xuul&_Ij>a$tqvo zys=HHUz835E7J^>e}l0LNZ`|dyF&n13Rie!Rj-E;_&HEDe>KabTq3*Ri=xyuOJlgAh z&{xiFUccd|-BlMguD8E^aGagt+xRTcFY%ur` z(pSnkY^`!~<*pf1J&qhf0R_f%)_CBsYHCb!v`d!B5VCVz&;AFS4)PC}q<`YgMk1NP zn9#rBQwSYo=Y7}^iZknP|3?BO_I^6a7no%^UWWx`yw^R_ zp%klz06jp$zw2>(zaZEK>EHuPXEdV=Z;eVABD+KZ+`@dvO6;tkN0~1IVO^S2MDb5Y-mnNdHo({`f^$qFXpz6jB1qjvkz?F zKPdPa+U!%Zxp&uhg`a(gaEoUsu&teB2BO%$r4ps5!S%1FU-?c!a&-Is51YX_x_f;s zxz<_#>_gBdSjafWXqx>6EB9^Uhv);+a09kX#^RQb!GE3}DdpO{A_6jYRYp4F_9K?U zYWHD}ek++Y%ZCNbE8J#hb@WG^$J)>}kFkZmQK4pTv_CWd;>6R~T7!*QZ!x1vLb` zu;PHGNg52Jqk|vI!?Z_g(}&LuLJrcTSS~@(svC~W-270^CzwHm$f)o-&}>dq7&nC; z&EPPbCh|gR7%^R|v6qs2g}V#ICER#1DM<%m>VM`fJN8G`#dD4W%x`k^7d81xKBLbw zG!xD~{EK=!g{!rj8KZ-|;C10OL}z-q-@k4vt?K$4pkU2DJkss|J(!vy)8bb%IY72*BuvsmcjBkS3drMg*yUkwg87Y*8z5WN|0O7Qh4V0E}X2`Ed zdK^9IvaxdVBdOTqo*O15V-)q~a$e3_4SzmIoPO9Gq;W_Y^mH)}p^0J-oxz?#i%!L$qNL(k zfvI6-J@bt~sZRR?tyDkel^AwU)t$ECZF{al+CzO9bp{j3d?UAzJNBAzE;LNf*?%43 zKBEzEmhW;+;Qr~R=z36#DYP%*W8j#-6ERy3Rf-wSbW?bqPt0EoTsmmbG&&t0yNQ0YaGsPU0KJLlL zCx(QJVRajfKzk3VkJk9$Lj<*M_NNvhKFE#9>m8?OWKPpn-il?|#FfHC2Y=|VBa#N! zV;2ui+P3!^J#V2$p*F`p{=261hNs`E5Ow@Bl5wj(CQLw#GVrxS9#%Q8&J2RMa} zU58-$c6+_gHxc@0n^(_|8V#D>K>I9a`KOMT+;#HheEGGBg@ClmukrKY!E&~q345^# zmDZ|z_8uq^zAP4?{5^Wt(|Q;)h?$7$+UWOhv^nVGr)C%Fv;A7NW zGy=C^&2;6wlM#{cdqdY+?^KEFktgjAX7eVwp?b;A(2=Y$D39rA?~jKUX@LeBrTQqD z_;Mbt5IVWx>O>JkYS)AF1qUp`CcRphCA41+ox){**0U^D!r!hXI199_-N63>u{M zJCWf%&9+~?EjM_Zc_4Ak@f2&7lPW-=tl+CO$@tY=e`l@rau^nxZfUR`O-#&|zqFeH zum7PsK^>Pw@g-J6(_&SAALnGlU-(hq;~5HoLF*}^vhgA40Ds4|E^%LvAGkOYIcS+x zC1=OsUS|PbO0iL`X{q!^E#UakUK(N`5`0)W9u*g(uD!YHfAjtFk{ntFQ?~C2(fk;M zfN*4aXgb*Vz-FwceF!WWeombZnYSf9tF$Sj-*aukg7ASUKu! z!K270WsbJO-eZWd0B*spLMP95!?QNA_o+@LbuG|?mkzZdM?<=Wm4heSc4dIlIdr3ufE1Aam>r<$bUrLPBxrFwdxgQw;hB&5vtDW z#v{?%X{L1{Xf+~5lCgqgyjy&COoZ6%gisXWdu2I5mwCp!yMBwco8b~`%+#rbn|)X6LIAtx~|7MVNTRP~Ae=`=~D4TwHP$Yt& z?;m|iVUNNshk`JKj{V@6Sqc`F(PG|OhE^#miCu#{Ac!j?x6pS-M^iOH6)8i%S-9m< zLI2c3yF}p%Z)t}f5Khn^e0Y2UU4P*Fz$2u>|9`abVAg{$kN5i-x$4m!C_t-Q)~4W` z-WQ`2xeWbxa{T)qz9qTOoo_8YqslGl-P1K`xdN=W6S!MdDX*HA6K7_Gr#2-s$(vBl z4k9EK66v;aeHC1AlS;botp*BkQv7jZ~tN^cm;{%JA4S>3jl z2;0`#03!*}QDPbT+;OVan#zNj2)tL4EPwXJ%`%@fwE_<$boIX)Y=C=?5scZMvgcYe zxNr{y-eJ`gjGN&HOKTZ40+)q&kCh=+d-CyOj&34i1wX;3S|YY+;w`E@KLSN`*V{*( z4gr*ASSb_C`Y)01i46h=8e*u~?eS)*CEa%&SFqj>R zk|N}S%QAd1dPbC#dwdPcBBu#rU7c&WgMt zKb8CavF`!b8l7B{iA6Io%4-wMzGWWJ9Pxk{T;VHjtkY!v2mPU$sRPMb+)aReYaTKDpQ^DS-BKwP z4E`vZf#(&bC*Uayw(B<)-hbxLi{vlUs+jmuk@=0MUX^zh7R5N1_m3!DO5961^iIcU zbEmMNnU*qw&?sT^6t`9>XUbZ1Fv~gtZV?iWdiolVZN|!8jhkRR~Y=6Cuz+_*o_3*lc7{`r! zSC!(hsum%5>yFf3x?K;YiFP@Tk?RAED<708T#vd*O32y<*A~-nL>7OK#1A?iVIzQW z%2z9_GfwiV{6w1~UlC;uqs+n^#g9tPZQBReX-t1JNFdH#tj2`97 z7lJI0htKM-@qfxd_jhzh?D`hp2WEMxP($&^Wy(%%)SxlfJ0Nq=LtkLJO7pTP53DJU z6~5rVjwGCF5#aWcUNF}w8=|Afxh0&#;Jz5us4}c3{!xtb;>8BWXI`>VSB#RIVikN} z5B}j)zyz||7}tX{;5-?4y}+C1pwqY(SrpKZXdr}JI)Bu+m=i~k%H244ECir8IP@<^ zS9(b2AYP^gH<9wWBlDi|5o$>_pLeLIDydFPM5j~MU(r@7YcG-`Qj4==a9_7 zca3p2)PMhi!lCPV`|kDg{V3|%^8TjaH(7JLjv<1FK~M#sHwuDlq8o}s&N{;CJR950 zpG`X^JERQFjM5&^KX(4%Gji&sx9*wm3pKd(^nb%I=>vnvS~8E;H|Ew%4m>RjUo%M{ zaFbnh==-AZ)|pbNO4-#l1GW9BWv7IGuX2z;qr zzJDs?G_Lrq2I^bmotd6({GPVKfw~S>aOWvpqZl`Qb_+&CIS&KEDayk6|J}Q1-@mzZ zGk);9cb6|OpS@3h_ro79-(Duad;0p_50`HbgLL4{G%B%7DLD_9aFPOS0-lhjoFgmP zDLSszc)VWH6Z{f4B&6x?DnR_anqPr_aesySQ8`65$)wz}Gmrl$emR&E`GxNjw*#8* z-(n8=s+wJ~a~MoT6cvKom7)*$cZK9-e;tU_Uw3W1Z9T1$SJir%``M(rx4p;=s-1h= z8*~deg@|86kS!$!2jql;$8KFX#36UJRiRwdFs0#sj8kqmX?4=)CM(W%??Xb(dVgdTYD`1SET}yBL;m1oCU@RNw}1&2nCc$w zq0^>8^!5QhO~yCoH(LtAb&jabCC|^OaZ>%kYkd4F5ZKZ^G>V_XUtT!Y98{Wlsr@BvNw&e5%F2zHRU}{B#5-974L1>ydMP~ zt;@x_PEG~)>0=j0+I~s@`Faze7Z=$*5|yKM{dWZozFtiDyv;tMbAO_ypqGD&{HEOo z(Lsxb>a{%On-=5U+cSHhfilLBfY{1DC?fEH$|Sx<{+BGrSlfg3o-Y{^ysu|BAZ=f` zE^05I@iD=(G}1QQX$r?jO)xd2K!s5HIA5mT1|%k(k*D|25V2m}%%Vkt7PjMFweCo&dz2juz#mj^-*||D-r{87|E~w1Zx(T<0r`h=q>0+Wp-v7bAe%6 zP+uuZ;TeChZ*(W6ikE>eBNy~;FS@o>U8OFwOtBN7#>GrjpnuK9ge%lwXk$cLmG)-m z_*QVb4Pu!cqe0HBu4MXeS-d)^=!lhV?bP*&hpOAnKC~4>+qjDsX8aUMwqVKVTprM*YFCUFg#`DN$66)+jk} zO$$l^M?W^h7=Kg`tQn)Z6-sp7w>Caqy$%mnW*=7HzCO_y<7W`Nj@RHZt&;-e*%~2S-lN)F(e;HSVFhOdg!~! z(0AicDt!jgX5mxl|qHsHOB9~M-&?`fAOgp zM{7TJrqJcnw=Xd+1UgmiY7P;B!%@O03cQP%aDSh!W&h$Xs&5f(NUrj=4(J14_mXFz zMx3q$nmb}7 z-=u3(u)G>)YAx@5OewmXVw}04N*j)jo)7^3Ch|3={V*^s;Itn@H{MD)gq8C>R|(I@ zNjLd*cDmKaEPZy*HufnhBLNSOkD<$u8~p2Ruvh2Ztph&ElKUkNcnKZ$_vtW=JAZtN zhP$Q%N7O>a<=)Bp{_Cu_N5_Lf-0_d)s=UHAK1rP(n}=mqS<;HEZ{+QW7S5dIBcyz;XDGK*8%9`yNAqI+q zr%EBk=Vv;D3qy>K{LQh9pWz z`}vF^vqOK!1#v-Gq}Px#tFkVOsiywvY5z>hzydhQuvb?F zS3n>>6uJ6|>OQ{z9g>sufYkRxnQX&|YMpRo%krkg%6ZptsDBZE50YAH){r4tuV-Rl zast@us8Mj-8=bD`xO*#u=LhizdrTD)-l0K5aM`Axm_|hWJ=HV}$QrfM1?JnfZ7%l- z(bw&zZl%J7a!%>LK~^9F?<3)YP%Zq|&6*n3cgx}?`BMRM_U0yxzO~_tcY| zw(VAa|Br+JNqki8?+$4x!EPp^i>2=&_3>Z-zHu&2A2{?kOp5g#Nq^Fp&hrSPdAhzKT);b0Hj;O6 zw-i3fJ9Sap9wjh>1a?a)glm*(mV1J#HV11MBf0J{@Dj(z;|3m{TQEe>cYp!7UMtt( zM$fKqi_s8_A1(`{R&90(n{)xm144b8w7)&J;|gSOlj?ikyP3K%(S46*pjW!@Z($%D zWr6LAsekkSStoD3{;-%z2w#V%Mb;wAYJHT1s-=pQk$OYfro1Gi+}E2(Gvpj-?sA-o z8h-hn{yQ)3uUO|lAvR0c|5u`tlvJrj-a8~{5Nc{lYCXBAkp}Z(kz7fl`rPK-+BNb=d{j2R;+k9lcHD< zw)c}aCZI28$)H3*c&*OreU06DAQvw)xgXdehkgVnqXy^-PtlXP&!?om)j&9Sl{d49 za(|@>-GRV-RCcBExob|u!KqIRyI{pWG_{%eJP@33{;_!_4=7yH?S`Cx*T{vFQWv&E zh0e+INT9MT59*OuRlHob>Jmll7-4IBR3qk|po1vyBJSu+m=kv|Lw4NDOfz(0D*K)h zCko|A4-UoU9br7YPTd3vwt?c>6lLf<6Mssmy$0_#Q6Jr9L*?fyF4$mxhowx_OaFj8 zThFR$S{n~~u-WnvT0CEV)c`NF4!2L`OAyR%pi+L-?B1KMZ~O-8r#*p@>9i1g%TFbdqPJi7q z?}gstG<}h3ZEu;w|4l%VKpGAtR9qR_^VWVjLWM3jrB=xCpX3i$)%6v$xwc;^8ib>nij*z>6XMZ#f4PUg@i-5Ov;&;HQ#iMqr7s1>H!DjpR~(*~?Tryei5g z`aKL4Zf@Tz#T?FctcJ3xyeHn$zke!~12?&QIY)#O_~1IfDSY3gq@jSFYgxBRAa@BF z*E?4kFD}gh-^4+RX)6{^9e3XukwSSh7)L3G=IW;8L=pFI^gDu)g#J9#pKifg!pED( z&G$`b8a|A2w|{3!CGy5VcSA6`51PR(28+$>wI4AS>VWC$DHoHi<|W=@c7N|YL-5rl zVm=~!syP+ZakoE=agLJ}%1os(IzWO-zaWB`dOZU3qprWdPCnHWs@-*C5`fy?NfmeC zoudji-|uL?e?t?6p}Q@UE7k zWeMG@=d*L=ly$}A1Z#ceRDXZJ@5B+VqzR_OK&MyumXpkPOq2?#xl-x!C#c?0gB)Vs zi|NSz3!`JMJLF^TZPTwv>Zks3ED?y(wCS)fXF_4rxvBE0#nXz#5EKqQX0L0&OVGbS z@CSm(fBWJ;FP~o|!kTl%Svx1ai=3LW_V$cp?e_}48^s#lmZh8 zwN99L%>(wN8H*YQgn#-%s-4d2zMOxA`C;BASVspKm%KQ-I1(4Fr`tq#NLr4*Bk4)n z?Vibre=z&damo3vFr_G^WE|uvQ>7eh zO}ADT`BKi%{tBsocPe@X6&(aMpX&|es9TZ8`KjdOdhfF@J%7zET;62&V03mqf>fp4 zjB=9vnSrYG4l1{T3mxe$E2Mx`|_f8P|6m z|G4jza-Y1kIu1MOgmx01T!JY(NE>fEP0j7P!YivEm4D+1i2iZTZ&=Uob0X&xOnal^ zOZ!}-i>jCPS~*zuQM9p>Q`83s__1wKina@9C@lx*sTy=Ov8>y4mw)avLie2 z{@)cD>FhkD&hR*#XIYbWi~KT5vuV0xqzkODmr)73Ulh=#uBZ@r_e^=*r{(Bowg}kE z2Yyt1PKw&3T!jKUYBLOvk-9+|^)VZRIA?T#XMZ$8^ONrQKl@Yye@ICc7S+1IFc4GC zojg&i^e)HbcLe>x5Mj;ME9R72fSJ7ctNdfq#Y);}LnAfD4bxI{vY zUOkWwcvna~=3#-^0Gzjkoe}Os*PK(q7O^hJ>s4#o<}=(NYNuA1k+Gh;VP-udHOu@0 z(SP%Jdhmce=%>28{~Y{KhkF{w%?+F=IR=9e`v<$TxThAxr-*Q_g7Z1^l~3(Zg%EJe z3=9J!a#f0dz;{ixxr5$>fWfO}QJ0f-aYY=qeB*I|XY4pX!o@sVVx2_uB;rXFF%1SGYiM-I16 z5UA=~<0p2{)lsI@uQ}E`M~`N{9Kq#wCCNQkjF3gi0)pYBE4^S{JVTxrc6l3tL!idl zAc=;)4&5-~X%v--E4vdnQXoJw;eP@J4fQ=bsGbQ{dt|IP?cVqXXb3BNfQCRT+r}~2 zCT`ss@jdn=FZHu~Bytq0f8hGW!++L44@QYMIMtPnb56hXt%ekBZ^1q~ZFjL=B5a-g zZtbU=3dYftdYm5`l8Cu|59i2&Hih3LaZk`u^Bo~POC_~7R~wZ!uxpSGV}B&`$;MUI zJKX^?wc5C16J>=-b;dQYT68MW7cnGkBf_&{dQ+b8Gd_O!U5Tmb^D=qGMcBD}sshq) zckhM+W2cx)G!gpWk~84eCG2Bhc*B#BFHw_-_rCO!W`-;PBX>)@w`(mW5G^||wUS`I z=Fsd_= z4j_iEP;;BG$9sbK3xUYM;4h!PN)9+{`6<@QfxVTy$}u=s9I76fFyG4wOxp%qiVqEe z9CXzyr7LWiVhqlAvq5A|Ng(x=txij1o&{%=_)0L&k}zk$_kWI?ToDF%B3Mso$M>Os zzHgJ84W;cxNLSFBvTut%bH&Z=QyODUPfFt8YYcuLr1_RL?DcNCy{_Xn z+f_P&mk+cHQ_`JVl2aDd^kEJM7z0TzPX)K^q_{ySZr^o^-nU^t!htkmqbl66X(DwH zV#xS5n5EVl!+#CZ!9piGQtQ-Rw<>d?Q3;gEE^sc0xw@A01teAF0v42RvRW^k-p{pW zbiW=uA<+iXhw6Yx7ER;Fs-CD?@iS1zr-l6In0t^n3`xDsPSwb1Pru1abrdMoj+>HY7Z4rdK1syE!5?^G-HFy;8N&Y<3XtM`2YLfJpAifd4Z2vh9FfF~-M zA?sBQ2Y+W7CIQhfnOE>-XDE=R+8_v>XgIP@ejSl`aJPgn))jzgBcRUj9!ZHYGK z@Ytl9U0qMBd=*JqCda}^BR!MwGpr6Upb_4hd1Lb_`vRI#1+S$_Mq+t^4*0EH4OzLNL8bF$n+krvF7T!8uG41F-DcV@#%w% z*s;QOMoE--b1uA##!aSIxk73acY)a2ffh!7bH&>6fN#(94=toM?d}IEgSPRS9B?JP zfq(a5wx%71YFBb8Y*sb~DU!VR=oK!_Ue}YA{uTi5xUR0!caXnB9mofqUFcAGuCKi&Gp?b4mP&Ed3V%$j!Ihi7<0jX$c6IjaUNC(ymCrNAN^3_j>ND4jXt9lfDKwIryNgZ}Im zf)U5R@Y)%dL=tmu==}Kh>(oViJVg1!E z%v|=t){9|>LAkP607*e$N2z8r=YI*2*@x;dM(9|# zB&k+7Nz7zCgAaniB!8L~VYQfETWbt-AxCw|!f)FulWm#sE+r!MPwk~NH)Qu3!M|g^ z3B9WA>Yee#fKz4x=Q|o&d8n--OdCi1g_~e1^4=QH4QL+X3Q(OWFd zJ%6~*v9j@s;jxwaI`oC~0)D8V62n57s8uui!_;0atzKB_F|#Dep|R5q4zi@1^pbuu zIMiL^Z~KStcvCXhmIJ{V;D4tv15hiEqSaKRx~Hu@_c27M0*_yQ6&6LQIMZ}j*aM=XRKn-~CA_*?PCDek{F=@mqC*-Ooh=Szid3HCDG!c2=G&&MVeH4$ z4hjBAY?+=Z|0Ja+gIHI=3Wbk2Jw83wjby>FjrbBk*z0IneJr*)MiCXwb>(fAdc?vG2jC4BhJ2%%rRf$m$3KT52?g3{ z+eGZ^4m*`fz{{DG6QHhQIY?TME+XgpLg zg|>7XX0rYEX77UB!+*k^vzOP~@$C4^!wrJ*IQn`Ql8Im3ZFbrVnL-Bfs<*FSQ|Adm z2Q=1xUL3O_1N-8pIGz`)6R<0LCuy&~&le}KA{_=&A(ic~eSiM_$Oe<0HyG}MI>^3i z#BFxoJ3n%1)2Eu8iQG4`h^e@*gWj_teI+z*t@rfh6b~r&xPM&VfcOY~Qii~w>ET#B zTw!SSYM!syQ@Owbd-yBmhVl5C+Si#tZr)TFO!4s#P9LeYwS#*dZ+0i&fD!;Aqa2NYBOe!ix4 z+NbZ3XiB`X72W6D^_OywBiI}Ny|K(BJzneH2`c0O0)OqwLS|DQ%ETr*F-WxT;({rm92^tNipeiR7}}R)WDYskEyKsO<{92@ zy!EFHisJ&NhWowoxW_~0$lu63jN}Ykc*Lxj(XL~nIqhqtteX#I0ES{;D!sJb;E+Bu z&3|d7Hu*pP85Vb^3`{BenAS~QW9Wll7mXRBDtMV@jNh_2E(b=cb&fX))EVWW~U#1)rm@%2Xv*$iK(~RF&#^)?o^i!3k%i=RDV4c z#&~(&*|t;PiL^}g*nI?*c1+|^{PAFvORgh4-dtBzkfZ%=(Q(|~N6n7$rQpS#a;|NG zW)-`}8?@VFE99yZJPTNTtznAa=Jjo>kr|t7Jui~KOsisoorT1#cq4BJj(?DXN$=(77*%0k)9Q%x?|ST@+X6$KIIzT7tp=1p zzj3^!j>VK5V?J?q(_U>V?W)L)ItZBaiH5)&ogX3G%B;nkIyaTA?>ST?dM0H>p+kLH z3J${khH_o?*^a{IgeqL+pQ?E^dkFMjpTqt&SvA$(ZLhZFx!anyWk-(dyMOnH!rJsK zRetpWo#-J2AAkcimmmWe$oB>8qewI{+on>acS{Uc49Q^f;_9zky0Jb$#c|2r!1?C6 zZ98@TYVSN=T}B#a;!pR`YferNIR83)cGKJ-3uk$8LrECz+c^wL8ER<7A^$#8FN8NR zM(O^&D}1AuYU@#K4DH{tH+2nvce#jRtG#qDZGfuA)XDLXr z#(Gh3JOEc>#;aM><9tzE)uaxbbfK*nuz3O&GP6XGG>ghvcxRpuq*__d-*)Bk+O+{} zyBl+dymDgA<@_Qs!=l*UN^SC1#0X*aB&MVB-$K_1Q+ZPm)1k|d!G9ZK$2iFlWg-q& zDIAy1=~eBm^<_(SOypePmR7B;h~;zQ8T;sDy6Df7&8O!H^m6(BS&I-w+~-NL8e?yc zDh3QnWX-@qEQ@JDh3vKolZb|Mw->h4n&K_DP(;SIrIT=J+JayaLNGuQos#e8FZYb} z&QuAKC5pk~Rcr4J#(!R`?d-Hy#FX5y_Ua%|;p6Ceic45`p`@h$3E z#a%g}Q0=CjBf3|$qypSR7!nEM4UN6W8-{x2O0l3OgxM9C+IZAF>+agYa(2c1u7ojD zf`Ipi?NV?2a`Um*S1#fy^GR?c#mmqC;pzGED+-GA4mZuL&40P#msPP28U?r?HM-B% zLMRo|zY71A9FW%(=T@gp9ICvDaMuS9--c!NRYI4(7Dw0?%L~7wHcpUMR)h<8T2+fJ zGwO0-Owu6#EuU`c4jR3^eD@x1$T0=4KY!H%B|#ClqOt~L{;{BY$)_xF}E4vL#Q* zQHj&+ppCobsiciGRr|KQC60ZoUSH+Qaq|8?zbTjN+4^Jo_q_dH!rh5hkMKZy&bpO1PPC^CLYaE(IaLQ%ZKg z=xUv;T7TY)L?8e}iHa*IBBy~?=Jh^=P_WQRiW;lI+0k;h5 zY~yJ;YCr<1ewx8oOC114e0;F;~s7hf#PzJ zkt^bTX8RePiIc1D`Pmh06{Ok3AL;M3GaP1I&40HtF(P!-j*A+zz1ouC9%Jm%QR56$?<5wHkSKSl3gUtH+^lmGUS;S*KHe z05sB3v!4`P4WliTh*U7;vXaS#sqW5EU#}WSIHCvvCq=D17A#?5L ze}Bm0Zf3S-YlB}fv8{*$r@u5K!mjFxVO-fFMZiYG9ABi4Wc)Es3j)c68?jhIswb^D{6?F;Kun%!W^;7g+D=p#7;ChetiF|w`4l++_EN5F5L=_!a}EUIhfP3aDF_25r6Bz zO^Xj!M;{co0&GEzvXQMcEBE*9Vty#&0XLh{x(8Qpi)u#BL*>sICpS+X=J|}0yF3q2 zCz(`SlVx4sUa=57Nt0!HbGw4$b&ZnpHlHFnTL)Dn+F|R}^_eZ+>dU8Ym6Jrq$%KnR zyT|J~Som|ia$x9MhuAt>J3;Ybb${FLKof|v{+a)#J*-?9*US7ySSMJx+x-;U;0?~n z!*!^cYU>*sudRyjBCDGTJ_zL8pPDFGDu1sXM4fPv47hN~VaY*YEonNK!vxZG+rjw2 z5s!?1#^DmdF+n=~y^I$Qg+S;TlAg+U58nsUN5A+RP_5wgWvcvO9F8klhodkG$3Fy;EEfjdGvQsra2^0?<6=71-u(9Z z;^6>!@$G%$TcJrf9D(7E$7gBu%$LNYaC4^@5``gkGS(;+i zL?K#g%fqbZVXw(9d-NvXcaNLv+ZY^%WTnXox7&fX(Ufu5&F(Im94<7PXNZUL>9!jE zG0p4ST?#;3jYM?pB7XthPT%l`fyIrTZfqhZE-a*cAbFTlJ8@j-KnQ>E7nq%{svT@~ z5w4hJufY}^7<|b=(mn3EAn5|mJv(s3n6 zl)2HlMc)W4+l;IvX{DV%Q6&oJ2;!q6Nktval|%FKOw&OuZhx1#${oi24c$mQ@AA=7p;E-`O+1L zjDiGsS&di^j3ahBK)2n*kxW9lNoq|n?|%0J^EBZX&v0qTWrzSEKN=R1 z9iLxZfVBQ;U2He#yqk;vLv&3j`nl-_t*5lYhZBmKErg4bV4V_GvjJ(V!lU6{wv&cC z$*YM?tF^(Uwuh}BP@`7W4{psZrz!yG^VvyH>cwSg^gu_mh^8L5qpKmAIwNZ>XglCVkMHDSgSJlC-iR+f--B z5X-J;;a6Daa(9r^)gPahAB*I7@3>s&v2$0~h<^>t(M4eCi2vc9{3mKEm^W~|{W~dz zlQa+SC(^kt8zzJ;XW|xV&c(iArfr;_^a8cwE6hGA|1N)}f5pYMf6xBuDJrrwFf91= zUpz_FAoRxkXt3E(M3WRmepe3$1KCv?Gg1YhHrS6M*yuqvzBu2D09zV6D1BlbG?gxa zPJhkbVgtI=`EKrS(a#mtgn0yDE$AEm`%%YNRhjX_B<=`*xe9+Fi+oC4c4T)Z45I9% zr=+>pNAx4xsYgjl{2=@j0rd-I<-+BU7A*SgPSVDQx9n(`Nc>iqg zm$JHc#>3m$fA7jXd4f#4ohLqYJ)Ty+lz;8KxTh9-9twY)oyobygVkWvil5UQZ`wDC z`ZyKp;(rQo0uefoF~z#OOfgC1AXCgbo%S2d{tyLv<{mCd3Th&VA2x#f(P#9FlUCWp zu&c{JjU`-nmNHpIw|!Xz)L=m;2^|S1w#9DkY-O!xrI=V<7uD>B>bMEUrWMbos(-T| z*kzM=2(B641VXBG0PkyPI__(Q5xND&r=2O~@?-L>nsPzV2Eykn^7^4$iZF=IUB@~X z{Yoe+s~P;i<>D3#V|cr-5qWmy#>Ys+A{Opm91o`_X_q)2;JCw0N2xu^2p7jndxiB4 zp5V}0)y2V$JA;3&mn^a(U-VA4r=d$rQ{m1{sLgt$$&fN0zzNL-goJZJqD_C=5}%lsUo^PJFRM(ho>Q%rNLQ z&G{a!jsM7*cDmLlofvOjw`N{%Rlf{eWUKqZ;##jk`oK*Dy-5Y(J!m^s&|RFL%95pB zBL~7U2p6j>e(=N)gM>fhU*T`+TTA3MtU7IxNu)8pJBhI_Gf|`kfYBMtiDl-EK7??_( zLIUuwrDkBSx8|;HvOR*p-a}t&4Q2pyK#adj)mODa)a-8b(q)<&n9O;Xf)35)X zz*}f0d*DVJ9*RIVk)KozwvB(`MOZdgpt(_`s?lS=PkaSxbM-2p zxQ^2qnA9fS+7;8r!rE{j7nB~g=QSbgd(93O%B{{_Ej`KDajD;CT;!Yy2YT->QB`$} zv}4*;&4<$-V%TG+>4p;DQwZLjcb~46Oj{Nq_8qJSY;)jo3!#9Z!eoDbGr#!$D-JQgo^XQ36D|V}dQAdHVI9LnQ2U7MUP2T}&WEQ>8 zNdv{)I(hiEE&oQnil=`$p#2=b6ATL^EOO}<^BY)#@P*P7)CveUsZO9z8~c0M>Ao~46qc-BA5PS1PUAjSG#XT9#P>yKS>=_nx{XGm#Q zAo6#HA~${}lwtQbyjn?4{JYOS{s($y|M>wYz3tEV*AFcqy-j~Njx#~{Xdqb(a!SR( z(VZ0?Lc-eeW^^)|t~o&qIX~vTEl`3Dd553>zOKAay8MaD7}2@&Oj$OCc0*i&Qq&nU z-YQ0dw$YXp>}xM)QuH2+gF9_+uRF;`OPO!tI ztO~XJP7z_!*Y;2sH{$}^9J`x(fk8~r!Wg&oXZ+7#h}>wQ3x7234Nq0S%iG+#8yzcd zqD>dv@#X%eo~I|%)q`MHzUhnw!u94auQ-_1;57^8;HZD9Y6SJ?ey=6n1XMCSA@JF= z{AOOR)|28h4wX^mW2d*$jQj+2_DT~8=|~&&fYAdC>>ec-7X&5-G#0f8*uj5Cu8G!e z9H5q}D&%8(Gl(TdAlXf4E%t5N?gKu&$We@;%IW#NwKXDHv{w}9xRP8L=$OJYSIC)i z=+c&u@|b@hBqbC0Ij-o%zC$#GlQyrinmaxPKJo?%X^AQoQc)s_wKGhdLW@Peh0t{$ z_5iq{omjOVm2h>iJ%ZG};m}5L$C@3NUpa4|NrDStoX1f!dBPSBYG}qvlkrlmb-Do( z`}ym@f7%9^)*2)=$t)j+#mXH4x-PC2sQ+ZdEuWRfB|+07^0_%`ZEPBf~S z7jYtD!&*_UUFGArr;Gxr!|AK)-4`Pb@PCz$lkeXp|C#)?ste5aJ=_PO_*uBba94NF z{9VnLbvMoWovizT5@pB+at`<)+$2tm?EQ=n_E(ae0I{V9Z>TFR=p+o>&B zB@cfqvsN`w8h9fvsnu}UAfnpA*DMjX0_Q3ajErU@$B9740kk`HLY*RWWK9^pI**jc zU48+Y-GYFZcq>r`pAR}v3I-wX&5bavP+6r!?P)baBoS$)sgMJJN_S4ULI;DCR0SrWQI)f1CnX#{DYuANpC$!R&Uk>bbq zFGn5G!j%mQ_cff}y1dy=-=@9bUS93+gKLq!HKHY*yKjIAry`-O3~9K(I^x{nyOl4B z&{W;+SD@3XiAbks+#@Ggm9Zj3-U*h4c6%8)lDUq9m@7Au?6xdfW>K{xUqP!x3MYTA znYANhF}NDEuaD->d(d>WnAdGWqVRpRFKFB`F6+>Iz0+~#vbsYGq-4S|I(A2f zw7eRDzQTvs`LROckQd)3&)Uff@KO&N1zh>2ebjPOUUF~bjN@u9^1 zrjHk=LPYnnF_f=v#Pl3*#CheqSQcbYxXsas6o)0mgzs{GSBZ(pnB=W$3_9^2rcN>~ z^j#R$zV3u__9|~@OJ0yW173JB7mY3bLYKQ`S(NwCc0B3slg`UwlsSJsQ;dIMT;Ai? zDHh*|X7c^Q+}Oqq)vCz3_>Q~b@S*Q9^yeoAV~tqvTjLSncdO)Y&V37a?gz2k$)C9= zeM{3ue)r58+ju&5_l9wQl|AKM(H0noS^X9LQ(>qSwyxbt>d9JyNgL&bZN0!+_eB`t z_RzKNC`18Jb%0|~6P$TF7Eymhk4OMC4>ceCP9bGPzB!K@d~LqmZ*9F9I%~9kfX(|! z_NtWKL!*^`alBehw`=1%qCF~hd_U=dq+eN50#X_M$F!n#jNH;pZmcK;$B=Qn=E3!! z*P6*`0~`}I8F=Trx6h)vOvVr6sjUL?_PcMwD8706?vg8>ASn*}Md^Ph1b*G-HAz{F z;cmmVs~FBt>vH_Dqs(}=Nvzo)(iL@6OMUD^m-PCY@}$rJg0;ff!rU;J2G1#Sfiz1S z*>P#X(YpOKKNosoLo^9~yusifVsZUOhF20c*I?SD=FAmQXK)anc1!>!#2I3(%u1nF zmGeJ`FbfkTXxUO+fYE=S*E&{+bEfV`WjJaK22W@1$aGyq;gQ zM!t8Xn7}4j=6-@&&ZNDEFa$fQD&%wVNj}PnPQ=;snzDRB5t@LY4^^w!u@)iegC(F( zZBLzA1Y4sQ+MqMF*Tk2TARjI~HdDHTEps@pRKl{ST>4b5*r$IQU#QC0wI>2aD4v;_ zRgGD@ER<-aA$Sh`7QJH|LGQd*SL2TbI_v|yzm=hvbuePc(pp%(4B$ zq5sk^*urz|@&|vs{QDyu$RA3We1r!rBWGY8CnL1+bP4}A-a?)52K=Y1H$)N#)jE@B z!Jkfw&DdRwl2MnAN{(IU5AyJDJS~JEaFSFQ)mHGs$E2WMD4i?Ye74m} z(&@Q^POsjtNm+5k{_}z`1zVIvth>#XoYXclc7p)!_%QK|bSb*&< zb+|AQiIR?qhk7fVeX9eRYLRFhvr%u@oQB`eFv69&;Ki2yWGl$!gQdJ4Rr6qb3Y00# z6qmd85)^-Dz~+QIH3!MP>9D?0CH@$dt>Nu2-hF@Nc-$#>vnDllw1nljbw`3D#X{H0 z$*#$tz6pK-xknB#P=Dxiz5-l}z2x$1&-_Dv;*xU2#g|(xm9rS0>|Ty zS9nic=-R{R`)u0h{!h*8j@Rv%7OL<(l$2@k70x{ZFUax#P;{_}SO=~un8@QFYe~XNy62gz=8iu)vXB_T z(Za?ToKKq}Va>EMN|i@_{De)IS%FaXvYuIC#j^90J9Yw@t+f;Eh6tS{Yn}95YZ|~4 zAR~WzVQIBl_%Bn?>@g~n-wAP4C`Ph0R01B<1`=O`sE*Q( zZ}!fGb44w^F45Ubli=0MF`jyzucs@Qr-pwUFyzqZf>cHTYRmRG`xBS z`ZN*oYO>=We*~5H59_)H$!vV+&dcENo^XuW&_qd6t{z$@N?X6%fUM4kJ_hmbtapFs zK-jeTO(Jyri#B4#{Q&oXImG3}X%0+ngUH)LI+D53iL+n>*4*`H(}zti`#vvKD_G88 zPG02?ra)4g+u0s74h(o{80eB(3e0UQ@W-w^mvV(Hy%oXc$ciAmtFjaUXw}eNvYUaIh6-zsIIXGze&uRC;m;m3Bnv+;Zde=`AaLX~MJ$Cn+nU+O zuJ7500Hk0shRFfdf+o{()ed|*vCS)KxFu+t6D3LqrFf9%q#}xsVw*l6&`p00qBX=} z^Hy;@;d>CTjmjGbuxwE}-s8j0dW6>>G+@UbWsY?LDu z15X;=IzHpsV{Zd?k&=)MjAefuyzxzH)~yG^@zO?bZN5zJTa#dPdfX2QMv=6(q#C07 zHv5(hWRl&ORp*W)OwA@svd>7zdHUuGB~B1bS9Ex<+~K_PI-y--Z#7yIG2W=qC_KrI z{Clyb)^mI*XxWpiNu{@f@M$-gvy@)4Q}>%W?Jm5X`dd~bOhX|1X*z!e0X20rAbSB+ zn8IT`Uppc1E`eR*8wRbG1wCL?Yzcww%sGl8M$NRCp1vU(i ze^Ld=cIK#4`jm(|d@cQ()40)%KM4qCOU;rexKFmPyp<6;=%x-hYGkAWpoeY2TU(z{ zcQkv)*_q~^3Rw7A&X9jNlWo6)s9KDVU92iWJX?!(n;+K05|yJVhW1ERPcDrsidePW z;KCy>{c^2eF6e$OO2y;E9=KEEG$WU&MM*fm!y2v_&4jMvQr-r(@l+F;($}8-7N2}X zhOOfd6j^8?iO#7)9gJ@axUGysC4j||G&%;A*mT5iB@gjE#cO}3c-d313`X%lTrONH zK~)+d66;4OB=H%cbP)A2L%1zo0?Fu(!%|)mw2Y9S-Jf=W1ci|{6==k4Fu29K11M%!-;!;@j6Owoa*;`f`ruipVp83c+=!JpM z=wyL(m56`q7-~eLbJ>qX_N%#Wa*=&)-I-$4lI__bYutj_3`-OTjWoWff#hrO;YwP( z;8)NqYojZE>!Z;3db_Ep+z%w7f%_saMtVfBye;?7#TTuOv~#D@`sDi8dXNXA|!&=Q72dtk2b? zYOxYgmz;5Fa<&7Gw6vw`&hK59@-D`s1bpa$z_PDBvp9EV(UXuFN-Zl|-nM3yaR!3r>j{3g~Jf?ZdYuUI^0j z=#M89_oS>xjUjDgb2jK=$@Xx;tNq5)o&ce$GwnsC+-`L7k&LRODx3M~%Rj$MF8_a= zeEVjo#`NyZ)3^VDqU-?{)8jASyuJMP#eZt2%@zqxL}$uG<|Mx=FkK_t9(y5;pq9iB z_Y~UPf)U&Dval}kYxhwb49z)PS$LQwPv-vq{`kIk3{ne8@zRqlJt0;+8C4sE@acR4 zhJKuO6rV>XIK`7lH!WG4)`Vmihj)L7KIApQcyOrvGrLCpFI@mcLslR1(b&H-pk3`y z!a;_UdnG5gm*P$ulp#UKCr^i3p9D5|fMjLm37invk?JS2=ba&6dr zk&ntLa+V;n@S(6#mU*?hM7E#zRclcz0_}4(Nwkd1H=Kp%9b_&zvWXuL&2xYEi~y>Y z#-^#<^D+7ZL!K9me-nB8CXhRO;dWw4TPt}52e8g<*^2lcJ8_0&KvE z?Dn8an>f)4XVR(q5nJrrFbUhfVjn$L0WVre0$M74y0EePBHouM`W_@W)i9=Ab_%0k zQFg6YQLxw&QBUuRD-eH9a0C16Yejx1im=fEJU*cfcYJ&j9fCACSfoxnAK2h*WXORU zhQ?zQV}ZnNqZM#GtQ38Z@obxd#9?7Ma9v)zWOP)A_0;lx<)=4LhPCP9@76Fq-~G@3 zef~fH|5HPVFW^fezi!~XutF&t2G-@?Gy_N%^6Nl6VFf0D<&u97R6M9Qp!<^7aB<_T`kuLINeJ|$f?*rL7)-S^gB+$3CcQ} z2E5*4vT|ubjwf^7Z_QK=&R4~9%=|Z)2SsWb`(BZv7dQQSy4uBiXh9+SKo8yCb;;@u zV@$yi(A};}ni*E{TT5w&PBuef9oS?`H#pbyhiiw;#!r7h$0{A$R(C~Lz&2r3`2}rj z%MdsAs(XkV40|a6kBIwX@aa?Xu2>?y?xg@iye2_X;<=ZNNA6cIC~(f_>d0{7vfiQK zNM_I)kch#mwi?795rq(L5*qDkW7^+_n*9G-%&X{f&qu^?&(~L1oNl(vO-96%ym^oU2 zNLA{V-CJDLUQrLaL>FH|&0EY~y)Y&yU%{BqqA{Z(>lI^HMA0V|=v=omifkcpntt!X zAoT0zEa3N-Q!ZnGA58dB)0Ljs8eX~L(D=g`-X5`;`9gkC$dLd-s|qG3XBFaJ^iOt0 z)LVZsF)o}T=&rv$eM1IikE_ysa#%~}mSSxgJ&`nv82m<8{G=!rg!_u(e3Ik!{PNk0 zS5IHkj(z_9pTBu|xyPI9{Eq*+5|mqQNypzLArHAd2g~yt;t)CE#DGOip1Q$C&K6vH zyD8{au*Xh?3TD%>m{M6 zUCbrEa5vzDoGqENXZ!8tyYK(}_Sq#z$~buuuB-LUEngcX*|o+~eT091lh4=5%Y1)Y zj7zwhSL@}+Suu~(S225vU`2a?#8&Q@d7_Cb+F3qLP(S3L!}snTnyVt5UQq(e>u}$| zF089-IOpq?aZ&iS_wF0^G4AwXal~Go!dC8^lb*X|bfy2yVX=WQELcw6h&6NHKV#xnoLZ-PP@>6KLWpkPb9 zxdJAP?bAL_Y)z%p_ZWJIzv4CA#E%m2W4WGG!SxgG%s<$n`Op6|}kV-}ZWxmVlOuKY1i;s^f#>)Tj{i{omFL&j#n$raxG5|Sa!r4tc zDeTzWuX~|Fm%~ON>ys=xqdk-MF(xH5Ala$Sq;>OEdF8n06?aLHiNUo) z2K*wQC+SwP=wHiuc|dgW%t;0enUNI*uAeqP+W{k42zfk z4Sr}-tmKPP4G!Gfw9_p^G}F=wU)nk~l7c=)6r^BO@C+M8fgyzcR~$2~gh(Ug__{r( zB2OR7MT37LqOrJIjHlj?_15(aVNEi&CLk=T+{Noc0STi0aQXBie6fGrSAC4GHjK(k z@H6Y4fTDClitrUZp6!og#7}Bv-LTY;0wB6tRQIa1jp@l@7y_nZLo!ZR;0%KP*l&Th zxma*Y^HB6fU32R>)&g{*iE$@eI`Rxr&Of)X`Rs=8(fOu>SCImw51cZg9(bL@rF!*E z{s0&MH^sCpuCJuZb$fq1PeftWaW*qu?nkhB)8ka{UMAfA>WgP+H+G&OjBFbWUhnpJcq- z;}Jqy+Hrjpyw=WzO`c8T!d6#3{_*eC+}(qrB4T+RxKlQmPb1_ZM`wv4(Lgt5u1j>; z0F}j=cs@_%Q?-Bo!KfJFeop#-rF8WE@U}NOcij}d)cZ_jTQX@Y(vX>?1dJHOW3h75 z8Hu$HuBTPLx?)h+(UX5W&Q5Qh9CFTXNi-XH?#5-zglCR}7ys@mEyo{Wov$eV(?a#D zBB0C3HAlsoz9&@yLq({x*7;h{X_WjSYLP>%sVZ`a0a$-MYq>N)tgT?%1i56CRLrPgMEki+n-1xZnjhkHD$QmOj(1 zPXJ>hf1lmk_As+5=Yb}8VM$T7n#_4o#*}iwzLk}z9g~eR&hvG)2qPU$Cx+YI?uo!! z8ccu8Vou7v3p6^pU>KR%UI07Op+WN%(hW6BE=y3ump0)|L3TSFb#nAEX-NcT1ua`p ztN0V0oECg5w!?iYm0eH{ag~-@r7o*ibR0T(>bNm?qocaH}YNDAvh^M z6_ZelF0O@(j+8L7j%kd3J!X?AF^H+i7ZHDLtF+TS`=ImgKGVVB5`yyO++8J(@&tbu zplX}E0_XdeVy5SvUfRf66@XHyumbp^wm2bXhfsew z(F+5Xy?&RMT+Y&((4Z=Y6hB5BQQ5fUl(k+e>4iEQD7N)~!|0e^63>qbmF`+YLH5?S z<@M_7rlMU;C!bP48>Ebk25dOFwB7R8r|+J=lD!~1Bf3@09ScU(8cs$(?I*86On>X` zm^qc-DA{`AWYh%9_3Y+QY`wZ_CNO`)W0IJR%KGHM{`-H(1j@gHqq08S&0SDP*2EzX7Loo;a>o|A~sU~{0y?r}Ul#Vg{vMj!(2+# z5V1#$ZwGNOtmh+BZ4_xAnoEBPwQ11u za5|3b>UcnTfQ}MK`B40o$;K4|vGN(d@kU4_;;Y&VOZgIqhQPoNK1(4Dy456FMNFAS zOEmCfhbM`)%dpcuw;&-trCfs4Fqe8bhc5_-cku%B<3h+J1Y+o+D_rrNqwRhzy*d>w zYGw_JVA}2w`P;%ktxcIjfgykH{73Dl1kI8CX#4w~j9w*4b1H5e3!E*w@GiTz6*DK3 z#?^jY`US##CTQMmxbw9kx#MZCJ5wIk@dB+;CQ;C0rdZVFlrs>QnCw)O-H%D;0kb@U z>!A=^g}gQi@>}MTQ^&c5bpDt8XBr_f2Cx2e_}ro|PB0*dL0lrcc|B{e zy9Wagl+67vmqDjH41naEB^u#FL151*rvQoZ7*I>~KOOX5w44wPujAV>fHO5uyUMk) z`KlosRa?nuUNP!R2y}l$B$03`<|lo<9}M3(*Q8jH{mk@ESHgPB>gSkbzX2rgk`S&2 zp$9M|44Yt|kKuk*yes*7S|zXG!CdMpwTxwLW&Yc z*gL!0eYqRVGC7rAoFI)@w44ep9h)n=A7vKCR2vvA?=uTs`~ZIk0uITmLd0m~B(3Fo zk7#EoVoM~`^@dZ^I!A0Aw`@%ihy^onaD@?+fP5{sCr&>u{l`taP0`pRh87CQQy_N< zH_$Wk-RGo}k;V~NOuRP+6${R5r|wgnqAc1Uy-s)VL5rXWnTO5{$qD=9sjZlhpOwF# z9JV=1sq~qgHF1BlI2str3f})(4m~L%E@qbGGjlOnH*3%t*AIqZzyJRGH}4!+HMmQM zq?JLhSP9azU;L$HW-RYV=IBeVdP2==hbKwpWkg}1ts24>XH?VgsO&P$A=@r{b3!1J za?7y96(9MMz4{I0?~FZETUp19*6%{bDjRm&=$VJU@Qi6r_LQ)^-_-h>t9*Z}bgzEjQMM0Kj`jub|nR4bvq>&$x{xen1cC8mn=cwF14 zqRoF$J6V74*~{g!Ie1UWNMgx&?>tDHJX>0;8VNOZJc-gjV6pCQ^ zuvk?Wv&n!zmj7Ab=4AEKzd{g~E;)OuoALYlwpxEr84EQk60S79;~>RdU>!cIHDVc7 zEDVcouDGHn9p+$RdS?V^a?@rkqFK6wh(7T;!`A;DdV|^*-z_y zg4gv}LB#X>{DE^ebP3fMG#tL^dOT~AX}$(atOR4cg6Szuz$Y-kx^E}9mkvqfQy4-W zs>``_HA2ukzC7i4xSmQz>h-kK2xHNXaFu_1{Ry}$tdIqP5KtLVmT`=HF15D z6>4YdI;;pXYwd+b@1LX@k-|)>aeabx-Sj{3FK&3E-h6z!nxQ9}MJL`auAX32i`#!- zQ#Fi&sW`oZjLl<*`KhOQeS6Y%Ni|NNFv)#!;LyNVT;bv5bQotfhcm$SX&kpoD zaf2$NE=1t7R6*cMiF|lO5Rum|jc6m1VR|NAy##GIpTX5n0*R{JoC-kl=v zpBWoDjCNPr>C*1fkur?Edtez8?@GPNm>`yKTa-){wPN+DAyp{a)#;R&p;>=)m@=os z%H*DDG8U$XC+Evwe~rsSDH~kHO*64Oh%V}yqTR$)UronXa!?%K94CVm|Gy+3A!Gtm zgS6(^S`oL^hsHxTcsiEt2X%3yut8Xd=1}|M6cwd}V%oY_YP#3C^(WGtyTApr=ZQW} zfuR z{r3c2+i%Q&;Z@0zCCO8K_W+j8>=;)%3eE;<5qC^{k zVTF-;So>b&8=HckLj}$t7jUt3KvmdrA?Ot!DgV zY)!%jN+I{-Ba$&6r*);?+bB|f^)JD~Si{vOkzAkfq4NYsmkuK)_u#|B?27694% zQ;OSBI;MbuT@L3{x_T}+o94G)>=*f=`?iR<_>gsnqZW~Tqytti|f0*W)gPh4Zx9?TT7%P7{@%{E;aa%B>ic8xv(AEligW3Of zi5i7r@sSEqoEu1tF7O=ORFxAmytjlf0ae$LNW{@Yg2JZrQ_`6#ct__Z`2sm}aE~GH z!od^i;>i)_q8%Qg9{GjVNm+yjpO7R16c_XdP!<|_@Y}+w&}<5dHn(h^3D)mjb#+a9 z?@NEzBl$C1!d!`B7kR$DHdG1+>h*M?x7NjIT-Mg4BB9SXPSSW*SP*BuQZ=IM5W+@y z=LUpDd;W}@TF|`wofsijHc$|V2y@6SKhuI~F6Y-UbH(I&QI81~*-#x_OYQhv(H#Vh+iPYg5mES*fWjX#(a6h%)BW5B=+Zu(&PBG+NKQvU(ehXH^+ba+Tm7f z;nk4aP`L^hEab6dGo1|wxsF6ICv!MpYTcx2_C(rYh0}A4E@x*SObxn=dc4dRL2;`K zP_%9}u@+XAcqm%z(l$C~^^D`M2}vTN4kq6`pns7_bwRCT9~jAWa(_iktN~R)8j104 zHolHYDa{~oM#C5c1qdJ1|D%70H&D4Yy6?QPBFZg&tFMMxYt473Bg` zG&Cndy1;CTj(##=Gyt#VMA$EblNnQ$5RpB|h-yy4+1pc`%i8H+Ps;)|W2)%k1Q3iL z{tP!pIV)%D8ChB!qKL}qI>SYZBH&}70S}xBr;X_O1w#c0yobT~wn{jIlTY}$9iMUk>&Ew{-3FjL=-IG`|Hu*SVmX)cR-*36 zpEcmgt3sOVDMT=%YukVKK%!iRe}k$MLgeWS;Hx|En-esZD3p)6X7KNBb~YM!i+;CP zq?6wDXfVl7`=^t^^Se%xKsm0xEBF}tqoW>2ZY8Z zZ?MTrX@TDmGnoj)Isz<+s2~ogggBrQ=736s1Iq0aC1M>@oAZAYj>ekIy)rEQnil$>SJ^t`vLb;*nGBO?b4a{}=r)VM`uP#1qPn5`EM)*XLa*8dRYUGW{g zp>mW1E~$&$48VOZuNxl;Tsc)$28{5qYopQ&dJl;_aEU*q(Hh)nR zt8v;rUKZB@X*R3>1zSiZa;Uqrt{m!yb%1&D0AouKu7JOY?kU0sv;>%W;W!lVFEKB4 zoY~_Qzqo(R>n|w8J|}5TK401LV6o4q50bFq|eOwQvm!6n1q`>32=KS zX^$7^q3D2((RH{&BUwOlDF2YlhDWn6{&moT;akgPbk8z~jdT{13QS9I6uAPAHoe%& zIh#qx|jb1k!wVw9wvXGA;x;0Y8~x~Q%N!Vm+uMOuud%% z#G(q>Q!QSue$0vF%MwjX!b_=o>$|TRb*+S(W(FD|a=N^cL%?Bj#|YQ+f!eS|RIlpB^s^oA5>~K_N9=D^LyQVs z-!qzHSxgHKwYcN-UW^h(jn~1w{gj)#pvLs|1y}f+;{1xZg@~oi_r~IRefb{^*WqtVH@lD33z3=z5+{Dot zygyzZua42@OW+MImjq_b9UJVbY5{8uI=lob&vNzHi*PmOJJ3$`poNA9O~e`O-t~Wy zsYX3Kkdv47IVmi5!RwnPZJ-Mub|R8cTVy@k3+i zSybSNN5t$;jiN)z0VWMFW3S8l0YFEtY@hqzJ*ip-2{n1oRSN8F-G5is<9Q zJ(HmHk{3|FW>&0jtBFdJ;9`V$pP;jaa${iS!btV8x`9tauP(W)@U-ARTrD;HS@Fr! zKkwv+>k6i2i9b2A9cqdMc=aV$8m;E|n@^MaRk6zP%cMLzEXd2%y#N zaxJ{i5ld>V$&r(ctQYRUwdnhiDqL|f!S0gqZNoA5+XPyX} z%G~^<>Z@_tE3Ump{KU;Lj5s7;_nba0+q;-(<-+j_KSM?vF9Yqgx<$g6*)keg;KsiI zkw|%0CE9qaB6<7$Gc11xaM zctZVJ&8zuKTg}ybZGYLWk4`jyOQ+*5Dnz7B7plAod1J+Al&pVO4p$ssJQy?jNkfzE zGd@<@+`H;JEUB>zkqg3(eMK_*mI&U>C3RRQg{bhonsp$*1@P3CannK^e8P;z}rH$)A*z(dmgXgs6sZSy9Sc{ zD7S^O6}xnMxhS|#G}$e8zWeiw=a;QnmRQx2rI^3f^P2;Q7CF?}qM|1WY(+iP3gV_u%PQk?gIG=y7Q z@Wdm<$L@b}a52=_<2!M{d7u2G$|6b`l7jB+W{DvX+Z?cxXs)Ff4I0ejB7cj?)ooE< z@iH~58Me_s!?JO#!jMNtiszx z)}^t_&v)(e?(x}PJ6xvY!rA3&rs$=fGxCows~bBykmTL;L(C?Ec7m^xrHUOC%|Ha9 zerd`jF%(PDDJ-7WjG`j!$@R9WNG>VIH4Q|42HFS%Bv+UUQyIC6j9#It-nDVGO_(dwOv^63ws z*65tA<;+!uMEN_+!n%f`%}(G+kSsq=M&o}IIih1^b^haXDzG}AQ)Mp&L@QQrFwOlP z)8gVgZtSnvX++27$M-bx$9(G_%Q7elgT}j*Dc3-CF5`{_`S}f~7wC7V^b`0J+R!aE zQ=>fGHESXvg`z3o`D6e1{7>GmCDAb=sU~%~jIS&_&w~$-lT>t%ZeaXSVq-HbwuOJD zHdb6+5+_wFXy5{jpR+l*tsk&KHEnvJXmX^Qs@sj?v30&$BD-{?thR2Lf-xeAYXOo) zSCC5Y+~`jVj0%>%1O z4N8Ab@K<`w2vs()crHX&{$f%QoIwdi$gN}Yzj^mUJDQ^%yLs$Ipb!smR zCrGrA!%lYoK`~S@ou%J&ff8Va>bH1+N{DSmCm(}06sOAU!ft0PEog(&uXJ63D_-lqOBk7CXzo%kX z;{ZfDuy*iDWQ1Hy$zAt2WA%S1?A-fe1d2B_eJQ!(?b1*m&IqrBqdnoV*}PpBef)97 z_aY_`84Ln?E{%r84r|UU}B{< zbitqjj7R4=C=QJ%=YtetENv85P)6OPh-oQ&) z-`i9|C6t!_>TABK?E0K156F&HO(!lm!LoBzajlJm*7`+?`ow1u)^_iEtC_D zwwmfHJl)i1+#m3hH%xQt9dP1wB*I%}e5)HT$4;veC;*^w-MLnE|B z8d>U8y$zT$&aD2Xt=$AjFZFiIC;h zA*te^SP+L}sCT&8y^-Hs=j7bD?>Q3Df-te=oIRi3O;XIXdk?0! zoa5S}i-Lb=fd8FG%Y$t&=IA0t%=INJs$aVF(C zR}}&DTlHJFd}?}*Q9Vk&q~C$wcHFS;13#ayE)A>P8Ii$`!{xA=?0yRCT)?r1MRfrBn^%^5=lszh{dY{jiEEaz!J&jG%-uhh$XJ>(VK1#q^lRY~V zdADBOb{L$uItZHn&r&=*MyteeR@v6G{FD312`7yc(;SS^TORwNsET)zB@&3TMGdes)5_rDBR=Lu7xwHo}( zVlHfR+P|r&Ak@v%c73(gB5rL-$>|zTohyHJ217+nW!Tk20!?$f7LbV`a2D}rMJF|Q zT+tlCITeNsuKL~Z?&_oo-ZBnlx@FKq4C)%7ku7(~b%c#d=AV3=8Ov3CH`bUZuve7! zZBivote@UFs2i>LB##*bL?^7hR{h$8HfTI_F;4O9ySfyi1eQ;?<#-e=Si)PU{N#Us zZS4`dMQe7T!tx;ehSDgt>or~k#vLF{nXmCG$$6|-VA&S_#lf?m-y9}ixqrPmdUkl? zem+#2fY$uQbC+p@2!glk>F({od)Vhl`Nc}cTnZF%=+33L_YEb`%mj1lhNte?7u~Pb=D!R)z$V7)0p^E0@ZI7%8{Fump;XOQMl?VOmBcT>5yqqo-HJ`f=bd zlz$Kaeh(*oVY}%SBerK4N<`esEcEz$@!ti8rxp**IqQ9Br88k=7~MX)VwkRfy_PtK z0ePj>{b0hW<82r;GA~UCqR<|a z3RMj0LFmllU19NmKQd&A7;h~3980?DX4L`llVp7a#|?pXBki%CB0b9VAqZYmdW_Hc z!J4R4d+EPL<|gLU62Bps6REHUkx|SrYL{LPs(-!9Hk6BuC8UAUi}i+o$VMrkhtI#5 zua3FC8@6~^&2RXh%~|Ma$F_ToE8yCZvcDZ$(Up8F0Yis!V5BNsdxPIGRKrawnx{XC z7}xU@MmhmS{|!-1fy=Dta9M%gn&*ago7yFtCguBi@k9PV91Uc2qJDHh|3u+?h=PCo z5wnD@r&wP~B}%NzNi=hRu5`E?yML$u_*N{p`17}H%rn`T0kI3(Ev5B3?v*~(mrNZn zEuNDgFSJQB>y7AZns4hHSyf#8g@uN_oSj3(ra_Oq*YW^4BUtb#!{M;yo)f|6G0|Ed z>>crc`(d9Cgx{Q2+ZbeCxY5l)ml#hgEF*F@faLhCtEasBts5PG8wU4gZWe@K$kNnY z*uU~q^%T$H?drCgmy=~#cSa=>sDnn&vxpPhLl&!Z9d(^O?ZpvDz3 zf`Yh3v3xwKFj@X&GD6kicklk=WLf^dBfHg8c3Vy(mb5!H)(Lj1&_= zu81At>z&3|213<;TKpO(yli;Ubp216n#F1{t)|5SW)Ku(N|$sK=&Dl({8htK>lhrc z(?L`${_@iTOt<10f%%B}#`i+z*^aRo@)N!nU4bZ^#}oxQKN9KNPlqr|JfZca6P&MP~>PUGa(3oeBx~z>pgi zD989r24&ng!~7KQ6+}WZS6>_X58XZ`Pa+{Gx^TDE#=bM&PhV2o0hB?(Q1i3AK^?1; zBSwqNUq452MzhQZ4%qD^fu>q_7jKH77$U%ees@J@o||zUDFJ{9PenK;0$TIPF#iXv zR>g(KJa`U&{h>FgijB%uB7Othc1^@FS9Fvl0~w$9Z3I8*5rMK$4*dm>-x2fRQl%02 zEB!7^Abff?dw{=n5V-~`^+_gh;IAI3p2a6^7{c;JO?-N24s*?ioZ?yN{w+m5u%@}W z>}TuVwb>XlJpp8wE5?UleLWq69J+;1sTOr-wq7oOZp+et30H@x@3`n#jY*6T8z=zo z=8Yo>zk_97smD%2sx)t4U2B6%W1VyrURyGxF4_3O*nF0Bgh=c%vWU!gASN3F!0tOz zrcn1g1=UmMb&g{Ok!X{Il5lfL6$?5D1IkcAA3ThW;(i26^MlHc2gm(^45KgJ(PdF- zhSvChpbbn&f_pCo^-1-EI8&sfp;K)k04nK-9{8(=Vs+(%CbS*FstI8$nruubBT&I@ zxuBQfjM$tM`k21|7~UJM3@iz`NkytD&m)g{ZVc0kXRREw0w09DEY& zN5>gq&6GTpSWHTO%tfW+QnQR_#G9SHtqdgM$P<^euD#8{x)Ree>stf;%oHXNXAh-^uo`;& zTXnw}7dcGU5m6OzDyrZJ3_ww$>9hxbbw3v3bNn^J|rDmBwdgSXw9M=*52uk9Lbu#+rB!6gQ z!&6ic|44rKpUK}abX#9Am(=f`B_ERC{WbX~;>P}gKjrwle;!l%pYyz75~zfKf^;k! zXru$RheRos$f=2WDRx3MA zloIOD3c8w%!DBZwckQ?aeq57=N^%@UWjZ)|aAbqGGB%wp+$`px zuakdQfYj$XS~2r^HJv{2xY*QxA)8UE!Gzt4Vh(y5Auxs6W%3ceige>9#@|;xL3vQk zKRIkyAkTXI5}9f3%e1Dl+%`zSL;T{8Yj)wx0}U5$)wh@L-czg*>^G4&Unm{U55}x> zh%R&a2hwg(Umt(uRHe1bpeJ9$EZ<8+Ar++FO-^pQbAD`figzD z(AUWFSrpeoC9<9cCXt2IKS0HY?ockfhRKIrk3b@Ch@>OEqubX(JQQ~|bjEw}8Sz%P zOTsRX9lgB+RS%1NtOi}@AdrrwMgZsY%2yT)a!6$lF&<0R8LY4_TP+AK#Bj_(d`MO% zDWR-C6={?Ys|36Pi^S1F z<9mxGbB`Qc&y!DCa(sN8d@6(IgxFU%`SfUdGnwAAfXqWr@^mr_9<3(pP`qJeSC$uV zaB0X^E-zjQS_a==HtAXD^{Ib-su0~{iPG4YL{aSOetN;||D2(JbGyF2#sJO(0$|3b zUUIW>fVr6QbkAfwL)mSzRdF0mstZpp!VfU^Qm$hS@Kko*S8zL;VCnQax;s!hwky>w z0BL4oAfK8T0L7|oDGlRJL39EpaKnoCe^Q;K@^%5mGx33)o}r(fH2bjY9gJk)QzqB3 zWS{B3OEu28xCe)S@0`HxTkod=`XcO)DqT}`h@h-EWzvpcZg$Vx*d9AntW6@w?OVtP zwW#dLe!^u*Cr_wStW&ut8;o4Is&qiHw2>j6X8EzWp`NGk%n_*9vD?9)2=mJyP1C-X`i znRdk8FyhmH$U8sqz(hO(PY&5*(RNaNyZgLceOoOL4y6n&nJW~e@}&=O(!cn1^1AZr zr|bFTf{qnTIqEEvk~Jt9L$MlDL2b%16Z^q@LK;4S)Fznhw{KqiNqv|Wei_m8vLuh< zY$1D+U{ypb<((!j9;?dpw!~;GLc`^x`{V^P#_Y_0kI{3DyJ^ls3ETxs|fP$9UTgM)Z6{j>E`J zWPDY03S2RgNlR`CB~<6vMGIPyYNKQH0A93ORu4Nj+gk1bm~`$ z5l1p#^!BQ>8zxD9?U~Z-8=Rc#i@_*QJEByS>c|}$j#eEQWFH4F5M+^gd)L36#nbhA ziI+gQ#CSA5MG#~2nAXd48((5s8oHyK!5|}dcJ+S(P)h*<9s>#h000000)v;Af~Nr} z1C)Simrk=CCis2sR1Jc7l3J(QK$hRmujg28Uno5 zmxieUPXavGm)EHQPXZX)mnf006^Z B#BTrq diff --git a/logic-programming/README.md b/logic-programming/README.md new file mode 100644 index 000000000..3952cd727 --- /dev/null +++ b/logic-programming/README.md @@ -0,0 +1,19 @@ +# Logic Programming + +- Using webized prolog which basically means that atoms can be IRIs. +- Besides top-down reasoning with `conclusion :- premise` rules, it also does bottom-up reasoning with `conclusion := premise` rules. +- Bottum-up reasoning can use `stable(n)` to fail if the deductive closure at level `n` is not yet stable. +- Proofs steps are `step((conclusion := premise), premise_inst, conclusion_inst)` and `conclusion_inst` is asserted. +- Variables are interpreted as universally quantified variables except for `conclusion := premise` conclusion-only variables which are interpreted existentially. +- Queries are posed as `true := premise` and answered as `answer(premise_inst)`. +- Inference fuses are defined as `false := premise` and blown as `fuse(premise_inst)` with return code 2. + +## Rationale for bottom-up reasoning with `conclusion := premise` rules + +- conclusion can be a conjunction +- conclusion can be `false` to blow an inference fuse +- conclusion can be `true` to pose a query +- conclusion can not be any other built-in +- conclusion-only variables are existentials +- generating proofs using `step/3` proof steps +- avoiding loops that could occur with backward chaining diff --git a/logic-programming/ackermann.pl b/logic-programming/ackermann.pl new file mode 100644 index 000000000..fa118173b --- /dev/null +++ b/logic-programming/ackermann.pl @@ -0,0 +1,45 @@ +% Ackermann function +% See https://en.wikipedia.org/wiki/Ackermann_function + +% ackermann(x, y, z) +'urn:example:ackermann'([A, B], C) :- + D is B+3, + ackermann(A, D, 2, E), + C is E-3. + +% succ (x=0) +ackermann(0, A, _, B) :- + !, + B is A+1. + +% sum (x=1) +ackermann(1, A, B, C) :- + !, + C is A+B. + +% product (x=2) +ackermann(2, A, B, C) :- + !, + C is A*B. + +% exponentiation (x=3), tetration (x=4), pentation (x=5), hexation (x=6), etc +ackermann(_, 0, _, 1) :- + !. +ackermann(A, B, C, D) :- + E is B-1, + ackermann(A, E, C, F), + G is A-1, + ackermann(G, F, C, D). + +% queries +true := 'urn:example:ackermann'([0, 6], _). +true := 'urn:example:ackermann'([1, 2], _). +true := 'urn:example:ackermann'([1, 7], _). +true := 'urn:example:ackermann'([2, 2], _). +true := 'urn:example:ackermann'([2, 9], _). +true := 'urn:example:ackermann'([3, 4], _). +true := 'urn:example:ackermann'([3, 14], _). +true := 'urn:example:ackermann'([4, 0], _). +true := 'urn:example:ackermann'([4, 1], _). +true := 'urn:example:ackermann'([4, 2], _). +true := 'urn:example:ackermann'([5, 0], _). diff --git a/logic-programming/acp.pl b/logic-programming/acp.pl new file mode 100644 index 000000000..75604388a --- /dev/null +++ b/logic-programming/acp.pl @@ -0,0 +1,51 @@ +% Access control policy example + +'urn:example:policy'('urn:example:test1', 'urn:example:PolicyX'). +'urn:example:has'('urn:example:test1', 'urn:example:A'). +'urn:example:has'('urn:example:test1', 'urn:example:B'). +'urn:example:has'('urn:example:test1', 'urn:example:C'). +'urn:example:Policy'('urn:example:PolicyX'). +'urn:example:allOf'('urn:example:PolicyX', 'urn:example:A'). +'urn:example:allOf'('urn:example:PolicyX', 'urn:example:B'). +'urn:example:anyOf'('urn:example:PolicyX', 'urn:example:C'). +'urn:example:noneOf'('urn:example:PolicyX', 'urn:example:D'). + +'urn:example:pass'(A, 'urn:example:allOfTest') :- + 'urn:example:policy'(B, A), + 'urn:example:Policy'(A), + forall( + 'urn:example:allOf'(A, C), + 'urn:example:has'(B, C) + ). + +'urn:example:pass'(A, 'urn:example:anyOfTest') :- + 'urn:example:policy'(B, A), + 'urn:example:Policy'(A), + findall(C, + ( + 'urn:example:anyOf'(A, C), + 'urn:example:has'(B, C) + ), + D + ), + length(D, E), + E \= 0. + +'urn:example:pass'(A, 'urn:example:noneOfTest') :- + 'urn:example:policy'(B, A), + 'urn:example:Policy'(A), + findall(C, + ( + 'urn:example:noneOf'(A, C), + 'urn:example:has'(B, C) + ), + D + ), + length(D, 0). + +% query +true := + 'urn:example:Policy'(A), + 'urn:example:pass'(A, 'urn:example:allOfTest'), + 'urn:example:pass'(A, 'urn:example:anyOfTest'), + 'urn:example:pass'(A, 'urn:example:noneOfTest'). diff --git a/logic-programming/age.pl b/logic-programming/age.pl new file mode 100644 index 000000000..5d18e61b2 --- /dev/null +++ b/logic-programming/age.pl @@ -0,0 +1,15 @@ +% age checker + +% person data +'urn:example:birthDay'('urn:example:patH', [1944, 8, 21]). + +% is the age of a person above some years? +'urn:example:ageAbove'(S, A) :- + 'urn:example:birthDay'(S, [Yb, Mb, Db]), + Ya is Yb+A, + date_time_stamp(date(Ya, Mb, Db, 22, 0, 0, _, _, _), Tc), + get_time(T), + Tc =< T. + +% query +true := 'urn:example:ageAbove'(_, 80). diff --git a/logic-programming/bmt.pl b/logic-programming/bmt.pl new file mode 100644 index 000000000..657b7b215 --- /dev/null +++ b/logic-programming/bmt.pl @@ -0,0 +1,10021 @@ +% Basic Monadic Benchmark +% See http://eulersharp.sourceforge.net/2014/11bmb/ + +'urn:example:i0'('urn:example:i10', 'urn:example:i96'). +'urn:example:i0'('urn:example:i12', 'urn:example:i66'). +'urn:example:i0'('urn:example:i12', 'urn:example:i9'). +'urn:example:i0'('urn:example:i13', 'urn:example:i24'). +'urn:example:i0'('urn:example:i18', 'urn:example:i81'). +'urn:example:i0'('urn:example:i19', 'urn:example:i0'). +'urn:example:i0'('urn:example:i19', 'urn:example:i63'). +'urn:example:i0'('urn:example:i21', 'urn:example:i87'). +'urn:example:i0'('urn:example:i22', 'urn:example:i30'). +'urn:example:i0'('urn:example:i23', 'urn:example:i6'). +'urn:example:i0'('urn:example:i24', 'urn:example:i21'). +'urn:example:i0'('urn:example:i24', 'urn:example:i93'). +'urn:example:i0'('urn:example:i26', 'urn:example:i18'). +'urn:example:i0'('urn:example:i26', 'urn:example:i27'). +'urn:example:i0'('urn:example:i2', 'urn:example:i12'). +'urn:example:i0'('urn:example:i2', 'urn:example:i42'). +'urn:example:i0'('urn:example:i2', 'urn:example:i9'). +'urn:example:i0'('urn:example:i32', 'urn:example:i54'). +'urn:example:i0'('urn:example:i32', 'urn:example:i63'). +'urn:example:i0'('urn:example:i32', 'urn:example:i69'). +'urn:example:i0'('urn:example:i33', 'urn:example:i12'). +'urn:example:i0'('urn:example:i33', 'urn:example:i9'). +'urn:example:i0'('urn:example:i35', 'urn:example:i42'). +'urn:example:i0'('urn:example:i38', 'urn:example:i45'). +'urn:example:i0'('urn:example:i39', 'urn:example:i27'). +'urn:example:i0'('urn:example:i3', 'urn:example:i63'). +'urn:example:i0'('urn:example:i41', 'urn:example:i45'). +'urn:example:i0'('urn:example:i41', 'urn:example:i57'). +'urn:example:i0'('urn:example:i41', 'urn:example:i60'). +'urn:example:i0'('urn:example:i43', 'urn:example:i87'). +'urn:example:i0'('urn:example:i44', 'urn:example:i12'). +'urn:example:i0'('urn:example:i44', 'urn:example:i51'). +'urn:example:i0'('urn:example:i45', 'urn:example:i42'). +'urn:example:i0'('urn:example:i45', 'urn:example:i87'). +'urn:example:i0'('urn:example:i47', 'urn:example:i63'). +'urn:example:i0'('urn:example:i47', 'urn:example:i66'). +'urn:example:i0'('urn:example:i48', 'urn:example:i15'). +'urn:example:i0'('urn:example:i48', 'urn:example:i45'). +'urn:example:i0'('urn:example:i49', 'urn:example:i51'). +'urn:example:i0'('urn:example:i49', 'urn:example:i54'). +'urn:example:i0'('urn:example:i50', 'urn:example:i90'). +'urn:example:i0'('urn:example:i53', 'urn:example:i30'). +'urn:example:i0'('urn:example:i53', 'urn:example:i42'). +'urn:example:i0'('urn:example:i54', 'urn:example:i15'). +'urn:example:i0'('urn:example:i57', 'urn:example:i18'). +'urn:example:i0'('urn:example:i59', 'urn:example:i30'). +'urn:example:i0'('urn:example:i59', 'urn:example:i81'). +'urn:example:i0'('urn:example:i5', 'urn:example:i30'). +'urn:example:i0'('urn:example:i5', 'urn:example:i69'). +'urn:example:i0'('urn:example:i61', 'urn:example:i60'). +'urn:example:i0'('urn:example:i62', 'urn:example:i0'). +'urn:example:i0'('urn:example:i65', 'urn:example:i93'). +'urn:example:i0'('urn:example:i66', 'urn:example:i0'). +'urn:example:i0'('urn:example:i66', 'urn:example:i9'). +'urn:example:i0'('urn:example:i67', 'urn:example:i21'). +'urn:example:i0'('urn:example:i68', 'urn:example:i15'). +'urn:example:i0'('urn:example:i68', 'urn:example:i57'). +'urn:example:i0'('urn:example:i68', 'urn:example:i66'). +'urn:example:i0'('urn:example:i68', 'urn:example:i93'). +'urn:example:i0'('urn:example:i69', 'urn:example:i78'). +'urn:example:i0'('urn:example:i6', 'urn:example:i6'). +'urn:example:i0'('urn:example:i70', 'urn:example:i39'). +'urn:example:i0'('urn:example:i71', 'urn:example:i48'). +'urn:example:i0'('urn:example:i71', 'urn:example:i69'). +'urn:example:i0'('urn:example:i71', 'urn:example:i84'). +'urn:example:i0'('urn:example:i71', 'urn:example:i90'). +'urn:example:i0'('urn:example:i72', 'urn:example:i6'). +'urn:example:i0'('urn:example:i73', 'urn:example:i54'). +'urn:example:i0'('urn:example:i75', 'urn:example:i84'). +'urn:example:i0'('urn:example:i76', 'urn:example:i21'). +'urn:example:i0'('urn:example:i76', 'urn:example:i54'). +'urn:example:i0'('urn:example:i76', 'urn:example:i81'). +'urn:example:i0'('urn:example:i78', 'urn:example:i6'). +'urn:example:i0'('urn:example:i78', 'urn:example:i72'). +'urn:example:i0'('urn:example:i80', 'urn:example:i33'). +'urn:example:i0'('urn:example:i81', 'urn:example:i93'). +'urn:example:i0'('urn:example:i82', 'urn:example:i51'). +'urn:example:i0'('urn:example:i83', 'urn:example:i27'). +'urn:example:i0'('urn:example:i84', 'urn:example:i75'). +'urn:example:i0'('urn:example:i85', 'urn:example:i48'). +'urn:example:i0'('urn:example:i86', 'urn:example:i24'). +'urn:example:i0'('urn:example:i86', 'urn:example:i42'). +'urn:example:i0'('urn:example:i88', 'urn:example:i81'). +'urn:example:i0'('urn:example:i88', 'urn:example:i84'). +'urn:example:i0'('urn:example:i8', 'urn:example:i3'). +'urn:example:i0'('urn:example:i8', 'urn:example:i66'). +'urn:example:i0'('urn:example:i8', 'urn:example:i90'). +'urn:example:i0'('urn:example:i91', 'urn:example:i90'). +'urn:example:i0'('urn:example:i91', 'urn:example:i99'). +'urn:example:i0'('urn:example:i93', 'urn:example:i36'). +'urn:example:i0'('urn:example:i93', 'urn:example:i90'). +'urn:example:i0'('urn:example:i95', 'urn:example:i33'). +'urn:example:i0'('urn:example:i97', 'urn:example:i81'). +'urn:example:i0'('urn:example:i97', 'urn:example:i99'). +'urn:example:i0'('urn:example:i98', 'urn:example:i72'). +'urn:example:i0'('urn:example:i9', 'urn:example:i12'). +'urn:example:i0'('urn:example:i9', 'urn:example:i12'). +'urn:example:i0'('urn:example:i9', 'urn:example:i81'). +'urn:example:i10'('urn:example:i0', 'urn:example:i24'). +'urn:example:i10'('urn:example:i0', 'urn:example:i81'). +'urn:example:i10'('urn:example:i10', 'urn:example:i51'). +'urn:example:i10'('urn:example:i12', 'urn:example:i39'). +'urn:example:i10'('urn:example:i13', 'urn:example:i33'). +'urn:example:i10'('urn:example:i13', 'urn:example:i60'). +'urn:example:i10'('urn:example:i14', 'urn:example:i81'). +'urn:example:i10'('urn:example:i15', 'urn:example:i63'). +'urn:example:i10'('urn:example:i15', 'urn:example:i78'). +'urn:example:i10'('urn:example:i16', 'urn:example:i93'). +'urn:example:i10'('urn:example:i17', 'urn:example:i30'). +'urn:example:i10'('urn:example:i17', 'urn:example:i54'). +'urn:example:i10'('urn:example:i17', 'urn:example:i87'). +'urn:example:i10'('urn:example:i18', 'urn:example:i72'). +'urn:example:i10'('urn:example:i1', 'urn:example:i30'). +'urn:example:i10'('urn:example:i1', 'urn:example:i45'). +'urn:example:i10'('urn:example:i21', 'urn:example:i69'). +'urn:example:i10'('urn:example:i22', 'urn:example:i33'). +'urn:example:i10'('urn:example:i23', 'urn:example:i9'). +'urn:example:i10'('urn:example:i23', 'urn:example:i9'). +'urn:example:i10'('urn:example:i24', 'urn:example:i39'). +'urn:example:i10'('urn:example:i27', 'urn:example:i54'). +'urn:example:i10'('urn:example:i27', 'urn:example:i57'). +'urn:example:i10'('urn:example:i27', 'urn:example:i81'). +'urn:example:i10'('urn:example:i28', 'urn:example:i69'). +'urn:example:i10'('urn:example:i28', 'urn:example:i81'). +'urn:example:i10'('urn:example:i2', 'urn:example:i0'). +'urn:example:i10'('urn:example:i2', 'urn:example:i3'). +'urn:example:i10'('urn:example:i31', 'urn:example:i99'). +'urn:example:i10'('urn:example:i33', 'urn:example:i39'). +'urn:example:i10'('urn:example:i33', 'urn:example:i87'). +'urn:example:i10'('urn:example:i36', 'urn:example:i6'). +'urn:example:i10'('urn:example:i36', 'urn:example:i75'). +'urn:example:i10'('urn:example:i36', 'urn:example:i99'). +'urn:example:i10'('urn:example:i43', 'urn:example:i57'). +'urn:example:i10'('urn:example:i45', 'urn:example:i12'). +'urn:example:i10'('urn:example:i45', 'urn:example:i24'). +'urn:example:i10'('urn:example:i48', 'urn:example:i3'). +'urn:example:i10'('urn:example:i4', 'urn:example:i0'). +'urn:example:i10'('urn:example:i51', 'urn:example:i36'). +'urn:example:i10'('urn:example:i51', 'urn:example:i66'). +'urn:example:i10'('urn:example:i52', 'urn:example:i60'). +'urn:example:i10'('urn:example:i54', 'urn:example:i21'). +'urn:example:i10'('urn:example:i55', 'urn:example:i30'). +'urn:example:i10'('urn:example:i56', 'urn:example:i27'). +'urn:example:i10'('urn:example:i56', 'urn:example:i78'). +'urn:example:i10'('urn:example:i57', 'urn:example:i48'). +'urn:example:i10'('urn:example:i57', 'urn:example:i66'). +'urn:example:i10'('urn:example:i59', 'urn:example:i84'). +'urn:example:i10'('urn:example:i5', 'urn:example:i51'). +'urn:example:i10'('urn:example:i60', 'urn:example:i15'). +'urn:example:i10'('urn:example:i60', 'urn:example:i33'). +'urn:example:i10'('urn:example:i63', 'urn:example:i48'). +'urn:example:i10'('urn:example:i64', 'urn:example:i69'). +'urn:example:i10'('urn:example:i64', 'urn:example:i81'). +'urn:example:i10'('urn:example:i64', 'urn:example:i90'). +'urn:example:i10'('urn:example:i65', 'urn:example:i33'). +'urn:example:i10'('urn:example:i66', 'urn:example:i36'). +'urn:example:i10'('urn:example:i66', 'urn:example:i39'). +'urn:example:i10'('urn:example:i67', 'urn:example:i18'). +'urn:example:i10'('urn:example:i68', 'urn:example:i6'). +'urn:example:i10'('urn:example:i69', 'urn:example:i15'). +'urn:example:i10'('urn:example:i6', 'urn:example:i24'). +'urn:example:i10'('urn:example:i70', 'urn:example:i87'). +'urn:example:i10'('urn:example:i71', 'urn:example:i15'). +'urn:example:i10'('urn:example:i71', 'urn:example:i39'). +'urn:example:i10'('urn:example:i72', 'urn:example:i63'). +'urn:example:i10'('urn:example:i72', 'urn:example:i9'). +'urn:example:i10'('urn:example:i73', 'urn:example:i39'). +'urn:example:i10'('urn:example:i73', 'urn:example:i57'). +'urn:example:i10'('urn:example:i74', 'urn:example:i36'). +'urn:example:i10'('urn:example:i78', 'urn:example:i60'). +'urn:example:i10'('urn:example:i79', 'urn:example:i0'). +'urn:example:i10'('urn:example:i7', 'urn:example:i84'). +'urn:example:i10'('urn:example:i82', 'urn:example:i27'). +'urn:example:i10'('urn:example:i83', 'urn:example:i60'). +'urn:example:i10'('urn:example:i84', 'urn:example:i66'). +'urn:example:i10'('urn:example:i84', 'urn:example:i78'). +'urn:example:i10'('urn:example:i85', 'urn:example:i63'). +'urn:example:i10'('urn:example:i86', 'urn:example:i18'). +'urn:example:i10'('urn:example:i87', 'urn:example:i15'). +'urn:example:i10'('urn:example:i88', 'urn:example:i30'). +'urn:example:i10'('urn:example:i88', 'urn:example:i45'). +'urn:example:i10'('urn:example:i89', 'urn:example:i39'). +'urn:example:i10'('urn:example:i8', 'urn:example:i15'). +'urn:example:i10'('urn:example:i90', 'urn:example:i12'). +'urn:example:i10'('urn:example:i92', 'urn:example:i51'). +'urn:example:i10'('urn:example:i92', 'urn:example:i6'). +'urn:example:i10'('urn:example:i93', 'urn:example:i45'). +'urn:example:i10'('urn:example:i94', 'urn:example:i93'). +'urn:example:i10'('urn:example:i95', 'urn:example:i36'). +'urn:example:i10'('urn:example:i95', 'urn:example:i72'). +'urn:example:i10'('urn:example:i98', 'urn:example:i21'). +'urn:example:i10'('urn:example:i98', 'urn:example:i87'). +'urn:example:i10'('urn:example:i9', 'urn:example:i12'). +'urn:example:i11'('urn:example:i0', 'urn:example:i27'). +'urn:example:i11'('urn:example:i10', 'urn:example:i39'). +'urn:example:i11'('urn:example:i11', 'urn:example:i63'). +'urn:example:i11'('urn:example:i11', 'urn:example:i93'). +'urn:example:i11'('urn:example:i12', 'urn:example:i60'). +'urn:example:i11'('urn:example:i14', 'urn:example:i48'). +'urn:example:i11'('urn:example:i14', 'urn:example:i60'). +'urn:example:i11'('urn:example:i15', 'urn:example:i30'). +'urn:example:i11'('urn:example:i17', 'urn:example:i54'). +'urn:example:i11'('urn:example:i18', 'urn:example:i78'). +'urn:example:i11'('urn:example:i1', 'urn:example:i54'). +'urn:example:i11'('urn:example:i20', 'urn:example:i51'). +'urn:example:i11'('urn:example:i22', 'urn:example:i3'). +'urn:example:i11'('urn:example:i22', 'urn:example:i69'). +'urn:example:i11'('urn:example:i22', 'urn:example:i75'). +'urn:example:i11'('urn:example:i23', 'urn:example:i24'). +'urn:example:i11'('urn:example:i23', 'urn:example:i72'). +'urn:example:i11'('urn:example:i24', 'urn:example:i57'). +'urn:example:i11'('urn:example:i25', 'urn:example:i6'). +'urn:example:i11'('urn:example:i25', 'urn:example:i9'). +'urn:example:i11'('urn:example:i26', 'urn:example:i69'). +'urn:example:i11'('urn:example:i27', 'urn:example:i54'). +'urn:example:i11'('urn:example:i28', 'urn:example:i72'). +'urn:example:i11'('urn:example:i29', 'urn:example:i54'). +'urn:example:i11'('urn:example:i29', 'urn:example:i75'). +'urn:example:i11'('urn:example:i29', 'urn:example:i81'). +'urn:example:i11'('urn:example:i2', 'urn:example:i27'). +'urn:example:i11'('urn:example:i30', 'urn:example:i78'). +'urn:example:i11'('urn:example:i32', 'urn:example:i42'). +'urn:example:i11'('urn:example:i32', 'urn:example:i66'). +'urn:example:i11'('urn:example:i32', 'urn:example:i6'). +'urn:example:i11'('urn:example:i33', 'urn:example:i36'). +'urn:example:i11'('urn:example:i33', 'urn:example:i39'). +'urn:example:i11'('urn:example:i34', 'urn:example:i96'). +'urn:example:i11'('urn:example:i34', 'urn:example:i96'). +'urn:example:i11'('urn:example:i36', 'urn:example:i0'). +'urn:example:i11'('urn:example:i37', 'urn:example:i39'). +'urn:example:i11'('urn:example:i37', 'urn:example:i96'). +'urn:example:i11'('urn:example:i39', 'urn:example:i39'). +'urn:example:i11'('urn:example:i39', 'urn:example:i90'). +'urn:example:i11'('urn:example:i3', 'urn:example:i3'). +'urn:example:i11'('urn:example:i3', 'urn:example:i84'). +'urn:example:i11'('urn:example:i40', 'urn:example:i33'). +'urn:example:i11'('urn:example:i43', 'urn:example:i51'). +'urn:example:i11'('urn:example:i44', 'urn:example:i48'). +'urn:example:i11'('urn:example:i45', 'urn:example:i51'). +'urn:example:i11'('urn:example:i45', 'urn:example:i63'). +'urn:example:i11'('urn:example:i45', 'urn:example:i96'). +'urn:example:i11'('urn:example:i47', 'urn:example:i0'). +'urn:example:i11'('urn:example:i47', 'urn:example:i57'). +'urn:example:i11'('urn:example:i47', 'urn:example:i60'). +'urn:example:i11'('urn:example:i48', 'urn:example:i90'). +'urn:example:i11'('urn:example:i49', 'urn:example:i6'). +'urn:example:i11'('urn:example:i51', 'urn:example:i0'). +'urn:example:i11'('urn:example:i51', 'urn:example:i15'). +'urn:example:i11'('urn:example:i52', 'urn:example:i27'). +'urn:example:i11'('urn:example:i52', 'urn:example:i69'). +'urn:example:i11'('urn:example:i53', 'urn:example:i21'). +'urn:example:i11'('urn:example:i53', 'urn:example:i36'). +'urn:example:i11'('urn:example:i55', 'urn:example:i87'). +'urn:example:i11'('urn:example:i56', 'urn:example:i36'). +'urn:example:i11'('urn:example:i56', 'urn:example:i3'). +'urn:example:i11'('urn:example:i58', 'urn:example:i42'). +'urn:example:i11'('urn:example:i59', 'urn:example:i48'). +'urn:example:i11'('urn:example:i5', 'urn:example:i18'). +'urn:example:i11'('urn:example:i5', 'urn:example:i21'). +'urn:example:i11'('urn:example:i60', 'urn:example:i27'). +'urn:example:i11'('urn:example:i60', 'urn:example:i54'). +'urn:example:i11'('urn:example:i61', 'urn:example:i33'). +'urn:example:i11'('urn:example:i62', 'urn:example:i21'). +'urn:example:i11'('urn:example:i63', 'urn:example:i39'). +'urn:example:i11'('urn:example:i64', 'urn:example:i69'). +'urn:example:i11'('urn:example:i65', 'urn:example:i69'). +'urn:example:i11'('urn:example:i67', 'urn:example:i87'). +'urn:example:i11'('urn:example:i68', 'urn:example:i39'). +'urn:example:i11'('urn:example:i69', 'urn:example:i81'). +'urn:example:i11'('urn:example:i70', 'urn:example:i27'). +'urn:example:i11'('urn:example:i72', 'urn:example:i39'). +'urn:example:i11'('urn:example:i72', 'urn:example:i69'). +'urn:example:i11'('urn:example:i73', 'urn:example:i0'). +'urn:example:i11'('urn:example:i75', 'urn:example:i36'). +'urn:example:i11'('urn:example:i76', 'urn:example:i45'). +'urn:example:i11'('urn:example:i77', 'urn:example:i33'). +'urn:example:i11'('urn:example:i77', 'urn:example:i87'). +'urn:example:i11'('urn:example:i78', 'urn:example:i45'). +'urn:example:i11'('urn:example:i78', 'urn:example:i6'). +'urn:example:i11'('urn:example:i81', 'urn:example:i75'). +'urn:example:i11'('urn:example:i82', 'urn:example:i27'). +'urn:example:i11'('urn:example:i84', 'urn:example:i57'). +'urn:example:i11'('urn:example:i84', 'urn:example:i60'). +'urn:example:i11'('urn:example:i87', 'urn:example:i9'). +'urn:example:i11'('urn:example:i90', 'urn:example:i0'). +'urn:example:i11'('urn:example:i90', 'urn:example:i66'). +'urn:example:i11'('urn:example:i90', 'urn:example:i6'). +'urn:example:i11'('urn:example:i92', 'urn:example:i72'). +'urn:example:i11'('urn:example:i92', 'urn:example:i78'). +'urn:example:i11'('urn:example:i94', 'urn:example:i30'). +'urn:example:i11'('urn:example:i95', 'urn:example:i42'). +'urn:example:i11'('urn:example:i95', 'urn:example:i75'). +'urn:example:i11'('urn:example:i96', 'urn:example:i54'). +'urn:example:i11'('urn:example:i98', 'urn:example:i42'). +'urn:example:i11'('urn:example:i9', 'urn:example:i36'). +'urn:example:i11'('urn:example:i9', 'urn:example:i6'). +'urn:example:i11'('urn:example:i9', 'urn:example:i75'). +'urn:example:i11'('urn:example:i9', 'urn:example:i93'). +'urn:example:i12'('urn:example:i0', 'urn:example:i6'). +'urn:example:i12'('urn:example:i0', 'urn:example:i9'). +'urn:example:i12'('urn:example:i11', 'urn:example:i0'). +'urn:example:i12'('urn:example:i12', 'urn:example:i3'). +'urn:example:i12'('urn:example:i12', 'urn:example:i75'). +'urn:example:i12'('urn:example:i13', 'urn:example:i24'). +'urn:example:i12'('urn:example:i13', 'urn:example:i75'). +'urn:example:i12'('urn:example:i14', 'urn:example:i27'). +'urn:example:i12'('urn:example:i15', 'urn:example:i45'). +'urn:example:i12'('urn:example:i17', 'urn:example:i90'). +'urn:example:i12'('urn:example:i19', 'urn:example:i3'). +'urn:example:i12'('urn:example:i1', 'urn:example:i39'). +'urn:example:i12'('urn:example:i20', 'urn:example:i57'). +'urn:example:i12'('urn:example:i20', 'urn:example:i90'). +'urn:example:i12'('urn:example:i20', 'urn:example:i93'). +'urn:example:i12'('urn:example:i21', 'urn:example:i87'). +'urn:example:i12'('urn:example:i23', 'urn:example:i96'). +'urn:example:i12'('urn:example:i25', 'urn:example:i0'). +'urn:example:i12'('urn:example:i25', 'urn:example:i27'). +'urn:example:i12'('urn:example:i25', 'urn:example:i30'). +'urn:example:i12'('urn:example:i26', 'urn:example:i33'). +'urn:example:i12'('urn:example:i28', 'urn:example:i93'). +'urn:example:i12'('urn:example:i29', 'urn:example:i0'). +'urn:example:i12'('urn:example:i30', 'urn:example:i27'). +'urn:example:i12'('urn:example:i30', 'urn:example:i33'). +'urn:example:i12'('urn:example:i30', 'urn:example:i66'). +'urn:example:i12'('urn:example:i30', 'urn:example:i84'). +'urn:example:i12'('urn:example:i30', 'urn:example:i96'). +'urn:example:i12'('urn:example:i31', 'urn:example:i12'). +'urn:example:i12'('urn:example:i31', 'urn:example:i45'). +'urn:example:i12'('urn:example:i31', 'urn:example:i78'). +'urn:example:i12'('urn:example:i33', 'urn:example:i9'). +'urn:example:i12'('urn:example:i34', 'urn:example:i15'). +'urn:example:i12'('urn:example:i35', 'urn:example:i18'). +'urn:example:i12'('urn:example:i35', 'urn:example:i45'). +'urn:example:i12'('urn:example:i35', 'urn:example:i48'). +'urn:example:i12'('urn:example:i36', 'urn:example:i0'). +'urn:example:i12'('urn:example:i36', 'urn:example:i3'). +'urn:example:i12'('urn:example:i37', 'urn:example:i18'). +'urn:example:i12'('urn:example:i37', 'urn:example:i39'). +'urn:example:i12'('urn:example:i38', 'urn:example:i69'). +'urn:example:i12'('urn:example:i39', 'urn:example:i42'). +'urn:example:i12'('urn:example:i39', 'urn:example:i78'). +'urn:example:i12'('urn:example:i3', 'urn:example:i18'). +'urn:example:i12'('urn:example:i3', 'urn:example:i54'). +'urn:example:i12'('urn:example:i3', 'urn:example:i81'). +'urn:example:i12'('urn:example:i40', 'urn:example:i18'). +'urn:example:i12'('urn:example:i40', 'urn:example:i96'). +'urn:example:i12'('urn:example:i42', 'urn:example:i9'). +'urn:example:i12'('urn:example:i45', 'urn:example:i12'). +'urn:example:i12'('urn:example:i45', 'urn:example:i45'). +'urn:example:i12'('urn:example:i46', 'urn:example:i57'). +'urn:example:i12'('urn:example:i49', 'urn:example:i24'). +'urn:example:i12'('urn:example:i4', 'urn:example:i0'). +'urn:example:i12'('urn:example:i51', 'urn:example:i24'). +'urn:example:i12'('urn:example:i51', 'urn:example:i69'). +'urn:example:i12'('urn:example:i52', 'urn:example:i15'). +'urn:example:i12'('urn:example:i52', 'urn:example:i78'). +'urn:example:i12'('urn:example:i55', 'urn:example:i12'). +'urn:example:i12'('urn:example:i55', 'urn:example:i39'). +'urn:example:i12'('urn:example:i55', 'urn:example:i57'). +'urn:example:i12'('urn:example:i56', 'urn:example:i3'). +'urn:example:i12'('urn:example:i56', 'urn:example:i42'). +'urn:example:i12'('urn:example:i57', 'urn:example:i0'). +'urn:example:i12'('urn:example:i57', 'urn:example:i27'). +'urn:example:i12'('urn:example:i57', 'urn:example:i96'). +'urn:example:i12'('urn:example:i58', 'urn:example:i60'). +'urn:example:i12'('urn:example:i60', 'urn:example:i72'). +'urn:example:i12'('urn:example:i60', 'urn:example:i99'). +'urn:example:i12'('urn:example:i61', 'urn:example:i18'). +'urn:example:i12'('urn:example:i61', 'urn:example:i24'). +'urn:example:i12'('urn:example:i62', 'urn:example:i57'). +'urn:example:i12'('urn:example:i63', 'urn:example:i69'). +'urn:example:i12'('urn:example:i63', 'urn:example:i81'). +'urn:example:i12'('urn:example:i64', 'urn:example:i0'). +'urn:example:i12'('urn:example:i64', 'urn:example:i93'). +'urn:example:i12'('urn:example:i65', 'urn:example:i81'). +'urn:example:i12'('urn:example:i65', 'urn:example:i87'). +'urn:example:i12'('urn:example:i66', 'urn:example:i66'). +'urn:example:i12'('urn:example:i67', 'urn:example:i60'). +'urn:example:i12'('urn:example:i69', 'urn:example:i15'). +'urn:example:i12'('urn:example:i69', 'urn:example:i24'). +'urn:example:i12'('urn:example:i69', 'urn:example:i33'). +'urn:example:i12'('urn:example:i69', 'urn:example:i39'). +'urn:example:i12'('urn:example:i6', 'urn:example:i24'). +'urn:example:i12'('urn:example:i70', 'urn:example:i21'). +'urn:example:i12'('urn:example:i70', 'urn:example:i63'). +'urn:example:i12'('urn:example:i70', 'urn:example:i66'). +'urn:example:i12'('urn:example:i70', 'urn:example:i81'). +'urn:example:i12'('urn:example:i71', 'urn:example:i27'). +'urn:example:i12'('urn:example:i71', 'urn:example:i63'). +'urn:example:i12'('urn:example:i72', 'urn:example:i66'). +'urn:example:i12'('urn:example:i72', 'urn:example:i6'). +'urn:example:i12'('urn:example:i72', 'urn:example:i87'). +'urn:example:i12'('urn:example:i74', 'urn:example:i30'). +'urn:example:i12'('urn:example:i74', 'urn:example:i54'). +'urn:example:i12'('urn:example:i77', 'urn:example:i15'). +'urn:example:i12'('urn:example:i77', 'urn:example:i78'). +'urn:example:i12'('urn:example:i78', 'urn:example:i21'). +'urn:example:i12'('urn:example:i79', 'urn:example:i0'). +'urn:example:i12'('urn:example:i79', 'urn:example:i6'). +'urn:example:i12'('urn:example:i7', 'urn:example:i24'). +'urn:example:i12'('urn:example:i80', 'urn:example:i12'). +'urn:example:i12'('urn:example:i83', 'urn:example:i78'). +'urn:example:i12'('urn:example:i84', 'urn:example:i72'). +'urn:example:i12'('urn:example:i84', 'urn:example:i90'). +'urn:example:i12'('urn:example:i86', 'urn:example:i63'). +'urn:example:i12'('urn:example:i87', 'urn:example:i12'). +'urn:example:i12'('urn:example:i88', 'urn:example:i69'). +'urn:example:i12'('urn:example:i8', 'urn:example:i78'). +'urn:example:i12'('urn:example:i92', 'urn:example:i9'). +'urn:example:i12'('urn:example:i93', 'urn:example:i66'). +'urn:example:i12'('urn:example:i94', 'urn:example:i75'). +'urn:example:i12'('urn:example:i95', 'urn:example:i12'). +'urn:example:i12'('urn:example:i95', 'urn:example:i60'). +'urn:example:i12'('urn:example:i96', 'urn:example:i24'). +'urn:example:i12'('urn:example:i96', 'urn:example:i63'). +'urn:example:i12'('urn:example:i96', 'urn:example:i93'). +'urn:example:i12'('urn:example:i99', 'urn:example:i3'). +'urn:example:i12'('urn:example:i99', 'urn:example:i66'). +'urn:example:i12'('urn:example:i9', 'urn:example:i27'). +'urn:example:i13'('urn:example:i0', 'urn:example:i84'). +'urn:example:i13'('urn:example:i12', 'urn:example:i60'). +'urn:example:i13'('urn:example:i15', 'urn:example:i3'). +'urn:example:i13'('urn:example:i16', 'urn:example:i27'). +'urn:example:i13'('urn:example:i16', 'urn:example:i3'). +'urn:example:i13'('urn:example:i16', 'urn:example:i60'). +'urn:example:i13'('urn:example:i17', 'urn:example:i63'). +'urn:example:i13'('urn:example:i18', 'urn:example:i51'). +'urn:example:i13'('urn:example:i19', 'urn:example:i27'). +'urn:example:i13'('urn:example:i19', 'urn:example:i51'). +'urn:example:i13'('urn:example:i20', 'urn:example:i60'). +'urn:example:i13'('urn:example:i22', 'urn:example:i51'). +'urn:example:i13'('urn:example:i23', 'urn:example:i42'). +'urn:example:i13'('urn:example:i25', 'urn:example:i24'). +'urn:example:i13'('urn:example:i25', 'urn:example:i27'). +'urn:example:i13'('urn:example:i26', 'urn:example:i84'). +'urn:example:i13'('urn:example:i27', 'urn:example:i54'). +'urn:example:i13'('urn:example:i27', 'urn:example:i84'). +'urn:example:i13'('urn:example:i2', 'urn:example:i21'). +'urn:example:i13'('urn:example:i2', 'urn:example:i93'). +'urn:example:i13'('urn:example:i30', 'urn:example:i15'). +'urn:example:i13'('urn:example:i30', 'urn:example:i39'). +'urn:example:i13'('urn:example:i32', 'urn:example:i51'). +'urn:example:i13'('urn:example:i33', 'urn:example:i87'). +'urn:example:i13'('urn:example:i36', 'urn:example:i21'). +'urn:example:i13'('urn:example:i36', 'urn:example:i63'). +'urn:example:i13'('urn:example:i37', 'urn:example:i57'). +'urn:example:i13'('urn:example:i37', 'urn:example:i75'). +'urn:example:i13'('urn:example:i39', 'urn:example:i9'). +'urn:example:i13'('urn:example:i41', 'urn:example:i21'). +'urn:example:i13'('urn:example:i41', 'urn:example:i30'). +'urn:example:i13'('urn:example:i41', 'urn:example:i42'). +'urn:example:i13'('urn:example:i41', 'urn:example:i60'). +'urn:example:i13'('urn:example:i41', 'urn:example:i69'). +'urn:example:i13'('urn:example:i43', 'urn:example:i21'). +'urn:example:i13'('urn:example:i43', 'urn:example:i48'). +'urn:example:i13'('urn:example:i43', 'urn:example:i78'). +'urn:example:i13'('urn:example:i45', 'urn:example:i48'). +'urn:example:i13'('urn:example:i45', 'urn:example:i48'). +'urn:example:i13'('urn:example:i47', 'urn:example:i21'). +'urn:example:i13'('urn:example:i47', 'urn:example:i69'). +'urn:example:i13'('urn:example:i47', 'urn:example:i9'). +'urn:example:i13'('urn:example:i48', 'urn:example:i15'). +'urn:example:i13'('urn:example:i48', 'urn:example:i24'). +'urn:example:i13'('urn:example:i48', 'urn:example:i78'). +'urn:example:i13'('urn:example:i4', 'urn:example:i60'). +'urn:example:i13'('urn:example:i50', 'urn:example:i48'). +'urn:example:i13'('urn:example:i50', 'urn:example:i81'). +'urn:example:i13'('urn:example:i52', 'urn:example:i21'). +'urn:example:i13'('urn:example:i52', 'urn:example:i54'). +'urn:example:i13'('urn:example:i54', 'urn:example:i78'). +'urn:example:i13'('urn:example:i57', 'urn:example:i15'). +'urn:example:i13'('urn:example:i57', 'urn:example:i84'). +'urn:example:i13'('urn:example:i58', 'urn:example:i30'). +'urn:example:i13'('urn:example:i58', 'urn:example:i72'). +'urn:example:i13'('urn:example:i59', 'urn:example:i48'). +'urn:example:i13'('urn:example:i60', 'urn:example:i12'). +'urn:example:i13'('urn:example:i60', 'urn:example:i42'). +'urn:example:i13'('urn:example:i62', 'urn:example:i72'). +'urn:example:i13'('urn:example:i64', 'urn:example:i12'). +'urn:example:i13'('urn:example:i65', 'urn:example:i33'). +'urn:example:i13'('urn:example:i65', 'urn:example:i51'). +'urn:example:i13'('urn:example:i66', 'urn:example:i90'). +'urn:example:i13'('urn:example:i67', 'urn:example:i39'). +'urn:example:i13'('urn:example:i67', 'urn:example:i66'). +'urn:example:i13'('urn:example:i68', 'urn:example:i21'). +'urn:example:i13'('urn:example:i68', 'urn:example:i66'). +'urn:example:i13'('urn:example:i68', 'urn:example:i75'). +'urn:example:i13'('urn:example:i6', 'urn:example:i66'). +'urn:example:i13'('urn:example:i71', 'urn:example:i54'). +'urn:example:i13'('urn:example:i71', 'urn:example:i84'). +'urn:example:i13'('urn:example:i72', 'urn:example:i48'). +'urn:example:i13'('urn:example:i74', 'urn:example:i78'). +'urn:example:i13'('urn:example:i75', 'urn:example:i24'). +'urn:example:i13'('urn:example:i76', 'urn:example:i84'). +'urn:example:i13'('urn:example:i78', 'urn:example:i42'). +'urn:example:i13'('urn:example:i78', 'urn:example:i81'). +'urn:example:i13'('urn:example:i79', 'urn:example:i42'). +'urn:example:i13'('urn:example:i79', 'urn:example:i81'). +'urn:example:i13'('urn:example:i79', 'urn:example:i90'). +'urn:example:i13'('urn:example:i7', 'urn:example:i24'). +'urn:example:i13'('urn:example:i80', 'urn:example:i33'). +'urn:example:i13'('urn:example:i81', 'urn:example:i87'). +'urn:example:i13'('urn:example:i82', 'urn:example:i69'). +'urn:example:i13'('urn:example:i83', 'urn:example:i0'). +'urn:example:i13'('urn:example:i83', 'urn:example:i63'). +'urn:example:i13'('urn:example:i83', 'urn:example:i93'). +'urn:example:i13'('urn:example:i85', 'urn:example:i33'). +'urn:example:i13'('urn:example:i85', 'urn:example:i60'). +'urn:example:i13'('urn:example:i86', 'urn:example:i12'). +'urn:example:i13'('urn:example:i87', 'urn:example:i45'). +'urn:example:i13'('urn:example:i88', 'urn:example:i21'). +'urn:example:i13'('urn:example:i89', 'urn:example:i87'). +'urn:example:i13'('urn:example:i90', 'urn:example:i60'). +'urn:example:i13'('urn:example:i91', 'urn:example:i87'). +'urn:example:i13'('urn:example:i94', 'urn:example:i66'). +'urn:example:i13'('urn:example:i95', 'urn:example:i54'). +'urn:example:i13'('urn:example:i97', 'urn:example:i96'). +'urn:example:i13'('urn:example:i97', 'urn:example:i96'). +'urn:example:i13'('urn:example:i99', 'urn:example:i3'). +'urn:example:i14'('urn:example:i0', 'urn:example:i48'). +'urn:example:i14'('urn:example:i10', 'urn:example:i54'). +'urn:example:i14'('urn:example:i10', 'urn:example:i66'). +'urn:example:i14'('urn:example:i10', 'urn:example:i75'). +'urn:example:i14'('urn:example:i11', 'urn:example:i3'). +'urn:example:i14'('urn:example:i12', 'urn:example:i15'). +'urn:example:i14'('urn:example:i14', 'urn:example:i24'). +'urn:example:i14'('urn:example:i14', 'urn:example:i84'). +'urn:example:i14'('urn:example:i14', 'urn:example:i87'). +'urn:example:i14'('urn:example:i15', 'urn:example:i48'). +'urn:example:i14'('urn:example:i18', 'urn:example:i21'). +'urn:example:i14'('urn:example:i18', 'urn:example:i66'). +'urn:example:i14'('urn:example:i1', 'urn:example:i42'). +'urn:example:i14'('urn:example:i20', 'urn:example:i18'). +'urn:example:i14'('urn:example:i20', 'urn:example:i54'). +'urn:example:i14'('urn:example:i20', 'urn:example:i78'). +'urn:example:i14'('urn:example:i21', 'urn:example:i69'). +'urn:example:i14'('urn:example:i22', 'urn:example:i3'). +'urn:example:i14'('urn:example:i23', 'urn:example:i84'). +'urn:example:i14'('urn:example:i26', 'urn:example:i75'). +'urn:example:i14'('urn:example:i2', 'urn:example:i45'). +'urn:example:i14'('urn:example:i2', 'urn:example:i51'). +'urn:example:i14'('urn:example:i30', 'urn:example:i33'). +'urn:example:i14'('urn:example:i31', 'urn:example:i63'). +'urn:example:i14'('urn:example:i31', 'urn:example:i75'). +'urn:example:i14'('urn:example:i35', 'urn:example:i75'). +'urn:example:i14'('urn:example:i35', 'urn:example:i9'). +'urn:example:i14'('urn:example:i36', 'urn:example:i87'). +'urn:example:i14'('urn:example:i37', 'urn:example:i81'). +'urn:example:i14'('urn:example:i38', 'urn:example:i36'). +'urn:example:i14'('urn:example:i3', 'urn:example:i33'). +'urn:example:i14'('urn:example:i3', 'urn:example:i90'). +'urn:example:i14'('urn:example:i40', 'urn:example:i24'). +'urn:example:i14'('urn:example:i41', 'urn:example:i87'). +'urn:example:i14'('urn:example:i42', 'urn:example:i36'). +'urn:example:i14'('urn:example:i43', 'urn:example:i96'). +'urn:example:i14'('urn:example:i45', 'urn:example:i57'). +'urn:example:i14'('urn:example:i45', 'urn:example:i75'). +'urn:example:i14'('urn:example:i45', 'urn:example:i78'). +'urn:example:i14'('urn:example:i46', 'urn:example:i0'). +'urn:example:i14'('urn:example:i47', 'urn:example:i6'). +'urn:example:i14'('urn:example:i47', 'urn:example:i75'). +'urn:example:i14'('urn:example:i4', 'urn:example:i81'). +'urn:example:i14'('urn:example:i4', 'urn:example:i90'). +'urn:example:i14'('urn:example:i50', 'urn:example:i12'). +'urn:example:i14'('urn:example:i51', 'urn:example:i21'). +'urn:example:i14'('urn:example:i52', 'urn:example:i60'). +'urn:example:i14'('urn:example:i53', 'urn:example:i6'). +'urn:example:i14'('urn:example:i54', 'urn:example:i0'). +'urn:example:i14'('urn:example:i55', 'urn:example:i9'). +'urn:example:i14'('urn:example:i56', 'urn:example:i3'). +'urn:example:i14'('urn:example:i58', 'urn:example:i21'). +'urn:example:i14'('urn:example:i58', 'urn:example:i90'). +'urn:example:i14'('urn:example:i59', 'urn:example:i27'). +'urn:example:i14'('urn:example:i60', 'urn:example:i57'). +'urn:example:i14'('urn:example:i60', 'urn:example:i81'). +'urn:example:i14'('urn:example:i60', 'urn:example:i93'). +'urn:example:i14'('urn:example:i63', 'urn:example:i27'). +'urn:example:i14'('urn:example:i63', 'urn:example:i33'). +'urn:example:i14'('urn:example:i63', 'urn:example:i3'). +'urn:example:i14'('urn:example:i63', 'urn:example:i66'). +'urn:example:i14'('urn:example:i66', 'urn:example:i3'). +'urn:example:i14'('urn:example:i72', 'urn:example:i15'). +'urn:example:i14'('urn:example:i72', 'urn:example:i36'). +'urn:example:i14'('urn:example:i72', 'urn:example:i78'). +'urn:example:i14'('urn:example:i75', 'urn:example:i48'). +'urn:example:i14'('urn:example:i78', 'urn:example:i30'). +'urn:example:i14'('urn:example:i78', 'urn:example:i33'). +'urn:example:i14'('urn:example:i78', 'urn:example:i48'). +'urn:example:i14'('urn:example:i79', 'urn:example:i39'). +'urn:example:i14'('urn:example:i7', 'urn:example:i78'). +'urn:example:i14'('urn:example:i82', 'urn:example:i84'). +'urn:example:i14'('urn:example:i82', 'urn:example:i87'). +'urn:example:i14'('urn:example:i84', 'urn:example:i3'). +'urn:example:i14'('urn:example:i84', 'urn:example:i57'). +'urn:example:i14'('urn:example:i84', 'urn:example:i63'). +'urn:example:i14'('urn:example:i84', 'urn:example:i87'). +'urn:example:i14'('urn:example:i85', 'urn:example:i90'). +'urn:example:i14'('urn:example:i85', 'urn:example:i93'). +'urn:example:i14'('urn:example:i86', 'urn:example:i90'). +'urn:example:i14'('urn:example:i87', 'urn:example:i18'). +'urn:example:i14'('urn:example:i87', 'urn:example:i99'). +'urn:example:i14'('urn:example:i88', 'urn:example:i54'). +'urn:example:i14'('urn:example:i8', 'urn:example:i3'). +'urn:example:i14'('urn:example:i90', 'urn:example:i48'). +'urn:example:i14'('urn:example:i91', 'urn:example:i78'). +'urn:example:i14'('urn:example:i92', 'urn:example:i63'). +'urn:example:i14'('urn:example:i94', 'urn:example:i57'). +'urn:example:i14'('urn:example:i94', 'urn:example:i66'). +'urn:example:i14'('urn:example:i95', 'urn:example:i27'). +'urn:example:i14'('urn:example:i95', 'urn:example:i57'). +'urn:example:i14'('urn:example:i95', 'urn:example:i66'). +'urn:example:i14'('urn:example:i95', 'urn:example:i69'). +'urn:example:i14'('urn:example:i97', 'urn:example:i33'). +'urn:example:i14'('urn:example:i98', 'urn:example:i60'). +'urn:example:i14'('urn:example:i99', 'urn:example:i30'). +'urn:example:i15'('urn:example:i0', 'urn:example:i51'). +'urn:example:i15'('urn:example:i11', 'urn:example:i66'). +'urn:example:i15'('urn:example:i13', 'urn:example:i45'). +'urn:example:i15'('urn:example:i14', 'urn:example:i78'). +'urn:example:i15'('urn:example:i14', 'urn:example:i96'). +'urn:example:i15'('urn:example:i15', 'urn:example:i27'). +'urn:example:i15'('urn:example:i16', 'urn:example:i48'). +'urn:example:i15'('urn:example:i1', 'urn:example:i12'). +'urn:example:i15'('urn:example:i21', 'urn:example:i87'). +'urn:example:i15'('urn:example:i22', 'urn:example:i30'). +'urn:example:i15'('urn:example:i22', 'urn:example:i66'). +'urn:example:i15'('urn:example:i23', 'urn:example:i48'). +'urn:example:i15'('urn:example:i23', 'urn:example:i57'). +'urn:example:i15'('urn:example:i24', 'urn:example:i54'). +'urn:example:i15'('urn:example:i25', 'urn:example:i72'). +'urn:example:i15'('urn:example:i26', 'urn:example:i39'). +'urn:example:i15'('urn:example:i26', 'urn:example:i99'). +'urn:example:i15'('urn:example:i27', 'urn:example:i6'). +'urn:example:i15'('urn:example:i28', 'urn:example:i63'). +'urn:example:i15'('urn:example:i29', 'urn:example:i12'). +'urn:example:i15'('urn:example:i2', 'urn:example:i12'). +'urn:example:i15'('urn:example:i2', 'urn:example:i42'). +'urn:example:i15'('urn:example:i30', 'urn:example:i90'). +'urn:example:i15'('urn:example:i31', 'urn:example:i51'). +'urn:example:i15'('urn:example:i36', 'urn:example:i15'). +'urn:example:i15'('urn:example:i36', 'urn:example:i60'). +'urn:example:i15'('urn:example:i36', 'urn:example:i96'). +'urn:example:i15'('urn:example:i36', 'urn:example:i99'). +'urn:example:i15'('urn:example:i38', 'urn:example:i18'). +'urn:example:i15'('urn:example:i39', 'urn:example:i78'). +'urn:example:i15'('urn:example:i40', 'urn:example:i15'). +'urn:example:i15'('urn:example:i42', 'urn:example:i99'). +'urn:example:i15'('urn:example:i44', 'urn:example:i27'). +'urn:example:i15'('urn:example:i45', 'urn:example:i57'). +'urn:example:i15'('urn:example:i47', 'urn:example:i66'). +'urn:example:i15'('urn:example:i47', 'urn:example:i9'). +'urn:example:i15'('urn:example:i50', 'urn:example:i36'). +'urn:example:i15'('urn:example:i55', 'urn:example:i42'). +'urn:example:i15'('urn:example:i55', 'urn:example:i66'). +'urn:example:i15'('urn:example:i56', 'urn:example:i69'). +'urn:example:i15'('urn:example:i56', 'urn:example:i90'). +'urn:example:i15'('urn:example:i58', 'urn:example:i42'). +'urn:example:i15'('urn:example:i58', 'urn:example:i72'). +'urn:example:i15'('urn:example:i59', 'urn:example:i39'). +'urn:example:i15'('urn:example:i5', 'urn:example:i18'). +'urn:example:i15'('urn:example:i5', 'urn:example:i90'). +'urn:example:i15'('urn:example:i60', 'urn:example:i69'). +'urn:example:i15'('urn:example:i61', 'urn:example:i9'). +'urn:example:i15'('urn:example:i62', 'urn:example:i57'). +'urn:example:i15'('urn:example:i63', 'urn:example:i15'). +'urn:example:i15'('urn:example:i64', 'urn:example:i60'). +'urn:example:i15'('urn:example:i64', 'urn:example:i84'). +'urn:example:i15'('urn:example:i65', 'urn:example:i39'). +'urn:example:i15'('urn:example:i65', 'urn:example:i9'). +'urn:example:i15'('urn:example:i66', 'urn:example:i90'). +'urn:example:i15'('urn:example:i68', 'urn:example:i33'). +'urn:example:i15'('urn:example:i68', 'urn:example:i87'). +'urn:example:i15'('urn:example:i6', 'urn:example:i48'). +'urn:example:i15'('urn:example:i6', 'urn:example:i54'). +'urn:example:i15'('urn:example:i70', 'urn:example:i60'). +'urn:example:i15'('urn:example:i73', 'urn:example:i45'). +'urn:example:i15'('urn:example:i73', 'urn:example:i6'). +'urn:example:i15'('urn:example:i74', 'urn:example:i66'). +'urn:example:i15'('urn:example:i77', 'urn:example:i48'). +'urn:example:i15'('urn:example:i77', 'urn:example:i66'). +'urn:example:i15'('urn:example:i7', 'urn:example:i21'). +'urn:example:i15'('urn:example:i80', 'urn:example:i15'). +'urn:example:i15'('urn:example:i81', 'urn:example:i48'). +'urn:example:i15'('urn:example:i81', 'urn:example:i51'). +'urn:example:i15'('urn:example:i81', 'urn:example:i66'). +'urn:example:i15'('urn:example:i83', 'urn:example:i90'). +'urn:example:i15'('urn:example:i84', 'urn:example:i60'). +'urn:example:i15'('urn:example:i84', 'urn:example:i60'). +'urn:example:i15'('urn:example:i86', 'urn:example:i78'). +'urn:example:i15'('urn:example:i86', 'urn:example:i96'). +'urn:example:i15'('urn:example:i87', 'urn:example:i36'). +'urn:example:i15'('urn:example:i88', 'urn:example:i96'). +'urn:example:i15'('urn:example:i8', 'urn:example:i18'). +'urn:example:i15'('urn:example:i90', 'urn:example:i87'). +'urn:example:i15'('urn:example:i90', 'urn:example:i93'). +'urn:example:i15'('urn:example:i92', 'urn:example:i75'). +'urn:example:i15'('urn:example:i93', 'urn:example:i63'). +'urn:example:i15'('urn:example:i95', 'urn:example:i81'). +'urn:example:i15'('urn:example:i96', 'urn:example:i36'). +'urn:example:i15'('urn:example:i96', 'urn:example:i96'). +'urn:example:i15'('urn:example:i97', 'urn:example:i18'). +'urn:example:i15'('urn:example:i97', 'urn:example:i6'). +'urn:example:i15'('urn:example:i98', 'urn:example:i75'). +'urn:example:i15'('urn:example:i9', 'urn:example:i9'). +'urn:example:i16'('urn:example:i10', 'urn:example:i60'). +'urn:example:i16'('urn:example:i11', 'urn:example:i24'). +'urn:example:i16'('urn:example:i11', 'urn:example:i72'). +'urn:example:i16'('urn:example:i14', 'urn:example:i3'). +'urn:example:i16'('urn:example:i14', 'urn:example:i6'). +'urn:example:i16'('urn:example:i15', 'urn:example:i60'). +'urn:example:i16'('urn:example:i16', 'urn:example:i36'). +'urn:example:i16'('urn:example:i16', 'urn:example:i72'). +'urn:example:i16'('urn:example:i17', 'urn:example:i51'). +'urn:example:i16'('urn:example:i17', 'urn:example:i93'). +'urn:example:i16'('urn:example:i18', 'urn:example:i57'). +'urn:example:i16'('urn:example:i18', 'urn:example:i81'). +'urn:example:i16'('urn:example:i19', 'urn:example:i12'). +'urn:example:i16'('urn:example:i19', 'urn:example:i36'). +'urn:example:i16'('urn:example:i19', 'urn:example:i6'). +'urn:example:i16'('urn:example:i1', 'urn:example:i12'). +'urn:example:i16'('urn:example:i20', 'urn:example:i45'). +'urn:example:i16'('urn:example:i20', 'urn:example:i6'). +'urn:example:i16'('urn:example:i21', 'urn:example:i18'). +'urn:example:i16'('urn:example:i21', 'urn:example:i42'). +'urn:example:i16'('urn:example:i22', 'urn:example:i18'). +'urn:example:i16'('urn:example:i23', 'urn:example:i72'). +'urn:example:i16'('urn:example:i24', 'urn:example:i60'). +'urn:example:i16'('urn:example:i25', 'urn:example:i45'). +'urn:example:i16'('urn:example:i25', 'urn:example:i84'). +'urn:example:i16'('urn:example:i27', 'urn:example:i93'). +'urn:example:i16'('urn:example:i28', 'urn:example:i66'). +'urn:example:i16'('urn:example:i2', 'urn:example:i84'). +'urn:example:i16'('urn:example:i32', 'urn:example:i27'). +'urn:example:i16'('urn:example:i34', 'urn:example:i15'). +'urn:example:i16'('urn:example:i34', 'urn:example:i96'). +'urn:example:i16'('urn:example:i35', 'urn:example:i87'). +'urn:example:i16'('urn:example:i37', 'urn:example:i30'). +'urn:example:i16'('urn:example:i37', 'urn:example:i81'). +'urn:example:i16'('urn:example:i37', 'urn:example:i90'). +'urn:example:i16'('urn:example:i38', 'urn:example:i63'). +'urn:example:i16'('urn:example:i38', 'urn:example:i93'). +'urn:example:i16'('urn:example:i39', 'urn:example:i42'). +'urn:example:i16'('urn:example:i39', 'urn:example:i45'). +'urn:example:i16'('urn:example:i39', 'urn:example:i87'). +'urn:example:i16'('urn:example:i40', 'urn:example:i69'). +'urn:example:i16'('urn:example:i41', 'urn:example:i45'). +'urn:example:i16'('urn:example:i41', 'urn:example:i45'). +'urn:example:i16'('urn:example:i41', 'urn:example:i75'). +'urn:example:i16'('urn:example:i42', 'urn:example:i45'). +'urn:example:i16'('urn:example:i44', 'urn:example:i45'). +'urn:example:i16'('urn:example:i44', 'urn:example:i87'). +'urn:example:i16'('urn:example:i45', 'urn:example:i93'). +'urn:example:i16'('urn:example:i46', 'urn:example:i63'). +'urn:example:i16'('urn:example:i47', 'urn:example:i36'). +'urn:example:i16'('urn:example:i48', 'urn:example:i54'). +'urn:example:i16'('urn:example:i50', 'urn:example:i39'). +'urn:example:i16'('urn:example:i53', 'urn:example:i36'). +'urn:example:i16'('urn:example:i53', 'urn:example:i63'). +'urn:example:i16'('urn:example:i53', 'urn:example:i84'). +'urn:example:i16'('urn:example:i55', 'urn:example:i57'). +'urn:example:i16'('urn:example:i56', 'urn:example:i33'). +'urn:example:i16'('urn:example:i56', 'urn:example:i87'). +'urn:example:i16'('urn:example:i58', 'urn:example:i45'). +'urn:example:i16'('urn:example:i58', 'urn:example:i48'). +'urn:example:i16'('urn:example:i58', 'urn:example:i81'). +'urn:example:i16'('urn:example:i5', 'urn:example:i60'). +'urn:example:i16'('urn:example:i5', 'urn:example:i9'). +'urn:example:i16'('urn:example:i61', 'urn:example:i93'). +'urn:example:i16'('urn:example:i62', 'urn:example:i48'). +'urn:example:i16'('urn:example:i62', 'urn:example:i96'). +'urn:example:i16'('urn:example:i63', 'urn:example:i21'). +'urn:example:i16'('urn:example:i63', 'urn:example:i48'). +'urn:example:i16'('urn:example:i65', 'urn:example:i0'). +'urn:example:i16'('urn:example:i66', 'urn:example:i60'). +'urn:example:i16'('urn:example:i66', 'urn:example:i6'). +'urn:example:i16'('urn:example:i67', 'urn:example:i12'). +'urn:example:i16'('urn:example:i69', 'urn:example:i54'). +'urn:example:i16'('urn:example:i69', 'urn:example:i57'). +'urn:example:i16'('urn:example:i69', 'urn:example:i60'). +'urn:example:i16'('urn:example:i69', 'urn:example:i81'). +'urn:example:i16'('urn:example:i70', 'urn:example:i63'). +'urn:example:i16'('urn:example:i71', 'urn:example:i66'). +'urn:example:i16'('urn:example:i71', 'urn:example:i78'). +'urn:example:i16'('urn:example:i73', 'urn:example:i60'). +'urn:example:i16'('urn:example:i76', 'urn:example:i84'). +'urn:example:i16'('urn:example:i77', 'urn:example:i36'). +'urn:example:i16'('urn:example:i78', 'urn:example:i87'). +'urn:example:i16'('urn:example:i79', 'urn:example:i15'). +'urn:example:i16'('urn:example:i79', 'urn:example:i30'). +'urn:example:i16'('urn:example:i79', 'urn:example:i63'). +'urn:example:i16'('urn:example:i7', 'urn:example:i54'). +'urn:example:i16'('urn:example:i7', 'urn:example:i78'). +'urn:example:i16'('urn:example:i80', 'urn:example:i69'). +'urn:example:i16'('urn:example:i81', 'urn:example:i24'). +'urn:example:i16'('urn:example:i82', 'urn:example:i15'). +'urn:example:i16'('urn:example:i82', 'urn:example:i48'). +'urn:example:i16'('urn:example:i82', 'urn:example:i69'). +'urn:example:i16'('urn:example:i82', 'urn:example:i93'). +'urn:example:i16'('urn:example:i85', 'urn:example:i36'). +'urn:example:i16'('urn:example:i85', 'urn:example:i81'). +'urn:example:i16'('urn:example:i87', 'urn:example:i27'). +'urn:example:i16'('urn:example:i8', 'urn:example:i18'). +'urn:example:i16'('urn:example:i8', 'urn:example:i54'). +'urn:example:i16'('urn:example:i92', 'urn:example:i78'). +'urn:example:i16'('urn:example:i93', 'urn:example:i39'). +'urn:example:i16'('urn:example:i93', 'urn:example:i45'). +'urn:example:i16'('urn:example:i93', 'urn:example:i63'). +'urn:example:i16'('urn:example:i95', 'urn:example:i54'). +'urn:example:i16'('urn:example:i98', 'urn:example:i57'). +'urn:example:i16'('urn:example:i98', 'urn:example:i69'). +'urn:example:i16'('urn:example:i9', 'urn:example:i54'). +'urn:example:i17'('urn:example:i0', 'urn:example:i30'). +'urn:example:i17'('urn:example:i10', 'urn:example:i66'). +'urn:example:i17'('urn:example:i10', 'urn:example:i90'). +'urn:example:i17'('urn:example:i12', 'urn:example:i90'). +'urn:example:i17'('urn:example:i13', 'urn:example:i3'). +'urn:example:i17'('urn:example:i16', 'urn:example:i3'). +'urn:example:i17'('urn:example:i17', 'urn:example:i27'). +'urn:example:i17'('urn:example:i17', 'urn:example:i57'). +'urn:example:i17'('urn:example:i18', 'urn:example:i87'). +'urn:example:i17'('urn:example:i18', 'urn:example:i87'). +'urn:example:i17'('urn:example:i19', 'urn:example:i54'). +'urn:example:i17'('urn:example:i20', 'urn:example:i18'). +'urn:example:i17'('urn:example:i20', 'urn:example:i27'). +'urn:example:i17'('urn:example:i24', 'urn:example:i15'). +'urn:example:i17'('urn:example:i26', 'urn:example:i33'). +'urn:example:i17'('urn:example:i27', 'urn:example:i15'). +'urn:example:i17'('urn:example:i28', 'urn:example:i48'). +'urn:example:i17'('urn:example:i28', 'urn:example:i60'). +'urn:example:i17'('urn:example:i29', 'urn:example:i15'). +'urn:example:i17'('urn:example:i29', 'urn:example:i96'). +'urn:example:i17'('urn:example:i2', 'urn:example:i75'). +'urn:example:i17'('urn:example:i2', 'urn:example:i9'). +'urn:example:i17'('urn:example:i30', 'urn:example:i18'). +'urn:example:i17'('urn:example:i30', 'urn:example:i33'). +'urn:example:i17'('urn:example:i30', 'urn:example:i84'). +'urn:example:i17'('urn:example:i32', 'urn:example:i51'). +'urn:example:i17'('urn:example:i33', 'urn:example:i63'). +'urn:example:i17'('urn:example:i33', 'urn:example:i75'). +'urn:example:i17'('urn:example:i34', 'urn:example:i27'). +'urn:example:i17'('urn:example:i34', 'urn:example:i36'). +'urn:example:i17'('urn:example:i37', 'urn:example:i24'). +'urn:example:i17'('urn:example:i37', 'urn:example:i39'). +'urn:example:i17'('urn:example:i37', 'urn:example:i3'). +'urn:example:i17'('urn:example:i38', 'urn:example:i66'). +'urn:example:i17'('urn:example:i38', 'urn:example:i96'). +'urn:example:i17'('urn:example:i40', 'urn:example:i45'). +'urn:example:i17'('urn:example:i41', 'urn:example:i51'). +'urn:example:i17'('urn:example:i42', 'urn:example:i54'). +'urn:example:i17'('urn:example:i43', 'urn:example:i51'). +'urn:example:i17'('urn:example:i43', 'urn:example:i54'). +'urn:example:i17'('urn:example:i4', 'urn:example:i66'). +'urn:example:i17'('urn:example:i50', 'urn:example:i69'). +'urn:example:i17'('urn:example:i52', 'urn:example:i54'). +'urn:example:i17'('urn:example:i52', 'urn:example:i6'). +'urn:example:i17'('urn:example:i53', 'urn:example:i87'). +'urn:example:i17'('urn:example:i54', 'urn:example:i0'). +'urn:example:i17'('urn:example:i54', 'urn:example:i60'). +'urn:example:i17'('urn:example:i55', 'urn:example:i45'). +'urn:example:i17'('urn:example:i56', 'urn:example:i54'). +'urn:example:i17'('urn:example:i57', 'urn:example:i3'). +'urn:example:i17'('urn:example:i58', 'urn:example:i30'). +'urn:example:i17'('urn:example:i59', 'urn:example:i57'). +'urn:example:i17'('urn:example:i59', 'urn:example:i69'). +'urn:example:i17'('urn:example:i5', 'urn:example:i45'). +'urn:example:i17'('urn:example:i61', 'urn:example:i6'). +'urn:example:i17'('urn:example:i61', 'urn:example:i84'). +'urn:example:i17'('urn:example:i63', 'urn:example:i42'). +'urn:example:i17'('urn:example:i63', 'urn:example:i84'). +'urn:example:i17'('urn:example:i64', 'urn:example:i81'). +'urn:example:i17'('urn:example:i65', 'urn:example:i78'). +'urn:example:i17'('urn:example:i65', 'urn:example:i99'). +'urn:example:i17'('urn:example:i69', 'urn:example:i60'). +'urn:example:i17'('urn:example:i70', 'urn:example:i78'). +'urn:example:i17'('urn:example:i70', 'urn:example:i84'). +'urn:example:i17'('urn:example:i74', 'urn:example:i48'). +'urn:example:i17'('urn:example:i75', 'urn:example:i0'). +'urn:example:i17'('urn:example:i75', 'urn:example:i30'). +'urn:example:i17'('urn:example:i76', 'urn:example:i24'). +'urn:example:i17'('urn:example:i77', 'urn:example:i30'). +'urn:example:i17'('urn:example:i77', 'urn:example:i33'). +'urn:example:i17'('urn:example:i77', 'urn:example:i63'). +'urn:example:i17'('urn:example:i78', 'urn:example:i87'). +'urn:example:i17'('urn:example:i79', 'urn:example:i42'). +'urn:example:i17'('urn:example:i79', 'urn:example:i9'). +'urn:example:i17'('urn:example:i7', 'urn:example:i36'). +'urn:example:i17'('urn:example:i7', 'urn:example:i72'). +'urn:example:i17'('urn:example:i80', 'urn:example:i21'). +'urn:example:i17'('urn:example:i80', 'urn:example:i27'). +'urn:example:i17'('urn:example:i81', 'urn:example:i18'). +'urn:example:i17'('urn:example:i81', 'urn:example:i27'). +'urn:example:i17'('urn:example:i81', 'urn:example:i42'). +'urn:example:i17'('urn:example:i81', 'urn:example:i87'). +'urn:example:i17'('urn:example:i83', 'urn:example:i99'). +'urn:example:i17'('urn:example:i84', 'urn:example:i96'). +'urn:example:i17'('urn:example:i86', 'urn:example:i42'). +'urn:example:i17'('urn:example:i86', 'urn:example:i6'). +'urn:example:i17'('urn:example:i89', 'urn:example:i18'). +'urn:example:i17'('urn:example:i89', 'urn:example:i24'). +'urn:example:i17'('urn:example:i89', 'urn:example:i90'). +'urn:example:i17'('urn:example:i90', 'urn:example:i39'). +'urn:example:i17'('urn:example:i91', 'urn:example:i36'). +'urn:example:i17'('urn:example:i91', 'urn:example:i81'). +'urn:example:i17'('urn:example:i92', 'urn:example:i78'). +'urn:example:i17'('urn:example:i93', 'urn:example:i69'). +'urn:example:i17'('urn:example:i94', 'urn:example:i27'). +'urn:example:i17'('urn:example:i98', 'urn:example:i45'). +'urn:example:i17'('urn:example:i99', 'urn:example:i66'). +'urn:example:i17'('urn:example:i99', 'urn:example:i75'). +'urn:example:i18'('urn:example:i11', 'urn:example:i72'). +'urn:example:i18'('urn:example:i11', 'urn:example:i75'). +'urn:example:i18'('urn:example:i13', 'urn:example:i33'). +'urn:example:i18'('urn:example:i14', 'urn:example:i15'). +'urn:example:i18'('urn:example:i14', 'urn:example:i42'). +'urn:example:i18'('urn:example:i14', 'urn:example:i51'). +'urn:example:i18'('urn:example:i14', 'urn:example:i60'). +'urn:example:i18'('urn:example:i14', 'urn:example:i72'). +'urn:example:i18'('urn:example:i16', 'urn:example:i42'). +'urn:example:i18'('urn:example:i17', 'urn:example:i54'). +'urn:example:i18'('urn:example:i18', 'urn:example:i24'). +'urn:example:i18'('urn:example:i18', 'urn:example:i51'). +'urn:example:i18'('urn:example:i18', 'urn:example:i60'). +'urn:example:i18'('urn:example:i18', 'urn:example:i60'). +'urn:example:i18'('urn:example:i18', 'urn:example:i69'). +'urn:example:i18'('urn:example:i18', 'urn:example:i90'). +'urn:example:i18'('urn:example:i19', 'urn:example:i60'). +'urn:example:i18'('urn:example:i19', 'urn:example:i90'). +'urn:example:i18'('urn:example:i20', 'urn:example:i84'). +'urn:example:i18'('urn:example:i21', 'urn:example:i54'). +'urn:example:i18'('urn:example:i21', 'urn:example:i72'). +'urn:example:i18'('urn:example:i22', 'urn:example:i63'). +'urn:example:i18'('urn:example:i23', 'urn:example:i3'). +'urn:example:i18'('urn:example:i24', 'urn:example:i36'). +'urn:example:i18'('urn:example:i24', 'urn:example:i54'). +'urn:example:i18'('urn:example:i26', 'urn:example:i9'). +'urn:example:i18'('urn:example:i28', 'urn:example:i87'). +'urn:example:i18'('urn:example:i29', 'urn:example:i51'). +'urn:example:i18'('urn:example:i29', 'urn:example:i51'). +'urn:example:i18'('urn:example:i29', 'urn:example:i60'). +'urn:example:i18'('urn:example:i29', 'urn:example:i90'). +'urn:example:i18'('urn:example:i2', 'urn:example:i27'). +'urn:example:i18'('urn:example:i30', 'urn:example:i15'). +'urn:example:i18'('urn:example:i30', 'urn:example:i51'). +'urn:example:i18'('urn:example:i33', 'urn:example:i60'). +'urn:example:i18'('urn:example:i33', 'urn:example:i84'). +'urn:example:i18'('urn:example:i33', 'urn:example:i84'). +'urn:example:i18'('urn:example:i37', 'urn:example:i24'). +'urn:example:i18'('urn:example:i37', 'urn:example:i3'). +'urn:example:i18'('urn:example:i42', 'urn:example:i48'). +'urn:example:i18'('urn:example:i44', 'urn:example:i24'). +'urn:example:i18'('urn:example:i46', 'urn:example:i3'). +'urn:example:i18'('urn:example:i46', 'urn:example:i69'). +'urn:example:i18'('urn:example:i47', 'urn:example:i42'). +'urn:example:i18'('urn:example:i47', 'urn:example:i45'). +'urn:example:i18'('urn:example:i47', 'urn:example:i9'). +'urn:example:i18'('urn:example:i48', 'urn:example:i57'). +'urn:example:i18'('urn:example:i4', 'urn:example:i27'). +'urn:example:i18'('urn:example:i50', 'urn:example:i0'). +'urn:example:i18'('urn:example:i50', 'urn:example:i60'). +'urn:example:i18'('urn:example:i53', 'urn:example:i57'). +'urn:example:i18'('urn:example:i54', 'urn:example:i84'). +'urn:example:i18'('urn:example:i55', 'urn:example:i87'). +'urn:example:i18'('urn:example:i56', 'urn:example:i96'). +'urn:example:i18'('urn:example:i56', 'urn:example:i99'). +'urn:example:i18'('urn:example:i58', 'urn:example:i36'). +'urn:example:i18'('urn:example:i58', 'urn:example:i48'). +'urn:example:i18'('urn:example:i58', 'urn:example:i69'). +'urn:example:i18'('urn:example:i58', 'urn:example:i96'). +'urn:example:i18'('urn:example:i59', 'urn:example:i96'). +'urn:example:i18'('urn:example:i60', 'urn:example:i51'). +'urn:example:i18'('urn:example:i60', 'urn:example:i75'). +'urn:example:i18'('urn:example:i61', 'urn:example:i90'). +'urn:example:i18'('urn:example:i62', 'urn:example:i18'). +'urn:example:i18'('urn:example:i63', 'urn:example:i69'). +'urn:example:i18'('urn:example:i63', 'urn:example:i81'). +'urn:example:i18'('urn:example:i64', 'urn:example:i72'). +'urn:example:i18'('urn:example:i65', 'urn:example:i81'). +'urn:example:i18'('urn:example:i68', 'urn:example:i3'). +'urn:example:i18'('urn:example:i69', 'urn:example:i51'). +'urn:example:i18'('urn:example:i6', 'urn:example:i54'). +'urn:example:i18'('urn:example:i6', 'urn:example:i54'). +'urn:example:i18'('urn:example:i6', 'urn:example:i81'). +'urn:example:i18'('urn:example:i70', 'urn:example:i63'). +'urn:example:i18'('urn:example:i71', 'urn:example:i72'). +'urn:example:i18'('urn:example:i75', 'urn:example:i42'). +'urn:example:i18'('urn:example:i75', 'urn:example:i75'). +'urn:example:i18'('urn:example:i75', 'urn:example:i96'). +'urn:example:i18'('urn:example:i76', 'urn:example:i9'). +'urn:example:i18'('urn:example:i7', 'urn:example:i36'). +'urn:example:i18'('urn:example:i7', 'urn:example:i54'). +'urn:example:i18'('urn:example:i80', 'urn:example:i87'). +'urn:example:i18'('urn:example:i81', 'urn:example:i9'). +'urn:example:i18'('urn:example:i83', 'urn:example:i63'). +'urn:example:i18'('urn:example:i84', 'urn:example:i93'). +'urn:example:i18'('urn:example:i87', 'urn:example:i42'). +'urn:example:i18'('urn:example:i89', 'urn:example:i6'). +'urn:example:i18'('urn:example:i8', 'urn:example:i12'). +'urn:example:i18'('urn:example:i8', 'urn:example:i15'). +'urn:example:i18'('urn:example:i90', 'urn:example:i54'). +'urn:example:i18'('urn:example:i91', 'urn:example:i81'). +'urn:example:i18'('urn:example:i91', 'urn:example:i84'). +'urn:example:i18'('urn:example:i92', 'urn:example:i0'). +'urn:example:i18'('urn:example:i92', 'urn:example:i24'). +'urn:example:i18'('urn:example:i92', 'urn:example:i51'). +'urn:example:i18'('urn:example:i93', 'urn:example:i3'). +'urn:example:i18'('urn:example:i98', 'urn:example:i87'). +'urn:example:i19'('urn:example:i11', 'urn:example:i21'). +'urn:example:i19'('urn:example:i11', 'urn:example:i72'). +'urn:example:i19'('urn:example:i12', 'urn:example:i93'). +'urn:example:i19'('urn:example:i13', 'urn:example:i48'). +'urn:example:i19'('urn:example:i13', 'urn:example:i96'). +'urn:example:i19'('urn:example:i14', 'urn:example:i12'). +'urn:example:i19'('urn:example:i14', 'urn:example:i24'). +'urn:example:i19'('urn:example:i14', 'urn:example:i57'). +'urn:example:i19'('urn:example:i14', 'urn:example:i99'). +'urn:example:i19'('urn:example:i15', 'urn:example:i81'). +'urn:example:i19'('urn:example:i16', 'urn:example:i51'). +'urn:example:i19'('urn:example:i16', 'urn:example:i84'). +'urn:example:i19'('urn:example:i16', 'urn:example:i99'). +'urn:example:i19'('urn:example:i17', 'urn:example:i57'). +'urn:example:i19'('urn:example:i17', 'urn:example:i63'). +'urn:example:i19'('urn:example:i18', 'urn:example:i78'). +'urn:example:i19'('urn:example:i18', 'urn:example:i90'). +'urn:example:i19'('urn:example:i19', 'urn:example:i69'). +'urn:example:i19'('urn:example:i19', 'urn:example:i9'). +'urn:example:i19'('urn:example:i1', 'urn:example:i39'). +'urn:example:i19'('urn:example:i1', 'urn:example:i75'). +'urn:example:i19'('urn:example:i20', 'urn:example:i9'). +'urn:example:i19'('urn:example:i21', 'urn:example:i21'). +'urn:example:i19'('urn:example:i21', 'urn:example:i87'). +'urn:example:i19'('urn:example:i22', 'urn:example:i90'). +'urn:example:i19'('urn:example:i22', 'urn:example:i99'). +'urn:example:i19'('urn:example:i23', 'urn:example:i33'). +'urn:example:i19'('urn:example:i23', 'urn:example:i84'). +'urn:example:i19'('urn:example:i23', 'urn:example:i9'). +'urn:example:i19'('urn:example:i25', 'urn:example:i6'). +'urn:example:i19'('urn:example:i26', 'urn:example:i3'). +'urn:example:i19'('urn:example:i26', 'urn:example:i45'). +'urn:example:i19'('urn:example:i27', 'urn:example:i72'). +'urn:example:i19'('urn:example:i27', 'urn:example:i78'). +'urn:example:i19'('urn:example:i28', 'urn:example:i81'). +'urn:example:i19'('urn:example:i28', 'urn:example:i90'). +'urn:example:i19'('urn:example:i29', 'urn:example:i87'). +'urn:example:i19'('urn:example:i30', 'urn:example:i33'). +'urn:example:i19'('urn:example:i30', 'urn:example:i72'). +'urn:example:i19'('urn:example:i31', 'urn:example:i39'). +'urn:example:i19'('urn:example:i31', 'urn:example:i9'). +'urn:example:i19'('urn:example:i32', 'urn:example:i24'). +'urn:example:i19'('urn:example:i33', 'urn:example:i12'). +'urn:example:i19'('urn:example:i33', 'urn:example:i45'). +'urn:example:i19'('urn:example:i34', 'urn:example:i66'). +'urn:example:i19'('urn:example:i35', 'urn:example:i57'). +'urn:example:i19'('urn:example:i36', 'urn:example:i21'). +'urn:example:i19'('urn:example:i36', 'urn:example:i72'). +'urn:example:i19'('urn:example:i37', 'urn:example:i66'). +'urn:example:i19'('urn:example:i38', 'urn:example:i24'). +'urn:example:i19'('urn:example:i42', 'urn:example:i48'). +'urn:example:i19'('urn:example:i42', 'urn:example:i48'). +'urn:example:i19'('urn:example:i42', 'urn:example:i84'). +'urn:example:i19'('urn:example:i44', 'urn:example:i30'). +'urn:example:i19'('urn:example:i44', 'urn:example:i6'). +'urn:example:i19'('urn:example:i45', 'urn:example:i0'). +'urn:example:i19'('urn:example:i45', 'urn:example:i78'). +'urn:example:i19'('urn:example:i48', 'urn:example:i66'). +'urn:example:i19'('urn:example:i48', 'urn:example:i69'). +'urn:example:i19'('urn:example:i48', 'urn:example:i87'). +'urn:example:i19'('urn:example:i4', 'urn:example:i84'). +'urn:example:i19'('urn:example:i50', 'urn:example:i3'). +'urn:example:i19'('urn:example:i54', 'urn:example:i15'). +'urn:example:i19'('urn:example:i54', 'urn:example:i27'). +'urn:example:i19'('urn:example:i55', 'urn:example:i18'). +'urn:example:i19'('urn:example:i56', 'urn:example:i24'). +'urn:example:i19'('urn:example:i56', 'urn:example:i24'). +'urn:example:i19'('urn:example:i56', 'urn:example:i36'). +'urn:example:i19'('urn:example:i56', 'urn:example:i60'). +'urn:example:i19'('urn:example:i58', 'urn:example:i33'). +'urn:example:i19'('urn:example:i5', 'urn:example:i54'). +'urn:example:i19'('urn:example:i60', 'urn:example:i57'). +'urn:example:i19'('urn:example:i62', 'urn:example:i39'). +'urn:example:i19'('urn:example:i62', 'urn:example:i54'). +'urn:example:i19'('urn:example:i64', 'urn:example:i48'). +'urn:example:i19'('urn:example:i64', 'urn:example:i75'). +'urn:example:i19'('urn:example:i65', 'urn:example:i27'). +'urn:example:i19'('urn:example:i66', 'urn:example:i36'). +'urn:example:i19'('urn:example:i67', 'urn:example:i6'). +'urn:example:i19'('urn:example:i67', 'urn:example:i72'). +'urn:example:i19'('urn:example:i67', 'urn:example:i72'). +'urn:example:i19'('urn:example:i68', 'urn:example:i48'). +'urn:example:i19'('urn:example:i68', 'urn:example:i54'). +'urn:example:i19'('urn:example:i68', 'urn:example:i96'). +'urn:example:i19'('urn:example:i69', 'urn:example:i36'). +'urn:example:i19'('urn:example:i6', 'urn:example:i96'). +'urn:example:i19'('urn:example:i70', 'urn:example:i78'). +'urn:example:i19'('urn:example:i72', 'urn:example:i33'). +'urn:example:i19'('urn:example:i72', 'urn:example:i66'). +'urn:example:i19'('urn:example:i76', 'urn:example:i6'). +'urn:example:i19'('urn:example:i76', 'urn:example:i81'). +'urn:example:i19'('urn:example:i78', 'urn:example:i63'). +'urn:example:i19'('urn:example:i82', 'urn:example:i87'). +'urn:example:i19'('urn:example:i83', 'urn:example:i48'). +'urn:example:i19'('urn:example:i83', 'urn:example:i69'). +'urn:example:i19'('urn:example:i84', 'urn:example:i6'). +'urn:example:i19'('urn:example:i84', 'urn:example:i72'). +'urn:example:i19'('urn:example:i85', 'urn:example:i0'). +'urn:example:i19'('urn:example:i87', 'urn:example:i33'). +'urn:example:i19'('urn:example:i87', 'urn:example:i69'). +'urn:example:i19'('urn:example:i88', 'urn:example:i42'). +'urn:example:i19'('urn:example:i88', 'urn:example:i87'). +'urn:example:i19'('urn:example:i8', 'urn:example:i96'). +'urn:example:i19'('urn:example:i91', 'urn:example:i0'). +'urn:example:i19'('urn:example:i91', 'urn:example:i81'). +'urn:example:i19'('urn:example:i93', 'urn:example:i66'). +'urn:example:i19'('urn:example:i95', 'urn:example:i33'). +'urn:example:i19'('urn:example:i95', 'urn:example:i3'). +'urn:example:i19'('urn:example:i95', 'urn:example:i66'). +'urn:example:i19'('urn:example:i98', 'urn:example:i33'). +'urn:example:i19'('urn:example:i99', 'urn:example:i54'). +'urn:example:i1'('urn:example:i11', 'urn:example:i6'). +'urn:example:i1'('urn:example:i12', 'urn:example:i45'). +'urn:example:i1'('urn:example:i12', 'urn:example:i87'). +'urn:example:i1'('urn:example:i15', 'urn:example:i48'). +'urn:example:i1'('urn:example:i17', 'urn:example:i93'). +'urn:example:i1'('urn:example:i19', 'urn:example:i12'). +'urn:example:i1'('urn:example:i19', 'urn:example:i75'). +'urn:example:i1'('urn:example:i20', 'urn:example:i87'). +'urn:example:i1'('urn:example:i22', 'urn:example:i12'). +'urn:example:i1'('urn:example:i22', 'urn:example:i18'). +'urn:example:i1'('urn:example:i22', 'urn:example:i33'). +'urn:example:i1'('urn:example:i22', 'urn:example:i69'). +'urn:example:i1'('urn:example:i23', 'urn:example:i6'). +'urn:example:i1'('urn:example:i23', 'urn:example:i72'). +'urn:example:i1'('urn:example:i24', 'urn:example:i15'). +'urn:example:i1'('urn:example:i24', 'urn:example:i51'). +'urn:example:i1'('urn:example:i26', 'urn:example:i15'). +'urn:example:i1'('urn:example:i26', 'urn:example:i84'). +'urn:example:i1'('urn:example:i26', 'urn:example:i93'). +'urn:example:i1'('urn:example:i27', 'urn:example:i48'). +'urn:example:i1'('urn:example:i27', 'urn:example:i78'). +'urn:example:i1'('urn:example:i28', 'urn:example:i51'). +'urn:example:i1'('urn:example:i28', 'urn:example:i9'). +'urn:example:i1'('urn:example:i29', 'urn:example:i24'). +'urn:example:i1'('urn:example:i29', 'urn:example:i51'). +'urn:example:i1'('urn:example:i29', 'urn:example:i90'). +'urn:example:i1'('urn:example:i2', 'urn:example:i33'). +'urn:example:i1'('urn:example:i2', 'urn:example:i84'). +'urn:example:i1'('urn:example:i30', 'urn:example:i69'). +'urn:example:i1'('urn:example:i31', 'urn:example:i24'). +'urn:example:i1'('urn:example:i31', 'urn:example:i27'). +'urn:example:i1'('urn:example:i34', 'urn:example:i6'). +'urn:example:i1'('urn:example:i35', 'urn:example:i39'). +'urn:example:i1'('urn:example:i35', 'urn:example:i9'). +'urn:example:i1'('urn:example:i36', 'urn:example:i72'). +'urn:example:i1'('urn:example:i38', 'urn:example:i45'). +'urn:example:i1'('urn:example:i38', 'urn:example:i93'). +'urn:example:i1'('urn:example:i39', 'urn:example:i45'). +'urn:example:i1'('urn:example:i3', 'urn:example:i66'). +'urn:example:i1'('urn:example:i40', 'urn:example:i30'). +'urn:example:i1'('urn:example:i41', 'urn:example:i24'). +'urn:example:i1'('urn:example:i42', 'urn:example:i87'). +'urn:example:i1'('urn:example:i43', 'urn:example:i6'). +'urn:example:i1'('urn:example:i44', 'urn:example:i57'). +'urn:example:i1'('urn:example:i44', 'urn:example:i60'). +'urn:example:i1'('urn:example:i44', 'urn:example:i87'). +'urn:example:i1'('urn:example:i45', 'urn:example:i60'). +'urn:example:i1'('urn:example:i47', 'urn:example:i30'). +'urn:example:i1'('urn:example:i47', 'urn:example:i66'). +'urn:example:i1'('urn:example:i48', 'urn:example:i51'). +'urn:example:i1'('urn:example:i49', 'urn:example:i30'). +'urn:example:i1'('urn:example:i50', 'urn:example:i33'). +'urn:example:i1'('urn:example:i50', 'urn:example:i90'). +'urn:example:i1'('urn:example:i51', 'urn:example:i36'). +'urn:example:i1'('urn:example:i52', 'urn:example:i21'). +'urn:example:i1'('urn:example:i52', 'urn:example:i93'). +'urn:example:i1'('urn:example:i54', 'urn:example:i15'). +'urn:example:i1'('urn:example:i55', 'urn:example:i48'). +'urn:example:i1'('urn:example:i55', 'urn:example:i60'). +'urn:example:i1'('urn:example:i57', 'urn:example:i45'). +'urn:example:i1'('urn:example:i57', 'urn:example:i93'). +'urn:example:i1'('urn:example:i58', 'urn:example:i45'). +'urn:example:i1'('urn:example:i58', 'urn:example:i84'). +'urn:example:i1'('urn:example:i58', 'urn:example:i9'). +'urn:example:i1'('urn:example:i59', 'urn:example:i6'). +'urn:example:i1'('urn:example:i60', 'urn:example:i0'). +'urn:example:i1'('urn:example:i60', 'urn:example:i39'). +'urn:example:i1'('urn:example:i61', 'urn:example:i90'). +'urn:example:i1'('urn:example:i63', 'urn:example:i0'). +'urn:example:i1'('urn:example:i65', 'urn:example:i30'). +'urn:example:i1'('urn:example:i67', 'urn:example:i45'). +'urn:example:i1'('urn:example:i67', 'urn:example:i60'). +'urn:example:i1'('urn:example:i67', 'urn:example:i6'). +'urn:example:i1'('urn:example:i70', 'urn:example:i27'). +'urn:example:i1'('urn:example:i70', 'urn:example:i90'). +'urn:example:i1'('urn:example:i71', 'urn:example:i54'). +'urn:example:i1'('urn:example:i72', 'urn:example:i81'). +'urn:example:i1'('urn:example:i74', 'urn:example:i24'). +'urn:example:i1'('urn:example:i76', 'urn:example:i93'). +'urn:example:i1'('urn:example:i77', 'urn:example:i21'). +'urn:example:i1'('urn:example:i78', 'urn:example:i24'). +'urn:example:i1'('urn:example:i78', 'urn:example:i57'). +'urn:example:i1'('urn:example:i78', 'urn:example:i99'). +'urn:example:i1'('urn:example:i79', 'urn:example:i30'). +'urn:example:i1'('urn:example:i81', 'urn:example:i63'). +'urn:example:i1'('urn:example:i82', 'urn:example:i66'). +'urn:example:i1'('urn:example:i83', 'urn:example:i57'). +'urn:example:i1'('urn:example:i84', 'urn:example:i3'). +'urn:example:i1'('urn:example:i84', 'urn:example:i87'). +'urn:example:i1'('urn:example:i86', 'urn:example:i27'). +'urn:example:i1'('urn:example:i8', 'urn:example:i24'). +'urn:example:i1'('urn:example:i8', 'urn:example:i90'). +'urn:example:i1'('urn:example:i93', 'urn:example:i39'). +'urn:example:i1'('urn:example:i93', 'urn:example:i51'). +'urn:example:i1'('urn:example:i95', 'urn:example:i84'). +'urn:example:i1'('urn:example:i96', 'urn:example:i51'). +'urn:example:i1'('urn:example:i9', 'urn:example:i0'). +'urn:example:i20'('urn:example:i11', 'urn:example:i24'). +'urn:example:i20'('urn:example:i11', 'urn:example:i63'). +'urn:example:i20'('urn:example:i12', 'urn:example:i0'). +'urn:example:i20'('urn:example:i12', 'urn:example:i6'). +'urn:example:i20'('urn:example:i13', 'urn:example:i51'). +'urn:example:i20'('urn:example:i14', 'urn:example:i87'). +'urn:example:i20'('urn:example:i16', 'urn:example:i6'). +'urn:example:i20'('urn:example:i17', 'urn:example:i3'). +'urn:example:i20'('urn:example:i18', 'urn:example:i87'). +'urn:example:i20'('urn:example:i19', 'urn:example:i21'). +'urn:example:i20'('urn:example:i20', 'urn:example:i42'). +'urn:example:i20'('urn:example:i22', 'urn:example:i27'). +'urn:example:i20'('urn:example:i22', 'urn:example:i3'). +'urn:example:i20'('urn:example:i22', 'urn:example:i87'). +'urn:example:i20'('urn:example:i22', 'urn:example:i93'). +'urn:example:i20'('urn:example:i23', 'urn:example:i57'). +'urn:example:i20'('urn:example:i24', 'urn:example:i87'). +'urn:example:i20'('urn:example:i27', 'urn:example:i0'). +'urn:example:i20'('urn:example:i27', 'urn:example:i51'). +'urn:example:i20'('urn:example:i27', 'urn:example:i72'). +'urn:example:i20'('urn:example:i28', 'urn:example:i27'). +'urn:example:i20'('urn:example:i29', 'urn:example:i12'). +'urn:example:i20'('urn:example:i29', 'urn:example:i21'). +'urn:example:i20'('urn:example:i29', 'urn:example:i42'). +'urn:example:i20'('urn:example:i30', 'urn:example:i33'). +'urn:example:i20'('urn:example:i30', 'urn:example:i9'). +'urn:example:i20'('urn:example:i31', 'urn:example:i30'). +'urn:example:i20'('urn:example:i32', 'urn:example:i84'). +'urn:example:i20'('urn:example:i35', 'urn:example:i66'). +'urn:example:i20'('urn:example:i38', 'urn:example:i18'). +'urn:example:i20'('urn:example:i38', 'urn:example:i93'). +'urn:example:i20'('urn:example:i39', 'urn:example:i36'). +'urn:example:i20'('urn:example:i39', 'urn:example:i6'). +'urn:example:i20'('urn:example:i3', 'urn:example:i57'). +'urn:example:i20'('urn:example:i40', 'urn:example:i15'). +'urn:example:i20'('urn:example:i41', 'urn:example:i54'). +'urn:example:i20'('urn:example:i42', 'urn:example:i36'). +'urn:example:i20'('urn:example:i43', 'urn:example:i57'). +'urn:example:i20'('urn:example:i47', 'urn:example:i36'). +'urn:example:i20'('urn:example:i48', 'urn:example:i69'). +'urn:example:i20'('urn:example:i49', 'urn:example:i81'). +'urn:example:i20'('urn:example:i4', 'urn:example:i48'). +'urn:example:i20'('urn:example:i50', 'urn:example:i75'). +'urn:example:i20'('urn:example:i54', 'urn:example:i66'). +'urn:example:i20'('urn:example:i55', 'urn:example:i96'). +'urn:example:i20'('urn:example:i56', 'urn:example:i57'). +'urn:example:i20'('urn:example:i56', 'urn:example:i9'). +'urn:example:i20'('urn:example:i57', 'urn:example:i36'). +'urn:example:i20'('urn:example:i58', 'urn:example:i69'). +'urn:example:i20'('urn:example:i58', 'urn:example:i84'). +'urn:example:i20'('urn:example:i59', 'urn:example:i45'). +'urn:example:i20'('urn:example:i5', 'urn:example:i57'). +'urn:example:i20'('urn:example:i5', 'urn:example:i9'). +'urn:example:i20'('urn:example:i63', 'urn:example:i18'). +'urn:example:i20'('urn:example:i65', 'urn:example:i39'). +'urn:example:i20'('urn:example:i66', 'urn:example:i24'). +'urn:example:i20'('urn:example:i66', 'urn:example:i84'). +'urn:example:i20'('urn:example:i67', 'urn:example:i27'). +'urn:example:i20'('urn:example:i67', 'urn:example:i48'). +'urn:example:i20'('urn:example:i72', 'urn:example:i30'). +'urn:example:i20'('urn:example:i73', 'urn:example:i6'). +'urn:example:i20'('urn:example:i74', 'urn:example:i57'). +'urn:example:i20'('urn:example:i75', 'urn:example:i63'). +'urn:example:i20'('urn:example:i76', 'urn:example:i6'). +'urn:example:i20'('urn:example:i76', 'urn:example:i72'). +'urn:example:i20'('urn:example:i77', 'urn:example:i15'). +'urn:example:i20'('urn:example:i78', 'urn:example:i21'). +'urn:example:i20'('urn:example:i78', 'urn:example:i72'). +'urn:example:i20'('urn:example:i79', 'urn:example:i96'). +'urn:example:i20'('urn:example:i7', 'urn:example:i18'). +'urn:example:i20'('urn:example:i7', 'urn:example:i9'). +'urn:example:i20'('urn:example:i81', 'urn:example:i78'). +'urn:example:i20'('urn:example:i83', 'urn:example:i18'). +'urn:example:i20'('urn:example:i85', 'urn:example:i87'). +'urn:example:i20'('urn:example:i86', 'urn:example:i69'). +'urn:example:i20'('urn:example:i87', 'urn:example:i39'). +'urn:example:i20'('urn:example:i87', 'urn:example:i3'). +'urn:example:i20'('urn:example:i87', 'urn:example:i48'). +'urn:example:i20'('urn:example:i89', 'urn:example:i66'). +'urn:example:i20'('urn:example:i89', 'urn:example:i9'). +'urn:example:i20'('urn:example:i8', 'urn:example:i69'). +'urn:example:i20'('urn:example:i90', 'urn:example:i39'). +'urn:example:i20'('urn:example:i90', 'urn:example:i54'). +'urn:example:i20'('urn:example:i91', 'urn:example:i18'). +'urn:example:i20'('urn:example:i94', 'urn:example:i27'). +'urn:example:i20'('urn:example:i94', 'urn:example:i57'). +'urn:example:i20'('urn:example:i94', 'urn:example:i90'). +'urn:example:i20'('urn:example:i95', 'urn:example:i39'). +'urn:example:i20'('urn:example:i95', 'urn:example:i90'). +'urn:example:i20'('urn:example:i97', 'urn:example:i57'). +'urn:example:i20'('urn:example:i99', 'urn:example:i18'). +'urn:example:i20'('urn:example:i99', 'urn:example:i6'). +'urn:example:i20'('urn:example:i99', 'urn:example:i78'). +'urn:example:i20'('urn:example:i9', 'urn:example:i15'). +'urn:example:i20'('urn:example:i9', 'urn:example:i27'). +'urn:example:i20'('urn:example:i9', 'urn:example:i6'). +'urn:example:i21'('urn:example:i11', 'urn:example:i9'). +'urn:example:i21'('urn:example:i12', 'urn:example:i36'). +'urn:example:i21'('urn:example:i14', 'urn:example:i69'). +'urn:example:i21'('urn:example:i15', 'urn:example:i3'). +'urn:example:i21'('urn:example:i16', 'urn:example:i27'). +'urn:example:i21'('urn:example:i16', 'urn:example:i30'). +'urn:example:i21'('urn:example:i16', 'urn:example:i66'). +'urn:example:i21'('urn:example:i17', 'urn:example:i75'). +'urn:example:i21'('urn:example:i19', 'urn:example:i60'). +'urn:example:i21'('urn:example:i1', 'urn:example:i21'). +'urn:example:i21'('urn:example:i20', 'urn:example:i21'). +'urn:example:i21'('urn:example:i20', 'urn:example:i21'). +'urn:example:i21'('urn:example:i21', 'urn:example:i90'). +'urn:example:i21'('urn:example:i23', 'urn:example:i18'). +'urn:example:i21'('urn:example:i27', 'urn:example:i66'). +'urn:example:i21'('urn:example:i28', 'urn:example:i39'). +'urn:example:i21'('urn:example:i28', 'urn:example:i99'). +'urn:example:i21'('urn:example:i28', 'urn:example:i9'). +'urn:example:i21'('urn:example:i29', 'urn:example:i24'). +'urn:example:i21'('urn:example:i2', 'urn:example:i75'). +'urn:example:i21'('urn:example:i30', 'urn:example:i57'). +'urn:example:i21'('urn:example:i30', 'urn:example:i84'). +'urn:example:i21'('urn:example:i34', 'urn:example:i12'). +'urn:example:i21'('urn:example:i34', 'urn:example:i63'). +'urn:example:i21'('urn:example:i34', 'urn:example:i69'). +'urn:example:i21'('urn:example:i34', 'urn:example:i81'). +'urn:example:i21'('urn:example:i35', 'urn:example:i42'). +'urn:example:i21'('urn:example:i37', 'urn:example:i21'). +'urn:example:i21'('urn:example:i39', 'urn:example:i48'). +'urn:example:i21'('urn:example:i3', 'urn:example:i3'). +'urn:example:i21'('urn:example:i42', 'urn:example:i21'). +'urn:example:i21'('urn:example:i43', 'urn:example:i33'). +'urn:example:i21'('urn:example:i44', 'urn:example:i0'). +'urn:example:i21'('urn:example:i45', 'urn:example:i93'). +'urn:example:i21'('urn:example:i46', 'urn:example:i27'). +'urn:example:i21'('urn:example:i46', 'urn:example:i30'). +'urn:example:i21'('urn:example:i46', 'urn:example:i84'). +'urn:example:i21'('urn:example:i48', 'urn:example:i6'). +'urn:example:i21'('urn:example:i4', 'urn:example:i0'). +'urn:example:i21'('urn:example:i50', 'urn:example:i3'). +'urn:example:i21'('urn:example:i50', 'urn:example:i54'). +'urn:example:i21'('urn:example:i53', 'urn:example:i33'). +'urn:example:i21'('urn:example:i53', 'urn:example:i72'). +'urn:example:i21'('urn:example:i54', 'urn:example:i63'). +'urn:example:i21'('urn:example:i55', 'urn:example:i96'). +'urn:example:i21'('urn:example:i56', 'urn:example:i54'). +'urn:example:i21'('urn:example:i57', 'urn:example:i78'). +'urn:example:i21'('urn:example:i57', 'urn:example:i87'). +'urn:example:i21'('urn:example:i60', 'urn:example:i21'). +'urn:example:i21'('urn:example:i61', 'urn:example:i93'). +'urn:example:i21'('urn:example:i62', 'urn:example:i27'). +'urn:example:i21'('urn:example:i63', 'urn:example:i72'). +'urn:example:i21'('urn:example:i63', 'urn:example:i72'). +'urn:example:i21'('urn:example:i64', 'urn:example:i54'). +'urn:example:i21'('urn:example:i65', 'urn:example:i30'). +'urn:example:i21'('urn:example:i65', 'urn:example:i3'). +'urn:example:i21'('urn:example:i65', 'urn:example:i84'). +'urn:example:i21'('urn:example:i67', 'urn:example:i42'). +'urn:example:i21'('urn:example:i67', 'urn:example:i54'). +'urn:example:i21'('urn:example:i68', 'urn:example:i0'). +'urn:example:i21'('urn:example:i68', 'urn:example:i75'). +'urn:example:i21'('urn:example:i68', 'urn:example:i81'). +'urn:example:i21'('urn:example:i69', 'urn:example:i9'). +'urn:example:i21'('urn:example:i6', 'urn:example:i9'). +'urn:example:i21'('urn:example:i70', 'urn:example:i63'). +'urn:example:i21'('urn:example:i72', 'urn:example:i27'). +'urn:example:i21'('urn:example:i72', 'urn:example:i93'). +'urn:example:i21'('urn:example:i72', 'urn:example:i9'). +'urn:example:i21'('urn:example:i73', 'urn:example:i33'). +'urn:example:i21'('urn:example:i73', 'urn:example:i66'). +'urn:example:i21'('urn:example:i73', 'urn:example:i6'). +'urn:example:i21'('urn:example:i74', 'urn:example:i93'). +'urn:example:i21'('urn:example:i75', 'urn:example:i18'). +'urn:example:i21'('urn:example:i75', 'urn:example:i42'). +'urn:example:i21'('urn:example:i75', 'urn:example:i51'). +'urn:example:i21'('urn:example:i76', 'urn:example:i63'). +'urn:example:i21'('urn:example:i76', 'urn:example:i69'). +'urn:example:i21'('urn:example:i77', 'urn:example:i9'). +'urn:example:i21'('urn:example:i78', 'urn:example:i27'). +'urn:example:i21'('urn:example:i7', 'urn:example:i24'). +'urn:example:i21'('urn:example:i80', 'urn:example:i75'). +'urn:example:i21'('urn:example:i83', 'urn:example:i48'). +'urn:example:i21'('urn:example:i83', 'urn:example:i63'). +'urn:example:i21'('urn:example:i83', 'urn:example:i69'). +'urn:example:i21'('urn:example:i87', 'urn:example:i45'). +'urn:example:i21'('urn:example:i88', 'urn:example:i36'). +'urn:example:i21'('urn:example:i88', 'urn:example:i84'). +'urn:example:i21'('urn:example:i89', 'urn:example:i3'). +'urn:example:i21'('urn:example:i92', 'urn:example:i15'). +'urn:example:i21'('urn:example:i93', 'urn:example:i54'). +'urn:example:i21'('urn:example:i93', 'urn:example:i9'). +'urn:example:i21'('urn:example:i94', 'urn:example:i36'). +'urn:example:i21'('urn:example:i94', 'urn:example:i84'). +'urn:example:i21'('urn:example:i97', 'urn:example:i57'). +'urn:example:i21'('urn:example:i99', 'urn:example:i57'). +'urn:example:i22'('urn:example:i11', 'urn:example:i18'). +'urn:example:i22'('urn:example:i11', 'urn:example:i39'). +'urn:example:i22'('urn:example:i11', 'urn:example:i48'). +'urn:example:i22'('urn:example:i12', 'urn:example:i0'). +'urn:example:i22'('urn:example:i13', 'urn:example:i45'). +'urn:example:i22'('urn:example:i13', 'urn:example:i51'). +'urn:example:i22'('urn:example:i14', 'urn:example:i0'). +'urn:example:i22'('urn:example:i15', 'urn:example:i63'). +'urn:example:i22'('urn:example:i17', 'urn:example:i75'). +'urn:example:i22'('urn:example:i19', 'urn:example:i69'). +'urn:example:i22'('urn:example:i1', 'urn:example:i12'). +'urn:example:i22'('urn:example:i1', 'urn:example:i72'). +'urn:example:i22'('urn:example:i20', 'urn:example:i24'). +'urn:example:i22'('urn:example:i21', 'urn:example:i48'). +'urn:example:i22'('urn:example:i21', 'urn:example:i87'). +'urn:example:i22'('urn:example:i22', 'urn:example:i36'). +'urn:example:i22'('urn:example:i24', 'urn:example:i48'). +'urn:example:i22'('urn:example:i27', 'urn:example:i39'). +'urn:example:i22'('urn:example:i28', 'urn:example:i21'). +'urn:example:i22'('urn:example:i28', 'urn:example:i3'). +'urn:example:i22'('urn:example:i28', 'urn:example:i9'). +'urn:example:i22'('urn:example:i29', 'urn:example:i15'). +'urn:example:i22'('urn:example:i2', 'urn:example:i12'). +'urn:example:i22'('urn:example:i30', 'urn:example:i36'). +'urn:example:i22'('urn:example:i30', 'urn:example:i6'). +'urn:example:i22'('urn:example:i31', 'urn:example:i57'). +'urn:example:i22'('urn:example:i31', 'urn:example:i75'). +'urn:example:i22'('urn:example:i33', 'urn:example:i15'). +'urn:example:i22'('urn:example:i34', 'urn:example:i45'). +'urn:example:i22'('urn:example:i34', 'urn:example:i63'). +'urn:example:i22'('urn:example:i35', 'urn:example:i51'). +'urn:example:i22'('urn:example:i37', 'urn:example:i18'). +'urn:example:i22'('urn:example:i38', 'urn:example:i69'). +'urn:example:i22'('urn:example:i3', 'urn:example:i12'). +'urn:example:i22'('urn:example:i40', 'urn:example:i3'). +'urn:example:i22'('urn:example:i48', 'urn:example:i54'). +'urn:example:i22'('urn:example:i49', 'urn:example:i66'). +'urn:example:i22'('urn:example:i4', 'urn:example:i15'). +'urn:example:i22'('urn:example:i4', 'urn:example:i30'). +'urn:example:i22'('urn:example:i50', 'urn:example:i87'). +'urn:example:i22'('urn:example:i51', 'urn:example:i36'). +'urn:example:i22'('urn:example:i51', 'urn:example:i72'). +'urn:example:i22'('urn:example:i51', 'urn:example:i90'). +'urn:example:i22'('urn:example:i52', 'urn:example:i33'). +'urn:example:i22'('urn:example:i52', 'urn:example:i96'). +'urn:example:i22'('urn:example:i53', 'urn:example:i3'). +'urn:example:i22'('urn:example:i53', 'urn:example:i57'). +'urn:example:i22'('urn:example:i56', 'urn:example:i15'). +'urn:example:i22'('urn:example:i56', 'urn:example:i30'). +'urn:example:i22'('urn:example:i57', 'urn:example:i96'). +'urn:example:i22'('urn:example:i59', 'urn:example:i81'). +'urn:example:i22'('urn:example:i60', 'urn:example:i15'). +'urn:example:i22'('urn:example:i60', 'urn:example:i3'). +'urn:example:i22'('urn:example:i61', 'urn:example:i75'). +'urn:example:i22'('urn:example:i64', 'urn:example:i36'). +'urn:example:i22'('urn:example:i65', 'urn:example:i0'). +'urn:example:i22'('urn:example:i65', 'urn:example:i0'). +'urn:example:i22'('urn:example:i65', 'urn:example:i9'). +'urn:example:i22'('urn:example:i66', 'urn:example:i6'). +'urn:example:i22'('urn:example:i66', 'urn:example:i81'). +'urn:example:i22'('urn:example:i69', 'urn:example:i9'). +'urn:example:i22'('urn:example:i70', 'urn:example:i12'). +'urn:example:i22'('urn:example:i70', 'urn:example:i96'). +'urn:example:i22'('urn:example:i71', 'urn:example:i63'). +'urn:example:i22'('urn:example:i72', 'urn:example:i21'). +'urn:example:i22'('urn:example:i73', 'urn:example:i24'). +'urn:example:i22'('urn:example:i74', 'urn:example:i15'). +'urn:example:i22'('urn:example:i74', 'urn:example:i48'). +'urn:example:i22'('urn:example:i75', 'urn:example:i24'). +'urn:example:i22'('urn:example:i75', 'urn:example:i30'). +'urn:example:i22'('urn:example:i76', 'urn:example:i93'). +'urn:example:i22'('urn:example:i80', 'urn:example:i12'). +'urn:example:i22'('urn:example:i81', 'urn:example:i69'). +'urn:example:i22'('urn:example:i82', 'urn:example:i27'). +'urn:example:i22'('urn:example:i83', 'urn:example:i12'). +'urn:example:i22'('urn:example:i83', 'urn:example:i24'). +'urn:example:i22'('urn:example:i84', 'urn:example:i9'). +'urn:example:i22'('urn:example:i85', 'urn:example:i45'). +'urn:example:i22'('urn:example:i87', 'urn:example:i54'). +'urn:example:i22'('urn:example:i88', 'urn:example:i69'). +'urn:example:i22'('urn:example:i88', 'urn:example:i96'). +'urn:example:i22'('urn:example:i90', 'urn:example:i66'). +'urn:example:i22'('urn:example:i92', 'urn:example:i0'). +'urn:example:i22'('urn:example:i92', 'urn:example:i36'). +'urn:example:i22'('urn:example:i92', 'urn:example:i66'). +'urn:example:i22'('urn:example:i93', 'urn:example:i57'). +'urn:example:i22'('urn:example:i95', 'urn:example:i0'). +'urn:example:i22'('urn:example:i97', 'urn:example:i27'). +'urn:example:i22'('urn:example:i98', 'urn:example:i18'). +'urn:example:i22'('urn:example:i98', 'urn:example:i42'). +'urn:example:i22'('urn:example:i99', 'urn:example:i36'). +'urn:example:i22'('urn:example:i9', 'urn:example:i36'). +'urn:example:i22'('urn:example:i9', 'urn:example:i87'). +'urn:example:i23'('urn:example:i10', 'urn:example:i90'). +'urn:example:i23'('urn:example:i10', 'urn:example:i90'). +'urn:example:i23'('urn:example:i11', 'urn:example:i0'). +'urn:example:i23'('urn:example:i11', 'urn:example:i72'). +'urn:example:i23'('urn:example:i13', 'urn:example:i0'). +'urn:example:i23'('urn:example:i17', 'urn:example:i27'). +'urn:example:i23'('urn:example:i18', 'urn:example:i33'). +'urn:example:i23'('urn:example:i19', 'urn:example:i0'). +'urn:example:i23'('urn:example:i19', 'urn:example:i66'). +'urn:example:i23'('urn:example:i19', 'urn:example:i75'). +'urn:example:i23'('urn:example:i1', 'urn:example:i27'). +'urn:example:i23'('urn:example:i1', 'urn:example:i42'). +'urn:example:i23'('urn:example:i1', 'urn:example:i45'). +'urn:example:i23'('urn:example:i1', 'urn:example:i63'). +'urn:example:i23'('urn:example:i1', 'urn:example:i72'). +'urn:example:i23'('urn:example:i21', 'urn:example:i51'). +'urn:example:i23'('urn:example:i23', 'urn:example:i18'). +'urn:example:i23'('urn:example:i23', 'urn:example:i21'). +'urn:example:i23'('urn:example:i23', 'urn:example:i54'). +'urn:example:i23'('urn:example:i23', 'urn:example:i60'). +'urn:example:i23'('urn:example:i24', 'urn:example:i90'). +'urn:example:i23'('urn:example:i25', 'urn:example:i51'). +'urn:example:i23'('urn:example:i26', 'urn:example:i0'). +'urn:example:i23'('urn:example:i28', 'urn:example:i42'). +'urn:example:i23'('urn:example:i2', 'urn:example:i12'). +'urn:example:i23'('urn:example:i30', 'urn:example:i39'). +'urn:example:i23'('urn:example:i30', 'urn:example:i57'). +'urn:example:i23'('urn:example:i31', 'urn:example:i81'). +'urn:example:i23'('urn:example:i31', 'urn:example:i84'). +'urn:example:i23'('urn:example:i33', 'urn:example:i99'). +'urn:example:i23'('urn:example:i34', 'urn:example:i60'). +'urn:example:i23'('urn:example:i34', 'urn:example:i69'). +'urn:example:i23'('urn:example:i35', 'urn:example:i12'). +'urn:example:i23'('urn:example:i35', 'urn:example:i42'). +'urn:example:i23'('urn:example:i35', 'urn:example:i48'). +'urn:example:i23'('urn:example:i36', 'urn:example:i63'). +'urn:example:i23'('urn:example:i37', 'urn:example:i39'). +'urn:example:i23'('urn:example:i37', 'urn:example:i57'). +'urn:example:i23'('urn:example:i37', 'urn:example:i75'). +'urn:example:i23'('urn:example:i38', 'urn:example:i96'). +'urn:example:i23'('urn:example:i39', 'urn:example:i18'). +'urn:example:i23'('urn:example:i3', 'urn:example:i36'). +'urn:example:i23'('urn:example:i3', 'urn:example:i87'). +'urn:example:i23'('urn:example:i41', 'urn:example:i33'). +'urn:example:i23'('urn:example:i42', 'urn:example:i24'). +'urn:example:i23'('urn:example:i43', 'urn:example:i27'). +'urn:example:i23'('urn:example:i44', 'urn:example:i18'). +'urn:example:i23'('urn:example:i44', 'urn:example:i84'). +'urn:example:i23'('urn:example:i46', 'urn:example:i84'). +'urn:example:i23'('urn:example:i46', 'urn:example:i84'). +'urn:example:i23'('urn:example:i46', 'urn:example:i9'). +'urn:example:i23'('urn:example:i47', 'urn:example:i72'). +'urn:example:i23'('urn:example:i4', 'urn:example:i96'). +'urn:example:i23'('urn:example:i50', 'urn:example:i87'). +'urn:example:i23'('urn:example:i51', 'urn:example:i15'). +'urn:example:i23'('urn:example:i51', 'urn:example:i30'). +'urn:example:i23'('urn:example:i52', 'urn:example:i24'). +'urn:example:i23'('urn:example:i52', 'urn:example:i60'). +'urn:example:i23'('urn:example:i55', 'urn:example:i18'). +'urn:example:i23'('urn:example:i55', 'urn:example:i6'). +'urn:example:i23'('urn:example:i57', 'urn:example:i27'). +'urn:example:i23'('urn:example:i57', 'urn:example:i90'). +'urn:example:i23'('urn:example:i58', 'urn:example:i3'). +'urn:example:i23'('urn:example:i5', 'urn:example:i90'). +'urn:example:i23'('urn:example:i60', 'urn:example:i51'). +'urn:example:i23'('urn:example:i60', 'urn:example:i78'). +'urn:example:i23'('urn:example:i61', 'urn:example:i24'). +'urn:example:i23'('urn:example:i66', 'urn:example:i24'). +'urn:example:i23'('urn:example:i66', 'urn:example:i39'). +'urn:example:i23'('urn:example:i6', 'urn:example:i15'). +'urn:example:i23'('urn:example:i70', 'urn:example:i63'). +'urn:example:i23'('urn:example:i70', 'urn:example:i63'). +'urn:example:i23'('urn:example:i71', 'urn:example:i93'). +'urn:example:i23'('urn:example:i72', 'urn:example:i15'). +'urn:example:i23'('urn:example:i72', 'urn:example:i30'). +'urn:example:i23'('urn:example:i73', 'urn:example:i18'). +'urn:example:i23'('urn:example:i73', 'urn:example:i72'). +'urn:example:i23'('urn:example:i74', 'urn:example:i60'). +'urn:example:i23'('urn:example:i75', 'urn:example:i12'). +'urn:example:i23'('urn:example:i77', 'urn:example:i90'). +'urn:example:i23'('urn:example:i78', 'urn:example:i72'). +'urn:example:i23'('urn:example:i80', 'urn:example:i45'). +'urn:example:i23'('urn:example:i83', 'urn:example:i60'). +'urn:example:i23'('urn:example:i83', 'urn:example:i6'). +'urn:example:i23'('urn:example:i83', 'urn:example:i72'). +'urn:example:i23'('urn:example:i84', 'urn:example:i12'). +'urn:example:i23'('urn:example:i85', 'urn:example:i24'). +'urn:example:i23'('urn:example:i85', 'urn:example:i27'). +'urn:example:i23'('urn:example:i86', 'urn:example:i78'). +'urn:example:i23'('urn:example:i87', 'urn:example:i66'). +'urn:example:i23'('urn:example:i88', 'urn:example:i30'). +'urn:example:i23'('urn:example:i89', 'urn:example:i39'). +'urn:example:i23'('urn:example:i8', 'urn:example:i33'). +'urn:example:i23'('urn:example:i90', 'urn:example:i51'). +'urn:example:i23'('urn:example:i94', 'urn:example:i36'). +'urn:example:i23'('urn:example:i94', 'urn:example:i93'). +'urn:example:i23'('urn:example:i96', 'urn:example:i51'). +'urn:example:i23'('urn:example:i98', 'urn:example:i78'). +'urn:example:i23'('urn:example:i9', 'urn:example:i45'). +'urn:example:i24'('urn:example:i10', 'urn:example:i30'). +'urn:example:i24'('urn:example:i11', 'urn:example:i12'). +'urn:example:i24'('urn:example:i11', 'urn:example:i63'). +'urn:example:i24'('urn:example:i11', 'urn:example:i63'). +'urn:example:i24'('urn:example:i14', 'urn:example:i42'). +'urn:example:i24'('urn:example:i16', 'urn:example:i3'). +'urn:example:i24'('urn:example:i16', 'urn:example:i69'). +'urn:example:i24'('urn:example:i16', 'urn:example:i81'). +'urn:example:i24'('urn:example:i17', 'urn:example:i45'). +'urn:example:i24'('urn:example:i20', 'urn:example:i39'). +'urn:example:i24'('urn:example:i20', 'urn:example:i90'). +'urn:example:i24'('urn:example:i21', 'urn:example:i99'). +'urn:example:i24'('urn:example:i22', 'urn:example:i69'). +'urn:example:i24'('urn:example:i22', 'urn:example:i72'). +'urn:example:i24'('urn:example:i23', 'urn:example:i3'). +'urn:example:i24'('urn:example:i24', 'urn:example:i33'). +'urn:example:i24'('urn:example:i24', 'urn:example:i99'). +'urn:example:i24'('urn:example:i25', 'urn:example:i12'). +'urn:example:i24'('urn:example:i25', 'urn:example:i96'). +'urn:example:i24'('urn:example:i26', 'urn:example:i36'). +'urn:example:i24'('urn:example:i26', 'urn:example:i75'). +'urn:example:i24'('urn:example:i27', 'urn:example:i27'). +'urn:example:i24'('urn:example:i27', 'urn:example:i63'). +'urn:example:i24'('urn:example:i27', 'urn:example:i93'). +'urn:example:i24'('urn:example:i28', 'urn:example:i15'). +'urn:example:i24'('urn:example:i2', 'urn:example:i42'). +'urn:example:i24'('urn:example:i2', 'urn:example:i66'). +'urn:example:i24'('urn:example:i30', 'urn:example:i48'). +'urn:example:i24'('urn:example:i31', 'urn:example:i33'). +'urn:example:i24'('urn:example:i32', 'urn:example:i6'). +'urn:example:i24'('urn:example:i33', 'urn:example:i24'). +'urn:example:i24'('urn:example:i33', 'urn:example:i3'). +'urn:example:i24'('urn:example:i39', 'urn:example:i93'). +'urn:example:i24'('urn:example:i3', 'urn:example:i12'). +'urn:example:i24'('urn:example:i40', 'urn:example:i42'). +'urn:example:i24'('urn:example:i41', 'urn:example:i60'). +'urn:example:i24'('urn:example:i42', 'urn:example:i39'). +'urn:example:i24'('urn:example:i42', 'urn:example:i69'). +'urn:example:i24'('urn:example:i45', 'urn:example:i6'). +'urn:example:i24'('urn:example:i45', 'urn:example:i78'). +'urn:example:i24'('urn:example:i50', 'urn:example:i24'). +'urn:example:i24'('urn:example:i50', 'urn:example:i57'). +'urn:example:i24'('urn:example:i50', 'urn:example:i99'). +'urn:example:i24'('urn:example:i51', 'urn:example:i33'). +'urn:example:i24'('urn:example:i54', 'urn:example:i75'). +'urn:example:i24'('urn:example:i56', 'urn:example:i78'). +'urn:example:i24'('urn:example:i57', 'urn:example:i3'). +'urn:example:i24'('urn:example:i57', 'urn:example:i57'). +'urn:example:i24'('urn:example:i58', 'urn:example:i12'). +'urn:example:i24'('urn:example:i58', 'urn:example:i72'). +'urn:example:i24'('urn:example:i59', 'urn:example:i3'). +'urn:example:i24'('urn:example:i59', 'urn:example:i96'). +'urn:example:i24'('urn:example:i5', 'urn:example:i18'). +'urn:example:i24'('urn:example:i5', 'urn:example:i57'). +'urn:example:i24'('urn:example:i60', 'urn:example:i87'). +'urn:example:i24'('urn:example:i61', 'urn:example:i30'). +'urn:example:i24'('urn:example:i62', 'urn:example:i27'). +'urn:example:i24'('urn:example:i63', 'urn:example:i3'). +'urn:example:i24'('urn:example:i64', 'urn:example:i15'). +'urn:example:i24'('urn:example:i64', 'urn:example:i30'). +'urn:example:i24'('urn:example:i65', 'urn:example:i0'). +'urn:example:i24'('urn:example:i65', 'urn:example:i51'). +'urn:example:i24'('urn:example:i67', 'urn:example:i24'). +'urn:example:i24'('urn:example:i67', 'urn:example:i78'). +'urn:example:i24'('urn:example:i69', 'urn:example:i45'). +'urn:example:i24'('urn:example:i6', 'urn:example:i57'). +'urn:example:i24'('urn:example:i6', 'urn:example:i69'). +'urn:example:i24'('urn:example:i6', 'urn:example:i96'). +'urn:example:i24'('urn:example:i70', 'urn:example:i93'). +'urn:example:i24'('urn:example:i71', 'urn:example:i96'). +'urn:example:i24'('urn:example:i72', 'urn:example:i60'). +'urn:example:i24'('urn:example:i72', 'urn:example:i87'). +'urn:example:i24'('urn:example:i73', 'urn:example:i12'). +'urn:example:i24'('urn:example:i74', 'urn:example:i33'). +'urn:example:i24'('urn:example:i74', 'urn:example:i72'). +'urn:example:i24'('urn:example:i76', 'urn:example:i66'). +'urn:example:i24'('urn:example:i77', 'urn:example:i54'). +'urn:example:i24'('urn:example:i77', 'urn:example:i78'). +'urn:example:i24'('urn:example:i78', 'urn:example:i72'). +'urn:example:i24'('urn:example:i78', 'urn:example:i78'). +'urn:example:i24'('urn:example:i80', 'urn:example:i42'). +'urn:example:i24'('urn:example:i81', 'urn:example:i75'). +'urn:example:i24'('urn:example:i82', 'urn:example:i21'). +'urn:example:i24'('urn:example:i82', 'urn:example:i27'). +'urn:example:i24'('urn:example:i83', 'urn:example:i0'). +'urn:example:i24'('urn:example:i84', 'urn:example:i45'). +'urn:example:i24'('urn:example:i84', 'urn:example:i51'). +'urn:example:i24'('urn:example:i84', 'urn:example:i93'). +'urn:example:i24'('urn:example:i85', 'urn:example:i72'). +'urn:example:i24'('urn:example:i86', 'urn:example:i96'). +'urn:example:i24'('urn:example:i87', 'urn:example:i60'). +'urn:example:i24'('urn:example:i88', 'urn:example:i90'). +'urn:example:i24'('urn:example:i92', 'urn:example:i45'). +'urn:example:i24'('urn:example:i93', 'urn:example:i87'). +'urn:example:i24'('urn:example:i93', 'urn:example:i9'). +'urn:example:i24'('urn:example:i95', 'urn:example:i30'). +'urn:example:i24'('urn:example:i95', 'urn:example:i51'). +'urn:example:i24'('urn:example:i97', 'urn:example:i96'). +'urn:example:i24'('urn:example:i98', 'urn:example:i48'). +'urn:example:i24'('urn:example:i9', 'urn:example:i21'). +'urn:example:i24'('urn:example:i9', 'urn:example:i33'). +'urn:example:i25'('urn:example:i10', 'urn:example:i39'). +'urn:example:i25'('urn:example:i10', 'urn:example:i48'). +'urn:example:i25'('urn:example:i10', 'urn:example:i87'). +'urn:example:i25'('urn:example:i11', 'urn:example:i81'). +'urn:example:i25'('urn:example:i12', 'urn:example:i57'). +'urn:example:i25'('urn:example:i13', 'urn:example:i93'). +'urn:example:i25'('urn:example:i14', 'urn:example:i45'). +'urn:example:i25'('urn:example:i14', 'urn:example:i57'). +'urn:example:i25'('urn:example:i14', 'urn:example:i81'). +'urn:example:i25'('urn:example:i15', 'urn:example:i27'). +'urn:example:i25'('urn:example:i16', 'urn:example:i66'). +'urn:example:i25'('urn:example:i17', 'urn:example:i12'). +'urn:example:i25'('urn:example:i17', 'urn:example:i75'). +'urn:example:i25'('urn:example:i18', 'urn:example:i75'). +'urn:example:i25'('urn:example:i1', 'urn:example:i69'). +'urn:example:i25'('urn:example:i20', 'urn:example:i57'). +'urn:example:i25'('urn:example:i21', 'urn:example:i48'). +'urn:example:i25'('urn:example:i21', 'urn:example:i9'). +'urn:example:i25'('urn:example:i24', 'urn:example:i33'). +'urn:example:i25'('urn:example:i24', 'urn:example:i42'). +'urn:example:i25'('urn:example:i25', 'urn:example:i75'). +'urn:example:i25'('urn:example:i27', 'urn:example:i78'). +'urn:example:i25'('urn:example:i28', 'urn:example:i12'). +'urn:example:i25'('urn:example:i29', 'urn:example:i0'). +'urn:example:i25'('urn:example:i30', 'urn:example:i69'). +'urn:example:i25'('urn:example:i31', 'urn:example:i57'). +'urn:example:i25'('urn:example:i32', 'urn:example:i21'). +'urn:example:i25'('urn:example:i33', 'urn:example:i81'). +'urn:example:i25'('urn:example:i34', 'urn:example:i51'). +'urn:example:i25'('urn:example:i35', 'urn:example:i0'). +'urn:example:i25'('urn:example:i36', 'urn:example:i60'). +'urn:example:i25'('urn:example:i36', 'urn:example:i66'). +'urn:example:i25'('urn:example:i37', 'urn:example:i90'). +'urn:example:i25'('urn:example:i38', 'urn:example:i54'). +'urn:example:i25'('urn:example:i38', 'urn:example:i63'). +'urn:example:i25'('urn:example:i38', 'urn:example:i9'). +'urn:example:i25'('urn:example:i3', 'urn:example:i39'). +'urn:example:i25'('urn:example:i3', 'urn:example:i96'). +'urn:example:i25'('urn:example:i40', 'urn:example:i84'). +'urn:example:i25'('urn:example:i42', 'urn:example:i96'). +'urn:example:i25'('urn:example:i43', 'urn:example:i30'). +'urn:example:i25'('urn:example:i44', 'urn:example:i51'). +'urn:example:i25'('urn:example:i44', 'urn:example:i78'). +'urn:example:i25'('urn:example:i45', 'urn:example:i30'). +'urn:example:i25'('urn:example:i45', 'urn:example:i69'). +'urn:example:i25'('urn:example:i46', 'urn:example:i54'). +'urn:example:i25'('urn:example:i47', 'urn:example:i18'). +'urn:example:i25'('urn:example:i47', 'urn:example:i78'). +'urn:example:i25'('urn:example:i48', 'urn:example:i24'). +'urn:example:i25'('urn:example:i48', 'urn:example:i57'). +'urn:example:i25'('urn:example:i4', 'urn:example:i39'). +'urn:example:i25'('urn:example:i4', 'urn:example:i60'). +'urn:example:i25'('urn:example:i50', 'urn:example:i42'). +'urn:example:i25'('urn:example:i51', 'urn:example:i87'). +'urn:example:i25'('urn:example:i52', 'urn:example:i3'). +'urn:example:i25'('urn:example:i52', 'urn:example:i75'). +'urn:example:i25'('urn:example:i53', 'urn:example:i9'). +'urn:example:i25'('urn:example:i54', 'urn:example:i30'). +'urn:example:i25'('urn:example:i54', 'urn:example:i30'). +'urn:example:i25'('urn:example:i56', 'urn:example:i24'). +'urn:example:i25'('urn:example:i57', 'urn:example:i99'). +'urn:example:i25'('urn:example:i5', 'urn:example:i21'). +'urn:example:i25'('urn:example:i5', 'urn:example:i45'). +'urn:example:i25'('urn:example:i61', 'urn:example:i0'). +'urn:example:i25'('urn:example:i61', 'urn:example:i36'). +'urn:example:i25'('urn:example:i61', 'urn:example:i96'). +'urn:example:i25'('urn:example:i62', 'urn:example:i36'). +'urn:example:i25'('urn:example:i62', 'urn:example:i39'). +'urn:example:i25'('urn:example:i62', 'urn:example:i51'). +'urn:example:i25'('urn:example:i62', 'urn:example:i96'). +'urn:example:i25'('urn:example:i63', 'urn:example:i87'). +'urn:example:i25'('urn:example:i63', 'urn:example:i96'). +'urn:example:i25'('urn:example:i64', 'urn:example:i48'). +'urn:example:i25'('urn:example:i67', 'urn:example:i69'). +'urn:example:i25'('urn:example:i68', 'urn:example:i45'). +'urn:example:i25'('urn:example:i6', 'urn:example:i69'). +'urn:example:i25'('urn:example:i6', 'urn:example:i6'). +'urn:example:i25'('urn:example:i70', 'urn:example:i12'). +'urn:example:i25'('urn:example:i71', 'urn:example:i18'). +'urn:example:i25'('urn:example:i71', 'urn:example:i75'). +'urn:example:i25'('urn:example:i72', 'urn:example:i27'). +'urn:example:i25'('urn:example:i75', 'urn:example:i21'). +'urn:example:i25'('urn:example:i76', 'urn:example:i84'). +'urn:example:i25'('urn:example:i77', 'urn:example:i21'). +'urn:example:i25'('urn:example:i78', 'urn:example:i57'). +'urn:example:i25'('urn:example:i78', 'urn:example:i96'). +'urn:example:i25'('urn:example:i82', 'urn:example:i30'). +'urn:example:i25'('urn:example:i83', 'urn:example:i0'). +'urn:example:i25'('urn:example:i83', 'urn:example:i24'). +'urn:example:i25'('urn:example:i83', 'urn:example:i75'). +'urn:example:i25'('urn:example:i83', 'urn:example:i81'). +'urn:example:i25'('urn:example:i87', 'urn:example:i9'). +'urn:example:i25'('urn:example:i89', 'urn:example:i27'). +'urn:example:i25'('urn:example:i89', 'urn:example:i81'). +'urn:example:i25'('urn:example:i8', 'urn:example:i57'). +'urn:example:i25'('urn:example:i92', 'urn:example:i3'). +'urn:example:i25'('urn:example:i92', 'urn:example:i66'). +'urn:example:i25'('urn:example:i92', 'urn:example:i93'). +'urn:example:i25'('urn:example:i95', 'urn:example:i15'). +'urn:example:i25'('urn:example:i95', 'urn:example:i66'). +'urn:example:i25'('urn:example:i97', 'urn:example:i45'). +'urn:example:i26'('urn:example:i0', 'urn:example:i33'). +'urn:example:i26'('urn:example:i10', 'urn:example:i84'). +'urn:example:i26'('urn:example:i12', 'urn:example:i21'). +'urn:example:i26'('urn:example:i12', 'urn:example:i48'). +'urn:example:i26'('urn:example:i13', 'urn:example:i0'). +'urn:example:i26'('urn:example:i14', 'urn:example:i27'). +'urn:example:i26'('urn:example:i14', 'urn:example:i36'). +'urn:example:i26'('urn:example:i14', 'urn:example:i84'). +'urn:example:i26'('urn:example:i15', 'urn:example:i24'). +'urn:example:i26'('urn:example:i15', 'urn:example:i60'). +'urn:example:i26'('urn:example:i18', 'urn:example:i60'). +'urn:example:i26'('urn:example:i18', 'urn:example:i69'). +'urn:example:i26'('urn:example:i19', 'urn:example:i3'). +'urn:example:i26'('urn:example:i19', 'urn:example:i63'). +'urn:example:i26'('urn:example:i19', 'urn:example:i87'). +'urn:example:i26'('urn:example:i1', 'urn:example:i66'). +'urn:example:i26'('urn:example:i1', 'urn:example:i87'). +'urn:example:i26'('urn:example:i22', 'urn:example:i78'). +'urn:example:i26'('urn:example:i22', 'urn:example:i9'). +'urn:example:i26'('urn:example:i24', 'urn:example:i72'). +'urn:example:i26'('urn:example:i26', 'urn:example:i9'). +'urn:example:i26'('urn:example:i27', 'urn:example:i72'). +'urn:example:i26'('urn:example:i27', 'urn:example:i93'). +'urn:example:i26'('urn:example:i28', 'urn:example:i27'). +'urn:example:i26'('urn:example:i28', 'urn:example:i57'). +'urn:example:i26'('urn:example:i2', 'urn:example:i63'). +'urn:example:i26'('urn:example:i32', 'urn:example:i36'). +'urn:example:i26'('urn:example:i33', 'urn:example:i15'). +'urn:example:i26'('urn:example:i35', 'urn:example:i87'). +'urn:example:i26'('urn:example:i36', 'urn:example:i51'). +'urn:example:i26'('urn:example:i36', 'urn:example:i87'). +'urn:example:i26'('urn:example:i37', 'urn:example:i21'). +'urn:example:i26'('urn:example:i37', 'urn:example:i66'). +'urn:example:i26'('urn:example:i39', 'urn:example:i30'). +'urn:example:i26'('urn:example:i39', 'urn:example:i54'). +'urn:example:i26'('urn:example:i3', 'urn:example:i93'). +'urn:example:i26'('urn:example:i41', 'urn:example:i63'). +'urn:example:i26'('urn:example:i42', 'urn:example:i51'). +'urn:example:i26'('urn:example:i43', 'urn:example:i60'). +'urn:example:i26'('urn:example:i45', 'urn:example:i36'). +'urn:example:i26'('urn:example:i46', 'urn:example:i78'). +'urn:example:i26'('urn:example:i47', 'urn:example:i54'). +'urn:example:i26'('urn:example:i47', 'urn:example:i57'). +'urn:example:i26'('urn:example:i48', 'urn:example:i66'). +'urn:example:i26'('urn:example:i48', 'urn:example:i90'). +'urn:example:i26'('urn:example:i49', 'urn:example:i57'). +'urn:example:i26'('urn:example:i49', 'urn:example:i57'). +'urn:example:i26'('urn:example:i4', 'urn:example:i3'). +'urn:example:i26'('urn:example:i50', 'urn:example:i24'). +'urn:example:i26'('urn:example:i50', 'urn:example:i30'). +'urn:example:i26'('urn:example:i51', 'urn:example:i18'). +'urn:example:i26'('urn:example:i54', 'urn:example:i33'). +'urn:example:i26'('urn:example:i54', 'urn:example:i75'). +'urn:example:i26'('urn:example:i54', 'urn:example:i87'). +'urn:example:i26'('urn:example:i54', 'urn:example:i99'). +'urn:example:i26'('urn:example:i54', 'urn:example:i9'). +'urn:example:i26'('urn:example:i56', 'urn:example:i36'). +'urn:example:i26'('urn:example:i58', 'urn:example:i51'). +'urn:example:i26'('urn:example:i5', 'urn:example:i24'). +'urn:example:i26'('urn:example:i60', 'urn:example:i12'). +'urn:example:i26'('urn:example:i60', 'urn:example:i72'). +'urn:example:i26'('urn:example:i64', 'urn:example:i51'). +'urn:example:i26'('urn:example:i65', 'urn:example:i27'). +'urn:example:i26'('urn:example:i66', 'urn:example:i42'). +'urn:example:i26'('urn:example:i67', 'urn:example:i33'). +'urn:example:i26'('urn:example:i68', 'urn:example:i6'). +'urn:example:i26'('urn:example:i68', 'urn:example:i75'). +'urn:example:i26'('urn:example:i68', 'urn:example:i75'). +'urn:example:i26'('urn:example:i68', 'urn:example:i84'). +'urn:example:i26'('urn:example:i68', 'urn:example:i84'). +'urn:example:i26'('urn:example:i68', 'urn:example:i96'). +'urn:example:i26'('urn:example:i68', 'urn:example:i9'). +'urn:example:i26'('urn:example:i69', 'urn:example:i87'). +'urn:example:i26'('urn:example:i6', 'urn:example:i72'). +'urn:example:i26'('urn:example:i71', 'urn:example:i3'). +'urn:example:i26'('urn:example:i73', 'urn:example:i96'). +'urn:example:i26'('urn:example:i75', 'urn:example:i63'). +'urn:example:i26'('urn:example:i75', 'urn:example:i9'). +'urn:example:i26'('urn:example:i77', 'urn:example:i36'). +'urn:example:i26'('urn:example:i7', 'urn:example:i78'). +'urn:example:i26'('urn:example:i80', 'urn:example:i18'). +'urn:example:i26'('urn:example:i82', 'urn:example:i42'). +'urn:example:i26'('urn:example:i82', 'urn:example:i81'). +'urn:example:i26'('urn:example:i83', 'urn:example:i18'). +'urn:example:i26'('urn:example:i84', 'urn:example:i39'). +'urn:example:i26'('urn:example:i84', 'urn:example:i48'). +'urn:example:i26'('urn:example:i84', 'urn:example:i93'). +'urn:example:i26'('urn:example:i85', 'urn:example:i6'). +'urn:example:i26'('urn:example:i85', 'urn:example:i6'). +'urn:example:i26'('urn:example:i86', 'urn:example:i12'). +'urn:example:i26'('urn:example:i87', 'urn:example:i78'). +'urn:example:i26'('urn:example:i88', 'urn:example:i78'). +'urn:example:i26'('urn:example:i8', 'urn:example:i33'). +'urn:example:i26'('urn:example:i8', 'urn:example:i36'). +'urn:example:i26'('urn:example:i90', 'urn:example:i39'). +'urn:example:i26'('urn:example:i90', 'urn:example:i63'). +'urn:example:i26'('urn:example:i91', 'urn:example:i57'). +'urn:example:i26'('urn:example:i94', 'urn:example:i3'). +'urn:example:i26'('urn:example:i94', 'urn:example:i93'). +'urn:example:i26'('urn:example:i96', 'urn:example:i42'). +'urn:example:i26'('urn:example:i96', 'urn:example:i87'). +'urn:example:i26'('urn:example:i98', 'urn:example:i42'). +'urn:example:i26'('urn:example:i98', 'urn:example:i9'). +'urn:example:i26'('urn:example:i99', 'urn:example:i45'). +'urn:example:i26'('urn:example:i9', 'urn:example:i24'). +'urn:example:i27'('urn:example:i12', 'urn:example:i84'). +'urn:example:i27'('urn:example:i13', 'urn:example:i87'). +'urn:example:i27'('urn:example:i13', 'urn:example:i93'). +'urn:example:i27'('urn:example:i15', 'urn:example:i81'). +'urn:example:i27'('urn:example:i16', 'urn:example:i48'). +'urn:example:i27'('urn:example:i16', 'urn:example:i57'). +'urn:example:i27'('urn:example:i1', 'urn:example:i72'). +'urn:example:i27'('urn:example:i20', 'urn:example:i0'). +'urn:example:i27'('urn:example:i21', 'urn:example:i72'). +'urn:example:i27'('urn:example:i21', 'urn:example:i75'). +'urn:example:i27'('urn:example:i22', 'urn:example:i39'). +'urn:example:i27'('urn:example:i25', 'urn:example:i24'). +'urn:example:i27'('urn:example:i25', 'urn:example:i78'). +'urn:example:i27'('urn:example:i25', 'urn:example:i84'). +'urn:example:i27'('urn:example:i26', 'urn:example:i33'). +'urn:example:i27'('urn:example:i27', 'urn:example:i15'). +'urn:example:i27'('urn:example:i27', 'urn:example:i9'). +'urn:example:i27'('urn:example:i28', 'urn:example:i24'). +'urn:example:i27'('urn:example:i28', 'urn:example:i69'). +'urn:example:i27'('urn:example:i28', 'urn:example:i84'). +'urn:example:i27'('urn:example:i30', 'urn:example:i27'). +'urn:example:i27'('urn:example:i34', 'urn:example:i36'). +'urn:example:i27'('urn:example:i35', 'urn:example:i12'). +'urn:example:i27'('urn:example:i35', 'urn:example:i72'). +'urn:example:i27'('urn:example:i36', 'urn:example:i57'). +'urn:example:i27'('urn:example:i36', 'urn:example:i87'). +'urn:example:i27'('urn:example:i37', 'urn:example:i81'). +'urn:example:i27'('urn:example:i38', 'urn:example:i27'). +'urn:example:i27'('urn:example:i38', 'urn:example:i84'). +'urn:example:i27'('urn:example:i39', 'urn:example:i69'). +'urn:example:i27'('urn:example:i39', 'urn:example:i84'). +'urn:example:i27'('urn:example:i3', 'urn:example:i24'). +'urn:example:i27'('urn:example:i3', 'urn:example:i30'). +'urn:example:i27'('urn:example:i40', 'urn:example:i45'). +'urn:example:i27'('urn:example:i44', 'urn:example:i3'). +'urn:example:i27'('urn:example:i44', 'urn:example:i45'). +'urn:example:i27'('urn:example:i46', 'urn:example:i57'). +'urn:example:i27'('urn:example:i47', 'urn:example:i60'). +'urn:example:i27'('urn:example:i49', 'urn:example:i90'). +'urn:example:i27'('urn:example:i4', 'urn:example:i72'). +'urn:example:i27'('urn:example:i4', 'urn:example:i90'). +'urn:example:i27'('urn:example:i50', 'urn:example:i33'). +'urn:example:i27'('urn:example:i51', 'urn:example:i96'). +'urn:example:i27'('urn:example:i52', 'urn:example:i72'). +'urn:example:i27'('urn:example:i53', 'urn:example:i48'). +'urn:example:i27'('urn:example:i53', 'urn:example:i84'). +'urn:example:i27'('urn:example:i54', 'urn:example:i3'). +'urn:example:i27'('urn:example:i55', 'urn:example:i12'). +'urn:example:i27'('urn:example:i55', 'urn:example:i15'). +'urn:example:i27'('urn:example:i55', 'urn:example:i60'). +'urn:example:i27'('urn:example:i55', 'urn:example:i6'). +'urn:example:i27'('urn:example:i55', 'urn:example:i75'). +'urn:example:i27'('urn:example:i55', 'urn:example:i90'). +'urn:example:i27'('urn:example:i55', 'urn:example:i96'). +'urn:example:i27'('urn:example:i58', 'urn:example:i90'). +'urn:example:i27'('urn:example:i5', 'urn:example:i81'). +'urn:example:i27'('urn:example:i60', 'urn:example:i33'). +'urn:example:i27'('urn:example:i61', 'urn:example:i18'). +'urn:example:i27'('urn:example:i61', 'urn:example:i45'). +'urn:example:i27'('urn:example:i64', 'urn:example:i33'). +'urn:example:i27'('urn:example:i64', 'urn:example:i39'). +'urn:example:i27'('urn:example:i68', 'urn:example:i48'). +'urn:example:i27'('urn:example:i69', 'urn:example:i9'). +'urn:example:i27'('urn:example:i6', 'urn:example:i33'). +'urn:example:i27'('urn:example:i70', 'urn:example:i60'). +'urn:example:i27'('urn:example:i71', 'urn:example:i15'). +'urn:example:i27'('urn:example:i72', 'urn:example:i21'). +'urn:example:i27'('urn:example:i73', 'urn:example:i78'). +'urn:example:i27'('urn:example:i76', 'urn:example:i21'). +'urn:example:i27'('urn:example:i76', 'urn:example:i9'). +'urn:example:i27'('urn:example:i82', 'urn:example:i60'). +'urn:example:i27'('urn:example:i84', 'urn:example:i39'). +'urn:example:i27'('urn:example:i84', 'urn:example:i42'). +'urn:example:i27'('urn:example:i86', 'urn:example:i3'). +'urn:example:i27'('urn:example:i87', 'urn:example:i30'). +'urn:example:i27'('urn:example:i88', 'urn:example:i18'). +'urn:example:i27'('urn:example:i89', 'urn:example:i75'). +'urn:example:i27'('urn:example:i8', 'urn:example:i15'). +'urn:example:i27'('urn:example:i90', 'urn:example:i24'). +'urn:example:i27'('urn:example:i90', 'urn:example:i81'). +'urn:example:i27'('urn:example:i91', 'urn:example:i63'). +'urn:example:i27'('urn:example:i91', 'urn:example:i72'). +'urn:example:i27'('urn:example:i92', 'urn:example:i81'). +'urn:example:i27'('urn:example:i92', 'urn:example:i9'). +'urn:example:i27'('urn:example:i96', 'urn:example:i27'). +'urn:example:i27'('urn:example:i98', 'urn:example:i84'). +'urn:example:i27'('urn:example:i99', 'urn:example:i66'). +'urn:example:i28'('urn:example:i0', 'urn:example:i57'). +'urn:example:i28'('urn:example:i0', 'urn:example:i66'). +'urn:example:i28'('urn:example:i10', 'urn:example:i39'). +'urn:example:i28'('urn:example:i10', 'urn:example:i81'). +'urn:example:i28'('urn:example:i10', 'urn:example:i84'). +'urn:example:i28'('urn:example:i11', 'urn:example:i18'). +'urn:example:i28'('urn:example:i11', 'urn:example:i78'). +'urn:example:i28'('urn:example:i12', 'urn:example:i0'). +'urn:example:i28'('urn:example:i15', 'urn:example:i36'). +'urn:example:i28'('urn:example:i16', 'urn:example:i27'). +'urn:example:i28'('urn:example:i16', 'urn:example:i96'). +'urn:example:i28'('urn:example:i18', 'urn:example:i78'). +'urn:example:i28'('urn:example:i20', 'urn:example:i30'). +'urn:example:i28'('urn:example:i22', 'urn:example:i93'). +'urn:example:i28'('urn:example:i23', 'urn:example:i27'). +'urn:example:i28'('urn:example:i23', 'urn:example:i27'). +'urn:example:i28'('urn:example:i23', 'urn:example:i33'). +'urn:example:i28'('urn:example:i23', 'urn:example:i51'). +'urn:example:i28'('urn:example:i26', 'urn:example:i57'). +'urn:example:i28'('urn:example:i26', 'urn:example:i57'). +'urn:example:i28'('urn:example:i28', 'urn:example:i78'). +'urn:example:i28'('urn:example:i29', 'urn:example:i60'). +'urn:example:i28'('urn:example:i29', 'urn:example:i96'). +'urn:example:i28'('urn:example:i2', 'urn:example:i78'). +'urn:example:i28'('urn:example:i2', 'urn:example:i96'). +'urn:example:i28'('urn:example:i30', 'urn:example:i60'). +'urn:example:i28'('urn:example:i30', 'urn:example:i84'). +'urn:example:i28'('urn:example:i31', 'urn:example:i81'). +'urn:example:i28'('urn:example:i31', 'urn:example:i90'). +'urn:example:i28'('urn:example:i34', 'urn:example:i18'). +'urn:example:i28'('urn:example:i34', 'urn:example:i21'). +'urn:example:i28'('urn:example:i35', 'urn:example:i27'). +'urn:example:i28'('urn:example:i36', 'urn:example:i51'). +'urn:example:i28'('urn:example:i36', 'urn:example:i66'). +'urn:example:i28'('urn:example:i36', 'urn:example:i6'). +'urn:example:i28'('urn:example:i37', 'urn:example:i24'). +'urn:example:i28'('urn:example:i3', 'urn:example:i39'). +'urn:example:i28'('urn:example:i40', 'urn:example:i57'). +'urn:example:i28'('urn:example:i40', 'urn:example:i87'). +'urn:example:i28'('urn:example:i42', 'urn:example:i78'). +'urn:example:i28'('urn:example:i43', 'urn:example:i66'). +'urn:example:i28'('urn:example:i43', 'urn:example:i69'). +'urn:example:i28'('urn:example:i46', 'urn:example:i63'). +'urn:example:i28'('urn:example:i4', 'urn:example:i60'). +'urn:example:i28'('urn:example:i4', 'urn:example:i87'). +'urn:example:i28'('urn:example:i4', 'urn:example:i93'). +'urn:example:i28'('urn:example:i52', 'urn:example:i39'). +'urn:example:i28'('urn:example:i53', 'urn:example:i90'). +'urn:example:i28'('urn:example:i53', 'urn:example:i96'). +'urn:example:i28'('urn:example:i56', 'urn:example:i66'). +'urn:example:i28'('urn:example:i57', 'urn:example:i75'). +'urn:example:i28'('urn:example:i58', 'urn:example:i81'). +'urn:example:i28'('urn:example:i58', 'urn:example:i90'). +'urn:example:i28'('urn:example:i58', 'urn:example:i96'). +'urn:example:i28'('urn:example:i59', 'urn:example:i87'). +'urn:example:i28'('urn:example:i5', 'urn:example:i9'). +'urn:example:i28'('urn:example:i61', 'urn:example:i78'). +'urn:example:i28'('urn:example:i64', 'urn:example:i42'). +'urn:example:i28'('urn:example:i64', 'urn:example:i87'). +'urn:example:i28'('urn:example:i65', 'urn:example:i15'). +'urn:example:i28'('urn:example:i65', 'urn:example:i75'). +'urn:example:i28'('urn:example:i67', 'urn:example:i18'). +'urn:example:i28'('urn:example:i67', 'urn:example:i24'). +'urn:example:i28'('urn:example:i67', 'urn:example:i48'). +'urn:example:i28'('urn:example:i69', 'urn:example:i96'). +'urn:example:i28'('urn:example:i6', 'urn:example:i87'). +'urn:example:i28'('urn:example:i70', 'urn:example:i12'). +'urn:example:i28'('urn:example:i70', 'urn:example:i21'). +'urn:example:i28'('urn:example:i71', 'urn:example:i3'). +'urn:example:i28'('urn:example:i72', 'urn:example:i63'). +'urn:example:i28'('urn:example:i74', 'urn:example:i18'). +'urn:example:i28'('urn:example:i74', 'urn:example:i30'). +'urn:example:i28'('urn:example:i75', 'urn:example:i78'). +'urn:example:i28'('urn:example:i76', 'urn:example:i57'). +'urn:example:i28'('urn:example:i77', 'urn:example:i45'). +'urn:example:i28'('urn:example:i77', 'urn:example:i78'). +'urn:example:i28'('urn:example:i78', 'urn:example:i18'). +'urn:example:i28'('urn:example:i78', 'urn:example:i48'). +'urn:example:i28'('urn:example:i78', 'urn:example:i87'). +'urn:example:i28'('urn:example:i79', 'urn:example:i81'). +'urn:example:i28'('urn:example:i7', 'urn:example:i72'). +'urn:example:i28'('urn:example:i7', 'urn:example:i72'). +'urn:example:i28'('urn:example:i81', 'urn:example:i15'). +'urn:example:i28'('urn:example:i82', 'urn:example:i12'). +'urn:example:i28'('urn:example:i82', 'urn:example:i66'). +'urn:example:i28'('urn:example:i82', 'urn:example:i87'). +'urn:example:i28'('urn:example:i83', 'urn:example:i0'). +'urn:example:i28'('urn:example:i83', 'urn:example:i45'). +'urn:example:i28'('urn:example:i84', 'urn:example:i96'). +'urn:example:i28'('urn:example:i85', 'urn:example:i45'). +'urn:example:i28'('urn:example:i86', 'urn:example:i18'). +'urn:example:i28'('urn:example:i87', 'urn:example:i81'). +'urn:example:i28'('urn:example:i89', 'urn:example:i84'). +'urn:example:i28'('urn:example:i8', 'urn:example:i24'). +'urn:example:i28'('urn:example:i8', 'urn:example:i45'). +'urn:example:i28'('urn:example:i8', 'urn:example:i75'). +'urn:example:i28'('urn:example:i8', 'urn:example:i84'). +'urn:example:i28'('urn:example:i91', 'urn:example:i42'). +'urn:example:i28'('urn:example:i91', 'urn:example:i75'). +'urn:example:i28'('urn:example:i92', 'urn:example:i72'). +'urn:example:i28'('urn:example:i93', 'urn:example:i42'). +'urn:example:i28'('urn:example:i94', 'urn:example:i57'). +'urn:example:i28'('urn:example:i95', 'urn:example:i93'). +'urn:example:i28'('urn:example:i97', 'urn:example:i69'). +'urn:example:i28'('urn:example:i9', 'urn:example:i24'). +'urn:example:i29'('urn:example:i0', 'urn:example:i33'). +'urn:example:i29'('urn:example:i10', 'urn:example:i84'). +'urn:example:i29'('urn:example:i10', 'urn:example:i96'). +'urn:example:i29'('urn:example:i11', 'urn:example:i69'). +'urn:example:i29'('urn:example:i12', 'urn:example:i12'). +'urn:example:i29'('urn:example:i12', 'urn:example:i24'). +'urn:example:i29'('urn:example:i13', 'urn:example:i60'). +'urn:example:i29'('urn:example:i14', 'urn:example:i15'). +'urn:example:i29'('urn:example:i14', 'urn:example:i51'). +'urn:example:i29'('urn:example:i14', 'urn:example:i9'). +'urn:example:i29'('urn:example:i17', 'urn:example:i48'). +'urn:example:i29'('urn:example:i19', 'urn:example:i51'). +'urn:example:i29'('urn:example:i1', 'urn:example:i39'). +'urn:example:i29'('urn:example:i1', 'urn:example:i57'). +'urn:example:i29'('urn:example:i21', 'urn:example:i15'). +'urn:example:i29'('urn:example:i21', 'urn:example:i69'). +'urn:example:i29'('urn:example:i22', 'urn:example:i36'). +'urn:example:i29'('urn:example:i22', 'urn:example:i69'). +'urn:example:i29'('urn:example:i22', 'urn:example:i6'). +'urn:example:i29'('urn:example:i24', 'urn:example:i96'). +'urn:example:i29'('urn:example:i25', 'urn:example:i24'). +'urn:example:i29'('urn:example:i25', 'urn:example:i75'). +'urn:example:i29'('urn:example:i25', 'urn:example:i93'). +'urn:example:i29'('urn:example:i25', 'urn:example:i9'). +'urn:example:i29'('urn:example:i26', 'urn:example:i78'). +'urn:example:i29'('urn:example:i27', 'urn:example:i21'). +'urn:example:i29'('urn:example:i2', 'urn:example:i0'). +'urn:example:i29'('urn:example:i2', 'urn:example:i42'). +'urn:example:i29'('urn:example:i30', 'urn:example:i78'). +'urn:example:i29'('urn:example:i30', 'urn:example:i96'). +'urn:example:i29'('urn:example:i31', 'urn:example:i21'). +'urn:example:i29'('urn:example:i31', 'urn:example:i84'). +'urn:example:i29'('urn:example:i32', 'urn:example:i42'). +'urn:example:i29'('urn:example:i32', 'urn:example:i66'). +'urn:example:i29'('urn:example:i32', 'urn:example:i96'). +'urn:example:i29'('urn:example:i33', 'urn:example:i12'). +'urn:example:i29'('urn:example:i36', 'urn:example:i93'). +'urn:example:i29'('urn:example:i38', 'urn:example:i0'). +'urn:example:i29'('urn:example:i38', 'urn:example:i84'). +'urn:example:i29'('urn:example:i39', 'urn:example:i39'). +'urn:example:i29'('urn:example:i39', 'urn:example:i72'). +'urn:example:i29'('urn:example:i39', 'urn:example:i96'). +'urn:example:i29'('urn:example:i3', 'urn:example:i84'). +'urn:example:i29'('urn:example:i40', 'urn:example:i48'). +'urn:example:i29'('urn:example:i40', 'urn:example:i57'). +'urn:example:i29'('urn:example:i40', 'urn:example:i90'). +'urn:example:i29'('urn:example:i41', 'urn:example:i30'). +'urn:example:i29'('urn:example:i42', 'urn:example:i87'). +'urn:example:i29'('urn:example:i44', 'urn:example:i42'). +'urn:example:i29'('urn:example:i44', 'urn:example:i69'). +'urn:example:i29'('urn:example:i46', 'urn:example:i72'). +'urn:example:i29'('urn:example:i47', 'urn:example:i57'). +'urn:example:i29'('urn:example:i49', 'urn:example:i45'). +'urn:example:i29'('urn:example:i4', 'urn:example:i27'). +'urn:example:i29'('urn:example:i4', 'urn:example:i72'). +'urn:example:i29'('urn:example:i52', 'urn:example:i72'). +'urn:example:i29'('urn:example:i54', 'urn:example:i24'). +'urn:example:i29'('urn:example:i54', 'urn:example:i33'). +'urn:example:i29'('urn:example:i58', 'urn:example:i78'). +'urn:example:i29'('urn:example:i58', 'urn:example:i84'). +'urn:example:i29'('urn:example:i5', 'urn:example:i12'). +'urn:example:i29'('urn:example:i5', 'urn:example:i18'). +'urn:example:i29'('urn:example:i5', 'urn:example:i81'). +'urn:example:i29'('urn:example:i60', 'urn:example:i21'). +'urn:example:i29'('urn:example:i61', 'urn:example:i24'). +'urn:example:i29'('urn:example:i61', 'urn:example:i42'). +'urn:example:i29'('urn:example:i62', 'urn:example:i57'). +'urn:example:i29'('urn:example:i62', 'urn:example:i72'). +'urn:example:i29'('urn:example:i64', 'urn:example:i51'). +'urn:example:i29'('urn:example:i65', 'urn:example:i87'). +'urn:example:i29'('urn:example:i69', 'urn:example:i63'). +'urn:example:i29'('urn:example:i70', 'urn:example:i15'). +'urn:example:i29'('urn:example:i72', 'urn:example:i6'). +'urn:example:i29'('urn:example:i72', 'urn:example:i6'). +'urn:example:i29'('urn:example:i73', 'urn:example:i33'). +'urn:example:i29'('urn:example:i73', 'urn:example:i51'). +'urn:example:i29'('urn:example:i73', 'urn:example:i96'). +'urn:example:i29'('urn:example:i74', 'urn:example:i81'). +'urn:example:i29'('urn:example:i74', 'urn:example:i87'). +'urn:example:i29'('urn:example:i75', 'urn:example:i0'). +'urn:example:i29'('urn:example:i75', 'urn:example:i36'). +'urn:example:i29'('urn:example:i76', 'urn:example:i48'). +'urn:example:i29'('urn:example:i77', 'urn:example:i75'). +'urn:example:i29'('urn:example:i77', 'urn:example:i78'). +'urn:example:i29'('urn:example:i79', 'urn:example:i33'). +'urn:example:i29'('urn:example:i81', 'urn:example:i69'). +'urn:example:i29'('urn:example:i84', 'urn:example:i81'). +'urn:example:i29'('urn:example:i86', 'urn:example:i21'). +'urn:example:i29'('urn:example:i88', 'urn:example:i27'). +'urn:example:i29'('urn:example:i88', 'urn:example:i66'). +'urn:example:i29'('urn:example:i90', 'urn:example:i6'). +'urn:example:i29'('urn:example:i91', 'urn:example:i48'). +'urn:example:i29'('urn:example:i93', 'urn:example:i42'). +'urn:example:i29'('urn:example:i95', 'urn:example:i57'). +'urn:example:i29'('urn:example:i95', 'urn:example:i66'). +'urn:example:i29'('urn:example:i95', 'urn:example:i81'). +'urn:example:i29'('urn:example:i96', 'urn:example:i60'). +'urn:example:i29'('urn:example:i96', 'urn:example:i63'). +'urn:example:i29'('urn:example:i96', 'urn:example:i78'). +'urn:example:i29'('urn:example:i97', 'urn:example:i81'). +'urn:example:i29'('urn:example:i98', 'urn:example:i24'). +'urn:example:i29'('urn:example:i99', 'urn:example:i42'). +'urn:example:i2'('urn:example:i0', 'urn:example:i24'). +'urn:example:i2'('urn:example:i0', 'urn:example:i51'). +'urn:example:i2'('urn:example:i10', 'urn:example:i57'). +'urn:example:i2'('urn:example:i11', 'urn:example:i0'). +'urn:example:i2'('urn:example:i11', 'urn:example:i51'). +'urn:example:i2'('urn:example:i13', 'urn:example:i78'). +'urn:example:i2'('urn:example:i14', 'urn:example:i36'). +'urn:example:i2'('urn:example:i16', 'urn:example:i96'). +'urn:example:i2'('urn:example:i18', 'urn:example:i51'). +'urn:example:i2'('urn:example:i18', 'urn:example:i72'). +'urn:example:i2'('urn:example:i18', 'urn:example:i78'). +'urn:example:i2'('urn:example:i19', 'urn:example:i42'). +'urn:example:i2'('urn:example:i1', 'urn:example:i6'). +'urn:example:i2'('urn:example:i21', 'urn:example:i42'). +'urn:example:i2'('urn:example:i22', 'urn:example:i75'). +'urn:example:i2'('urn:example:i24', 'urn:example:i12'). +'urn:example:i2'('urn:example:i26', 'urn:example:i18'). +'urn:example:i2'('urn:example:i27', 'urn:example:i24'). +'urn:example:i2'('urn:example:i27', 'urn:example:i66'). +'urn:example:i2'('urn:example:i27', 'urn:example:i72'). +'urn:example:i2'('urn:example:i27', 'urn:example:i9'). +'urn:example:i2'('urn:example:i28', 'urn:example:i90'). +'urn:example:i2'('urn:example:i29', 'urn:example:i99'). +'urn:example:i2'('urn:example:i30', 'urn:example:i45'). +'urn:example:i2'('urn:example:i31', 'urn:example:i33'). +'urn:example:i2'('urn:example:i33', 'urn:example:i87'). +'urn:example:i2'('urn:example:i34', 'urn:example:i57'). +'urn:example:i2'('urn:example:i36', 'urn:example:i51'). +'urn:example:i2'('urn:example:i36', 'urn:example:i75'). +'urn:example:i2'('urn:example:i37', 'urn:example:i72'). +'urn:example:i2'('urn:example:i3', 'urn:example:i15'). +'urn:example:i2'('urn:example:i3', 'urn:example:i3'). +'urn:example:i2'('urn:example:i3', 'urn:example:i93'). +'urn:example:i2'('urn:example:i40', 'urn:example:i18'). +'urn:example:i2'('urn:example:i40', 'urn:example:i60'). +'urn:example:i2'('urn:example:i40', 'urn:example:i63'). +'urn:example:i2'('urn:example:i41', 'urn:example:i21'). +'urn:example:i2'('urn:example:i45', 'urn:example:i24'). +'urn:example:i2'('urn:example:i46', 'urn:example:i51'). +'urn:example:i2'('urn:example:i48', 'urn:example:i3'). +'urn:example:i2'('urn:example:i50', 'urn:example:i87'). +'urn:example:i2'('urn:example:i52', 'urn:example:i30'). +'urn:example:i2'('urn:example:i52', 'urn:example:i78'). +'urn:example:i2'('urn:example:i53', 'urn:example:i33'). +'urn:example:i2'('urn:example:i53', 'urn:example:i87'). +'urn:example:i2'('urn:example:i54', 'urn:example:i21'). +'urn:example:i2'('urn:example:i54', 'urn:example:i60'). +'urn:example:i2'('urn:example:i54', 'urn:example:i69'). +'urn:example:i2'('urn:example:i55', 'urn:example:i42'). +'urn:example:i2'('urn:example:i55', 'urn:example:i87'). +'urn:example:i2'('urn:example:i56', 'urn:example:i39'). +'urn:example:i2'('urn:example:i57', 'urn:example:i24'). +'urn:example:i2'('urn:example:i57', 'urn:example:i3'). +'urn:example:i2'('urn:example:i62', 'urn:example:i30'). +'urn:example:i2'('urn:example:i64', 'urn:example:i0'). +'urn:example:i2'('urn:example:i64', 'urn:example:i18'). +'urn:example:i2'('urn:example:i66', 'urn:example:i27'). +'urn:example:i2'('urn:example:i69', 'urn:example:i12'). +'urn:example:i2'('urn:example:i70', 'urn:example:i6'). +'urn:example:i2'('urn:example:i73', 'urn:example:i90'). +'urn:example:i2'('urn:example:i74', 'urn:example:i93'). +'urn:example:i2'('urn:example:i75', 'urn:example:i27'). +'urn:example:i2'('urn:example:i75', 'urn:example:i90'). +'urn:example:i2'('urn:example:i76', 'urn:example:i33'). +'urn:example:i2'('urn:example:i76', 'urn:example:i63'). +'urn:example:i2'('urn:example:i77', 'urn:example:i36'). +'urn:example:i2'('urn:example:i78', 'urn:example:i57'). +'urn:example:i2'('urn:example:i79', 'urn:example:i36'). +'urn:example:i2'('urn:example:i7', 'urn:example:i90'). +'urn:example:i2'('urn:example:i80', 'urn:example:i45'). +'urn:example:i2'('urn:example:i81', 'urn:example:i3'). +'urn:example:i2'('urn:example:i82', 'urn:example:i12'). +'urn:example:i2'('urn:example:i82', 'urn:example:i21'). +'urn:example:i2'('urn:example:i82', 'urn:example:i45'). +'urn:example:i2'('urn:example:i83', 'urn:example:i27'). +'urn:example:i2'('urn:example:i83', 'urn:example:i90'). +'urn:example:i2'('urn:example:i83', 'urn:example:i99'). +'urn:example:i2'('urn:example:i87', 'urn:example:i51'). +'urn:example:i2'('urn:example:i87', 'urn:example:i69'). +'urn:example:i2'('urn:example:i87', 'urn:example:i84'). +'urn:example:i2'('urn:example:i89', 'urn:example:i96'). +'urn:example:i2'('urn:example:i8', 'urn:example:i48'). +'urn:example:i2'('urn:example:i8', 'urn:example:i72'). +'urn:example:i2'('urn:example:i8', 'urn:example:i84'). +'urn:example:i2'('urn:example:i8', 'urn:example:i84'). +'urn:example:i2'('urn:example:i93', 'urn:example:i51'). +'urn:example:i2'('urn:example:i93', 'urn:example:i60'). +'urn:example:i2'('urn:example:i94', 'urn:example:i81'). +'urn:example:i2'('urn:example:i94', 'urn:example:i9'). +'urn:example:i2'('urn:example:i95', 'urn:example:i15'). +'urn:example:i2'('urn:example:i95', 'urn:example:i27'). +'urn:example:i2'('urn:example:i95', 'urn:example:i63'). +'urn:example:i2'('urn:example:i97', 'urn:example:i6'). +'urn:example:i2'('urn:example:i98', 'urn:example:i69'). +'urn:example:i2'('urn:example:i98', 'urn:example:i96'). +'urn:example:i2'('urn:example:i99', 'urn:example:i15'). +'urn:example:i2'('urn:example:i99', 'urn:example:i90'). +'urn:example:i30'('urn:example:i10', 'urn:example:i39'). +'urn:example:i30'('urn:example:i10', 'urn:example:i6'). +'urn:example:i30'('urn:example:i13', 'urn:example:i60'). +'urn:example:i30'('urn:example:i13', 'urn:example:i6'). +'urn:example:i30'('urn:example:i14', 'urn:example:i21'). +'urn:example:i30'('urn:example:i14', 'urn:example:i45'). +'urn:example:i30'('urn:example:i15', 'urn:example:i30'). +'urn:example:i30'('urn:example:i16', 'urn:example:i78'). +'urn:example:i30'('urn:example:i17', 'urn:example:i36'). +'urn:example:i30'('urn:example:i20', 'urn:example:i33'). +'urn:example:i30'('urn:example:i21', 'urn:example:i18'). +'urn:example:i30'('urn:example:i21', 'urn:example:i3'). +'urn:example:i30'('urn:example:i21', 'urn:example:i63'). +'urn:example:i30'('urn:example:i22', 'urn:example:i33'). +'urn:example:i30'('urn:example:i22', 'urn:example:i87'). +'urn:example:i30'('urn:example:i24', 'urn:example:i81'). +'urn:example:i30'('urn:example:i24', 'urn:example:i96'). +'urn:example:i30'('urn:example:i25', 'urn:example:i9'). +'urn:example:i30'('urn:example:i26', 'urn:example:i78'). +'urn:example:i30'('urn:example:i27', 'urn:example:i18'). +'urn:example:i30'('urn:example:i27', 'urn:example:i39'). +'urn:example:i30'('urn:example:i29', 'urn:example:i93'). +'urn:example:i30'('urn:example:i2', 'urn:example:i54'). +'urn:example:i30'('urn:example:i30', 'urn:example:i87'). +'urn:example:i30'('urn:example:i34', 'urn:example:i36'). +'urn:example:i30'('urn:example:i36', 'urn:example:i39'). +'urn:example:i30'('urn:example:i37', 'urn:example:i42'). +'urn:example:i30'('urn:example:i39', 'urn:example:i24'). +'urn:example:i30'('urn:example:i3', 'urn:example:i48'). +'urn:example:i30'('urn:example:i3', 'urn:example:i60'). +'urn:example:i30'('urn:example:i40', 'urn:example:i87'). +'urn:example:i30'('urn:example:i41', 'urn:example:i9'). +'urn:example:i30'('urn:example:i42', 'urn:example:i15'). +'urn:example:i30'('urn:example:i42', 'urn:example:i24'). +'urn:example:i30'('urn:example:i42', 'urn:example:i87'). +'urn:example:i30'('urn:example:i43', 'urn:example:i24'). +'urn:example:i30'('urn:example:i43', 'urn:example:i42'). +'urn:example:i30'('urn:example:i43', 'urn:example:i78'). +'urn:example:i30'('urn:example:i44', 'urn:example:i15'). +'urn:example:i30'('urn:example:i44', 'urn:example:i33'). +'urn:example:i30'('urn:example:i45', 'urn:example:i3'). +'urn:example:i30'('urn:example:i45', 'urn:example:i87'). +'urn:example:i30'('urn:example:i46', 'urn:example:i12'). +'urn:example:i30'('urn:example:i46', 'urn:example:i36'). +'urn:example:i30'('urn:example:i46', 'urn:example:i6'). +'urn:example:i30'('urn:example:i47', 'urn:example:i24'). +'urn:example:i30'('urn:example:i48', 'urn:example:i90'). +'urn:example:i30'('urn:example:i49', 'urn:example:i24'). +'urn:example:i30'('urn:example:i49', 'urn:example:i66'). +'urn:example:i30'('urn:example:i4', 'urn:example:i0'). +'urn:example:i30'('urn:example:i4', 'urn:example:i39'). +'urn:example:i30'('urn:example:i51', 'urn:example:i9'). +'urn:example:i30'('urn:example:i52', 'urn:example:i48'). +'urn:example:i30'('urn:example:i52', 'urn:example:i48'). +'urn:example:i30'('urn:example:i52', 'urn:example:i90'). +'urn:example:i30'('urn:example:i54', 'urn:example:i30'). +'urn:example:i30'('urn:example:i55', 'urn:example:i54'). +'urn:example:i30'('urn:example:i56', 'urn:example:i69'). +'urn:example:i30'('urn:example:i5', 'urn:example:i24'). +'urn:example:i30'('urn:example:i5', 'urn:example:i87'). +'urn:example:i30'('urn:example:i60', 'urn:example:i36'). +'urn:example:i30'('urn:example:i60', 'urn:example:i51'). +'urn:example:i30'('urn:example:i61', 'urn:example:i87'). +'urn:example:i30'('urn:example:i63', 'urn:example:i3'). +'urn:example:i30'('urn:example:i64', 'urn:example:i36'). +'urn:example:i30'('urn:example:i64', 'urn:example:i3'). +'urn:example:i30'('urn:example:i64', 'urn:example:i78'). +'urn:example:i30'('urn:example:i67', 'urn:example:i15'). +'urn:example:i30'('urn:example:i69', 'urn:example:i6'). +'urn:example:i30'('urn:example:i6', 'urn:example:i45'). +'urn:example:i30'('urn:example:i6', 'urn:example:i75'). +'urn:example:i30'('urn:example:i6', 'urn:example:i90'). +'urn:example:i30'('urn:example:i70', 'urn:example:i45'). +'urn:example:i30'('urn:example:i70', 'urn:example:i69'). +'urn:example:i30'('urn:example:i71', 'urn:example:i63'). +'urn:example:i30'('urn:example:i72', 'urn:example:i87'). +'urn:example:i30'('urn:example:i73', 'urn:example:i3'). +'urn:example:i30'('urn:example:i79', 'urn:example:i75'). +'urn:example:i30'('urn:example:i7', 'urn:example:i54'). +'urn:example:i30'('urn:example:i80', 'urn:example:i57'). +'urn:example:i30'('urn:example:i81', 'urn:example:i48'). +'urn:example:i30'('urn:example:i81', 'urn:example:i69'). +'urn:example:i30'('urn:example:i83', 'urn:example:i75'). +'urn:example:i30'('urn:example:i84', 'urn:example:i21'). +'urn:example:i30'('urn:example:i84', 'urn:example:i96'). +'urn:example:i30'('urn:example:i85', 'urn:example:i18'). +'urn:example:i30'('urn:example:i87', 'urn:example:i90'). +'urn:example:i30'('urn:example:i8', 'urn:example:i36'). +'urn:example:i30'('urn:example:i8', 'urn:example:i60'). +'urn:example:i30'('urn:example:i90', 'urn:example:i9'). +'urn:example:i30'('urn:example:i92', 'urn:example:i3'). +'urn:example:i30'('urn:example:i92', 'urn:example:i45'). +'urn:example:i30'('urn:example:i92', 'urn:example:i60'). +'urn:example:i30'('urn:example:i94', 'urn:example:i12'). +'urn:example:i30'('urn:example:i94', 'urn:example:i12'). +'urn:example:i30'('urn:example:i94', 'urn:example:i45'). +'urn:example:i30'('urn:example:i97', 'urn:example:i15'). +'urn:example:i30'('urn:example:i97', 'urn:example:i30'). +'urn:example:i30'('urn:example:i98', 'urn:example:i12'). +'urn:example:i30'('urn:example:i98', 'urn:example:i93'). +'urn:example:i30'('urn:example:i99', 'urn:example:i12'). +'urn:example:i30'('urn:example:i99', 'urn:example:i45'). +'urn:example:i30'('urn:example:i9', 'urn:example:i12'). +'urn:example:i31'('urn:example:i10', 'urn:example:i12'). +'urn:example:i31'('urn:example:i10', 'urn:example:i24'). +'urn:example:i31'('urn:example:i10', 'urn:example:i42'). +'urn:example:i31'('urn:example:i12', 'urn:example:i18'). +'urn:example:i31'('urn:example:i12', 'urn:example:i51'). +'urn:example:i31'('urn:example:i13', 'urn:example:i63'). +'urn:example:i31'('urn:example:i13', 'urn:example:i87'). +'urn:example:i31'('urn:example:i15', 'urn:example:i3'). +'urn:example:i31'('urn:example:i18', 'urn:example:i39'). +'urn:example:i31'('urn:example:i18', 'urn:example:i57'). +'urn:example:i31'('urn:example:i19', 'urn:example:i27'). +'urn:example:i31'('urn:example:i19', 'urn:example:i45'). +'urn:example:i31'('urn:example:i19', 'urn:example:i9'). +'urn:example:i31'('urn:example:i1', 'urn:example:i18'). +'urn:example:i31'('urn:example:i1', 'urn:example:i39'). +'urn:example:i31'('urn:example:i1', 'urn:example:i51'). +'urn:example:i31'('urn:example:i20', 'urn:example:i54'). +'urn:example:i31'('urn:example:i20', 'urn:example:i57'). +'urn:example:i31'('urn:example:i20', 'urn:example:i66'). +'urn:example:i31'('urn:example:i21', 'urn:example:i42'). +'urn:example:i31'('urn:example:i22', 'urn:example:i36'). +'urn:example:i31'('urn:example:i22', 'urn:example:i75'). +'urn:example:i31'('urn:example:i23', 'urn:example:i54'). +'urn:example:i31'('urn:example:i23', 'urn:example:i84'). +'urn:example:i31'('urn:example:i24', 'urn:example:i21'). +'urn:example:i31'('urn:example:i25', 'urn:example:i9'). +'urn:example:i31'('urn:example:i27', 'urn:example:i6'). +'urn:example:i31'('urn:example:i28', 'urn:example:i3'). +'urn:example:i31'('urn:example:i28', 'urn:example:i81'). +'urn:example:i31'('urn:example:i28', 'urn:example:i84'). +'urn:example:i31'('urn:example:i2', 'urn:example:i42'). +'urn:example:i31'('urn:example:i33', 'urn:example:i0'). +'urn:example:i31'('urn:example:i33', 'urn:example:i15'). +'urn:example:i31'('urn:example:i34', 'urn:example:i48'). +'urn:example:i31'('urn:example:i36', 'urn:example:i60'). +'urn:example:i31'('urn:example:i36', 'urn:example:i6'). +'urn:example:i31'('urn:example:i37', 'urn:example:i48'). +'urn:example:i31'('urn:example:i37', 'urn:example:i84'). +'urn:example:i31'('urn:example:i38', 'urn:example:i33'). +'urn:example:i31'('urn:example:i38', 'urn:example:i45'). +'urn:example:i31'('urn:example:i3', 'urn:example:i15'). +'urn:example:i31'('urn:example:i3', 'urn:example:i57'). +'urn:example:i31'('urn:example:i40', 'urn:example:i60'). +'urn:example:i31'('urn:example:i41', 'urn:example:i93'). +'urn:example:i31'('urn:example:i42', 'urn:example:i15'). +'urn:example:i31'('urn:example:i42', 'urn:example:i57'). +'urn:example:i31'('urn:example:i42', 'urn:example:i57'). +'urn:example:i31'('urn:example:i42', 'urn:example:i93'). +'urn:example:i31'('urn:example:i43', 'urn:example:i51'). +'urn:example:i31'('urn:example:i44', 'urn:example:i21'). +'urn:example:i31'('urn:example:i44', 'urn:example:i54'). +'urn:example:i31'('urn:example:i44', 'urn:example:i63'). +'urn:example:i31'('urn:example:i45', 'urn:example:i6'). +'urn:example:i31'('urn:example:i46', 'urn:example:i30'). +'urn:example:i31'('urn:example:i46', 'urn:example:i36'). +'urn:example:i31'('urn:example:i48', 'urn:example:i18'). +'urn:example:i31'('urn:example:i4', 'urn:example:i27'). +'urn:example:i31'('urn:example:i50', 'urn:example:i15'). +'urn:example:i31'('urn:example:i50', 'urn:example:i36'). +'urn:example:i31'('urn:example:i50', 'urn:example:i42'). +'urn:example:i31'('urn:example:i50', 'urn:example:i99'). +'urn:example:i31'('urn:example:i53', 'urn:example:i21'). +'urn:example:i31'('urn:example:i53', 'urn:example:i54'). +'urn:example:i31'('urn:example:i53', 'urn:example:i66'). +'urn:example:i31'('urn:example:i54', 'urn:example:i36'). +'urn:example:i31'('urn:example:i55', 'urn:example:i33'). +'urn:example:i31'('urn:example:i56', 'urn:example:i0'). +'urn:example:i31'('urn:example:i56', 'urn:example:i54'). +'urn:example:i31'('urn:example:i57', 'urn:example:i36'). +'urn:example:i31'('urn:example:i58', 'urn:example:i18'). +'urn:example:i31'('urn:example:i58', 'urn:example:i6'). +'urn:example:i31'('urn:example:i62', 'urn:example:i18'). +'urn:example:i31'('urn:example:i62', 'urn:example:i30'). +'urn:example:i31'('urn:example:i62', 'urn:example:i75'). +'urn:example:i31'('urn:example:i62', 'urn:example:i81'). +'urn:example:i31'('urn:example:i64', 'urn:example:i93'). +'urn:example:i31'('urn:example:i65', 'urn:example:i60'). +'urn:example:i31'('urn:example:i66', 'urn:example:i66'). +'urn:example:i31'('urn:example:i66', 'urn:example:i93'). +'urn:example:i31'('urn:example:i67', 'urn:example:i69'). +'urn:example:i31'('urn:example:i67', 'urn:example:i72'). +'urn:example:i31'('urn:example:i68', 'urn:example:i39'). +'urn:example:i31'('urn:example:i68', 'urn:example:i6'). +'urn:example:i31'('urn:example:i69', 'urn:example:i87'). +'urn:example:i31'('urn:example:i70', 'urn:example:i15'). +'urn:example:i31'('urn:example:i76', 'urn:example:i36'). +'urn:example:i31'('urn:example:i76', 'urn:example:i6'). +'urn:example:i31'('urn:example:i78', 'urn:example:i48'). +'urn:example:i31'('urn:example:i79', 'urn:example:i39'). +'urn:example:i31'('urn:example:i7', 'urn:example:i51'). +'urn:example:i31'('urn:example:i80', 'urn:example:i24'). +'urn:example:i31'('urn:example:i81', 'urn:example:i48'). +'urn:example:i31'('urn:example:i82', 'urn:example:i30'). +'urn:example:i31'('urn:example:i84', 'urn:example:i57'). +'urn:example:i31'('urn:example:i84', 'urn:example:i9'). +'urn:example:i31'('urn:example:i85', 'urn:example:i45'). +'urn:example:i31'('urn:example:i86', 'urn:example:i99'). +'urn:example:i31'('urn:example:i87', 'urn:example:i3'). +'urn:example:i31'('urn:example:i88', 'urn:example:i15'). +'urn:example:i31'('urn:example:i88', 'urn:example:i15'). +'urn:example:i31'('urn:example:i88', 'urn:example:i69'). +'urn:example:i31'('urn:example:i89', 'urn:example:i3'). +'urn:example:i31'('urn:example:i8', 'urn:example:i51'). +'urn:example:i31'('urn:example:i92', 'urn:example:i30'). +'urn:example:i31'('urn:example:i92', 'urn:example:i78'). +'urn:example:i31'('urn:example:i93', 'urn:example:i84'). +'urn:example:i31'('urn:example:i94', 'urn:example:i81'). +'urn:example:i31'('urn:example:i95', 'urn:example:i39'). +'urn:example:i31'('urn:example:i96', 'urn:example:i39'). +'urn:example:i31'('urn:example:i96', 'urn:example:i78'). +'urn:example:i31'('urn:example:i99', 'urn:example:i93'). +'urn:example:i31'('urn:example:i9', 'urn:example:i45'). +'urn:example:i31'('urn:example:i9', 'urn:example:i48'). +'urn:example:i31'('urn:example:i9', 'urn:example:i96'). +'urn:example:i32'('urn:example:i0', 'urn:example:i33'). +'urn:example:i32'('urn:example:i10', 'urn:example:i39'). +'urn:example:i32'('urn:example:i10', 'urn:example:i81'). +'urn:example:i32'('urn:example:i12', 'urn:example:i36'). +'urn:example:i32'('urn:example:i14', 'urn:example:i96'). +'urn:example:i32'('urn:example:i14', 'urn:example:i96'). +'urn:example:i32'('urn:example:i15', 'urn:example:i60'). +'urn:example:i32'('urn:example:i16', 'urn:example:i9'). +'urn:example:i32'('urn:example:i21', 'urn:example:i45'). +'urn:example:i32'('urn:example:i22', 'urn:example:i27'). +'urn:example:i32'('urn:example:i23', 'urn:example:i9'). +'urn:example:i32'('urn:example:i25', 'urn:example:i90'). +'urn:example:i32'('urn:example:i27', 'urn:example:i33'). +'urn:example:i32'('urn:example:i28', 'urn:example:i24'). +'urn:example:i32'('urn:example:i28', 'urn:example:i3'). +'urn:example:i32'('urn:example:i2', 'urn:example:i78'). +'urn:example:i32'('urn:example:i32', 'urn:example:i63'). +'urn:example:i32'('urn:example:i33', 'urn:example:i15'). +'urn:example:i32'('urn:example:i35', 'urn:example:i12'). +'urn:example:i32'('urn:example:i35', 'urn:example:i39'). +'urn:example:i32'('urn:example:i35', 'urn:example:i69'). +'urn:example:i32'('urn:example:i36', 'urn:example:i24'). +'urn:example:i32'('urn:example:i37', 'urn:example:i6'). +'urn:example:i32'('urn:example:i39', 'urn:example:i57'). +'urn:example:i32'('urn:example:i3', 'urn:example:i96'). +'urn:example:i32'('urn:example:i40', 'urn:example:i90'). +'urn:example:i32'('urn:example:i41', 'urn:example:i30'). +'urn:example:i32'('urn:example:i43', 'urn:example:i75'). +'urn:example:i32'('urn:example:i44', 'urn:example:i63'). +'urn:example:i32'('urn:example:i44', 'urn:example:i69'). +'urn:example:i32'('urn:example:i45', 'urn:example:i54'). +'urn:example:i32'('urn:example:i47', 'urn:example:i15'). +'urn:example:i32'('urn:example:i47', 'urn:example:i45'). +'urn:example:i32'('urn:example:i49', 'urn:example:i51'). +'urn:example:i32'('urn:example:i51', 'urn:example:i78'). +'urn:example:i32'('urn:example:i52', 'urn:example:i81'). +'urn:example:i32'('urn:example:i53', 'urn:example:i99'). +'urn:example:i32'('urn:example:i54', 'urn:example:i39'). +'urn:example:i32'('urn:example:i55', 'urn:example:i0'). +'urn:example:i32'('urn:example:i56', 'urn:example:i78'). +'urn:example:i32'('urn:example:i57', 'urn:example:i48'). +'urn:example:i32'('urn:example:i59', 'urn:example:i21'). +'urn:example:i32'('urn:example:i59', 'urn:example:i6'). +'urn:example:i32'('urn:example:i60', 'urn:example:i39'). +'urn:example:i32'('urn:example:i60', 'urn:example:i57'). +'urn:example:i32'('urn:example:i60', 'urn:example:i63'). +'urn:example:i32'('urn:example:i62', 'urn:example:i51'). +'urn:example:i32'('urn:example:i62', 'urn:example:i54'). +'urn:example:i32'('urn:example:i63', 'urn:example:i0'). +'urn:example:i32'('urn:example:i63', 'urn:example:i24'). +'urn:example:i32'('urn:example:i65', 'urn:example:i27'). +'urn:example:i32'('urn:example:i65', 'urn:example:i30'). +'urn:example:i32'('urn:example:i65', 'urn:example:i42'). +'urn:example:i32'('urn:example:i65', 'urn:example:i63'). +'urn:example:i32'('urn:example:i66', 'urn:example:i69'). +'urn:example:i32'('urn:example:i67', 'urn:example:i87'). +'urn:example:i32'('urn:example:i68', 'urn:example:i78'). +'urn:example:i32'('urn:example:i69', 'urn:example:i27'). +'urn:example:i32'('urn:example:i69', 'urn:example:i87'). +'urn:example:i32'('urn:example:i6', 'urn:example:i30'). +'urn:example:i32'('urn:example:i6', 'urn:example:i42'). +'urn:example:i32'('urn:example:i6', 'urn:example:i90'). +'urn:example:i32'('urn:example:i70', 'urn:example:i84'). +'urn:example:i32'('urn:example:i71', 'urn:example:i45'). +'urn:example:i32'('urn:example:i73', 'urn:example:i63'). +'urn:example:i32'('urn:example:i73', 'urn:example:i63'). +'urn:example:i32'('urn:example:i73', 'urn:example:i78'). +'urn:example:i32'('urn:example:i73', 'urn:example:i81'). +'urn:example:i32'('urn:example:i73', 'urn:example:i9'). +'urn:example:i32'('urn:example:i73', 'urn:example:i9'). +'urn:example:i32'('urn:example:i74', 'urn:example:i21'). +'urn:example:i32'('urn:example:i74', 'urn:example:i27'). +'urn:example:i32'('urn:example:i74', 'urn:example:i93'). +'urn:example:i32'('urn:example:i75', 'urn:example:i36'). +'urn:example:i32'('urn:example:i75', 'urn:example:i57'). +'urn:example:i32'('urn:example:i76', 'urn:example:i69'). +'urn:example:i32'('urn:example:i7', 'urn:example:i18'). +'urn:example:i32'('urn:example:i7', 'urn:example:i39'). +'urn:example:i32'('urn:example:i7', 'urn:example:i39'). +'urn:example:i32'('urn:example:i7', 'urn:example:i75'). +'urn:example:i32'('urn:example:i81', 'urn:example:i42'). +'urn:example:i32'('urn:example:i83', 'urn:example:i90'). +'urn:example:i32'('urn:example:i84', 'urn:example:i33'). +'urn:example:i32'('urn:example:i85', 'urn:example:i48'). +'urn:example:i32'('urn:example:i85', 'urn:example:i96'). +'urn:example:i32'('urn:example:i86', 'urn:example:i69'). +'urn:example:i32'('urn:example:i86', 'urn:example:i96'). +'urn:example:i32'('urn:example:i86', 'urn:example:i96'). +'urn:example:i32'('urn:example:i87', 'urn:example:i36'). +'urn:example:i32'('urn:example:i88', 'urn:example:i57'). +'urn:example:i32'('urn:example:i8', 'urn:example:i45'). +'urn:example:i32'('urn:example:i90', 'urn:example:i6'). +'urn:example:i32'('urn:example:i91', 'urn:example:i60'). +'urn:example:i32'('urn:example:i92', 'urn:example:i15'). +'urn:example:i32'('urn:example:i92', 'urn:example:i51'). +'urn:example:i32'('urn:example:i92', 'urn:example:i54'). +'urn:example:i32'('urn:example:i93', 'urn:example:i75'). +'urn:example:i32'('urn:example:i94', 'urn:example:i18'). +'urn:example:i32'('urn:example:i94', 'urn:example:i33'). +'urn:example:i32'('urn:example:i95', 'urn:example:i42'). +'urn:example:i32'('urn:example:i96', 'urn:example:i27'). +'urn:example:i32'('urn:example:i96', 'urn:example:i78'). +'urn:example:i32'('urn:example:i97', 'urn:example:i6'). +'urn:example:i32'('urn:example:i98', 'urn:example:i66'). +'urn:example:i32'('urn:example:i9', 'urn:example:i45'). +'urn:example:i33'('urn:example:i0', 'urn:example:i84'). +'urn:example:i33'('urn:example:i10', 'urn:example:i0'). +'urn:example:i33'('urn:example:i10', 'urn:example:i45'). +'urn:example:i33'('urn:example:i10', 'urn:example:i69'). +'urn:example:i33'('urn:example:i11', 'urn:example:i0'). +'urn:example:i33'('urn:example:i16', 'urn:example:i0'). +'urn:example:i33'('urn:example:i16', 'urn:example:i42'). +'urn:example:i33'('urn:example:i16', 'urn:example:i66'). +'urn:example:i33'('urn:example:i17', 'urn:example:i9'). +'urn:example:i33'('urn:example:i19', 'urn:example:i96'). +'urn:example:i33'('urn:example:i20', 'urn:example:i66'). +'urn:example:i33'('urn:example:i20', 'urn:example:i96'). +'urn:example:i33'('urn:example:i21', 'urn:example:i0'). +'urn:example:i33'('urn:example:i21', 'urn:example:i3'). +'urn:example:i33'('urn:example:i21', 'urn:example:i75'). +'urn:example:i33'('urn:example:i22', 'urn:example:i60'). +'urn:example:i33'('urn:example:i24', 'urn:example:i75'). +'urn:example:i33'('urn:example:i27', 'urn:example:i87'). +'urn:example:i33'('urn:example:i2', 'urn:example:i60'). +'urn:example:i33'('urn:example:i31', 'urn:example:i21'). +'urn:example:i33'('urn:example:i32', 'urn:example:i93'). +'urn:example:i33'('urn:example:i33', 'urn:example:i6'). +'urn:example:i33'('urn:example:i34', 'urn:example:i33'). +'urn:example:i33'('urn:example:i36', 'urn:example:i60'). +'urn:example:i33'('urn:example:i3', 'urn:example:i90'). +'urn:example:i33'('urn:example:i40', 'urn:example:i66'). +'urn:example:i33'('urn:example:i42', 'urn:example:i18'). +'urn:example:i33'('urn:example:i42', 'urn:example:i21'). +'urn:example:i33'('urn:example:i42', 'urn:example:i21'). +'urn:example:i33'('urn:example:i42', 'urn:example:i33'). +'urn:example:i33'('urn:example:i42', 'urn:example:i72'). +'urn:example:i33'('urn:example:i43', 'urn:example:i18'). +'urn:example:i33'('urn:example:i43', 'urn:example:i42'). +'urn:example:i33'('urn:example:i43', 'urn:example:i69'). +'urn:example:i33'('urn:example:i44', 'urn:example:i3'). +'urn:example:i33'('urn:example:i45', 'urn:example:i0'). +'urn:example:i33'('urn:example:i48', 'urn:example:i24'). +'urn:example:i33'('urn:example:i48', 'urn:example:i75'). +'urn:example:i33'('urn:example:i48', 'urn:example:i84'). +'urn:example:i33'('urn:example:i49', 'urn:example:i21'). +'urn:example:i33'('urn:example:i4', 'urn:example:i60'). +'urn:example:i33'('urn:example:i4', 'urn:example:i84'). +'urn:example:i33'('urn:example:i51', 'urn:example:i54'). +'urn:example:i33'('urn:example:i53', 'urn:example:i48'). +'urn:example:i33'('urn:example:i53', 'urn:example:i57'). +'urn:example:i33'('urn:example:i54', 'urn:example:i57'). +'urn:example:i33'('urn:example:i55', 'urn:example:i75'). +'urn:example:i33'('urn:example:i56', 'urn:example:i42'). +'urn:example:i33'('urn:example:i56', 'urn:example:i63'). +'urn:example:i33'('urn:example:i56', 'urn:example:i6'). +'urn:example:i33'('urn:example:i57', 'urn:example:i27'). +'urn:example:i33'('urn:example:i58', 'urn:example:i30'). +'urn:example:i33'('urn:example:i58', 'urn:example:i42'). +'urn:example:i33'('urn:example:i59', 'urn:example:i87'). +'urn:example:i33'('urn:example:i60', 'urn:example:i27'). +'urn:example:i33'('urn:example:i60', 'urn:example:i78'). +'urn:example:i33'('urn:example:i61', 'urn:example:i0'). +'urn:example:i33'('urn:example:i61', 'urn:example:i72'). +'urn:example:i33'('urn:example:i62', 'urn:example:i30'). +'urn:example:i33'('urn:example:i62', 'urn:example:i48'). +'urn:example:i33'('urn:example:i62', 'urn:example:i75'). +'urn:example:i33'('urn:example:i62', 'urn:example:i75'). +'urn:example:i33'('urn:example:i66', 'urn:example:i12'). +'urn:example:i33'('urn:example:i66', 'urn:example:i51'). +'urn:example:i33'('urn:example:i67', 'urn:example:i0'). +'urn:example:i33'('urn:example:i68', 'urn:example:i66'). +'urn:example:i33'('urn:example:i68', 'urn:example:i84'). +'urn:example:i33'('urn:example:i69', 'urn:example:i60'). +'urn:example:i33'('urn:example:i69', 'urn:example:i69'). +'urn:example:i33'('urn:example:i70', 'urn:example:i39'). +'urn:example:i33'('urn:example:i70', 'urn:example:i75'). +'urn:example:i33'('urn:example:i72', 'urn:example:i75'). +'urn:example:i33'('urn:example:i74', 'urn:example:i60'). +'urn:example:i33'('urn:example:i75', 'urn:example:i54'). +'urn:example:i33'('urn:example:i77', 'urn:example:i66'). +'urn:example:i33'('urn:example:i77', 'urn:example:i72'). +'urn:example:i33'('urn:example:i78', 'urn:example:i15'). +'urn:example:i33'('urn:example:i79', 'urn:example:i69'). +'urn:example:i33'('urn:example:i80', 'urn:example:i57'). +'urn:example:i33'('urn:example:i80', 'urn:example:i84'). +'urn:example:i33'('urn:example:i81', 'urn:example:i69'). +'urn:example:i33'('urn:example:i82', 'urn:example:i99'). +'urn:example:i33'('urn:example:i83', 'urn:example:i60'). +'urn:example:i33'('urn:example:i83', 'urn:example:i9'). +'urn:example:i33'('urn:example:i84', 'urn:example:i57'). +'urn:example:i33'('urn:example:i85', 'urn:example:i57'). +'urn:example:i33'('urn:example:i86', 'urn:example:i36'). +'urn:example:i33'('urn:example:i87', 'urn:example:i3'). +'urn:example:i33'('urn:example:i89', 'urn:example:i72'). +'urn:example:i33'('urn:example:i8', 'urn:example:i72'). +'urn:example:i33'('urn:example:i8', 'urn:example:i81'). +'urn:example:i33'('urn:example:i93', 'urn:example:i45'). +'urn:example:i33'('urn:example:i94', 'urn:example:i75'). +'urn:example:i33'('urn:example:i95', 'urn:example:i15'). +'urn:example:i33'('urn:example:i95', 'urn:example:i18'). +'urn:example:i33'('urn:example:i95', 'urn:example:i81'). +'urn:example:i33'('urn:example:i96', 'urn:example:i33'). +'urn:example:i33'('urn:example:i96', 'urn:example:i54'). +'urn:example:i33'('urn:example:i96', 'urn:example:i84'). +'urn:example:i33'('urn:example:i97', 'urn:example:i90'). +'urn:example:i33'('urn:example:i98', 'urn:example:i45'). +'urn:example:i33'('urn:example:i98', 'urn:example:i69'). +'urn:example:i33'('urn:example:i98', 'urn:example:i93'). +'urn:example:i33'('urn:example:i99', 'urn:example:i30'). +'urn:example:i33'('urn:example:i9', 'urn:example:i87'). +'urn:example:i34'('urn:example:i0', 'urn:example:i30'). +'urn:example:i34'('urn:example:i10', 'urn:example:i18'). +'urn:example:i34'('urn:example:i10', 'urn:example:i30'). +'urn:example:i34'('urn:example:i10', 'urn:example:i33'). +'urn:example:i34'('urn:example:i10', 'urn:example:i96'). +'urn:example:i34'('urn:example:i12', 'urn:example:i57'). +'urn:example:i34'('urn:example:i13', 'urn:example:i45'). +'urn:example:i34'('urn:example:i13', 'urn:example:i9'). +'urn:example:i34'('urn:example:i14', 'urn:example:i0'). +'urn:example:i34'('urn:example:i16', 'urn:example:i30'). +'urn:example:i34'('urn:example:i17', 'urn:example:i60'). +'urn:example:i34'('urn:example:i17', 'urn:example:i69'). +'urn:example:i34'('urn:example:i18', 'urn:example:i18'). +'urn:example:i34'('urn:example:i20', 'urn:example:i6'). +'urn:example:i34'('urn:example:i23', 'urn:example:i90'). +'urn:example:i34'('urn:example:i24', 'urn:example:i24'). +'urn:example:i34'('urn:example:i25', 'urn:example:i15'). +'urn:example:i34'('urn:example:i26', 'urn:example:i21'). +'urn:example:i34'('urn:example:i28', 'urn:example:i18'). +'urn:example:i34'('urn:example:i29', 'urn:example:i33'). +'urn:example:i34'('urn:example:i29', 'urn:example:i42'). +'urn:example:i34'('urn:example:i29', 'urn:example:i6'). +'urn:example:i34'('urn:example:i2', 'urn:example:i96'). +'urn:example:i34'('urn:example:i30', 'urn:example:i0'). +'urn:example:i34'('urn:example:i31', 'urn:example:i48'). +'urn:example:i34'('urn:example:i32', 'urn:example:i84'). +'urn:example:i34'('urn:example:i32', 'urn:example:i90'). +'urn:example:i34'('urn:example:i34', 'urn:example:i96'). +'urn:example:i34'('urn:example:i39', 'urn:example:i18'). +'urn:example:i34'('urn:example:i3', 'urn:example:i90'). +'urn:example:i34'('urn:example:i40', 'urn:example:i60'). +'urn:example:i34'('urn:example:i41', 'urn:example:i78'). +'urn:example:i34'('urn:example:i42', 'urn:example:i3'). +'urn:example:i34'('urn:example:i42', 'urn:example:i45'). +'urn:example:i34'('urn:example:i44', 'urn:example:i39'). +'urn:example:i34'('urn:example:i44', 'urn:example:i99'). +'urn:example:i34'('urn:example:i47', 'urn:example:i57'). +'urn:example:i34'('urn:example:i47', 'urn:example:i81'). +'urn:example:i34'('urn:example:i48', 'urn:example:i93'). +'urn:example:i34'('urn:example:i49', 'urn:example:i96'). +'urn:example:i34'('urn:example:i49', 'urn:example:i9'). +'urn:example:i34'('urn:example:i50', 'urn:example:i39'). +'urn:example:i34'('urn:example:i50', 'urn:example:i42'). +'urn:example:i34'('urn:example:i50', 'urn:example:i45'). +'urn:example:i34'('urn:example:i53', 'urn:example:i33'). +'urn:example:i34'('urn:example:i53', 'urn:example:i54'). +'urn:example:i34'('urn:example:i53', 'urn:example:i96'). +'urn:example:i34'('urn:example:i54', 'urn:example:i39'). +'urn:example:i34'('urn:example:i56', 'urn:example:i81'). +'urn:example:i34'('urn:example:i58', 'urn:example:i78'). +'urn:example:i34'('urn:example:i60', 'urn:example:i60'). +'urn:example:i34'('urn:example:i61', 'urn:example:i24'). +'urn:example:i34'('urn:example:i61', 'urn:example:i69'). +'urn:example:i34'('urn:example:i62', 'urn:example:i0'). +'urn:example:i34'('urn:example:i62', 'urn:example:i18'). +'urn:example:i34'('urn:example:i62', 'urn:example:i21'). +'urn:example:i34'('urn:example:i62', 'urn:example:i75'). +'urn:example:i34'('urn:example:i62', 'urn:example:i87'). +'urn:example:i34'('urn:example:i64', 'urn:example:i42'). +'urn:example:i34'('urn:example:i65', 'urn:example:i66'). +'urn:example:i34'('urn:example:i66', 'urn:example:i3'). +'urn:example:i34'('urn:example:i67', 'urn:example:i81'). +'urn:example:i34'('urn:example:i69', 'urn:example:i24'). +'urn:example:i34'('urn:example:i69', 'urn:example:i84'). +'urn:example:i34'('urn:example:i69', 'urn:example:i84'). +'urn:example:i34'('urn:example:i71', 'urn:example:i93'). +'urn:example:i34'('urn:example:i73', 'urn:example:i0'). +'urn:example:i34'('urn:example:i73', 'urn:example:i30'). +'urn:example:i34'('urn:example:i73', 'urn:example:i75'). +'urn:example:i34'('urn:example:i73', 'urn:example:i78'). +'urn:example:i34'('urn:example:i76', 'urn:example:i36'). +'urn:example:i34'('urn:example:i76', 'urn:example:i63'). +'urn:example:i34'('urn:example:i77', 'urn:example:i66'). +'urn:example:i34'('urn:example:i79', 'urn:example:i36'). +'urn:example:i34'('urn:example:i7', 'urn:example:i33'). +'urn:example:i34'('urn:example:i81', 'urn:example:i81'). +'urn:example:i34'('urn:example:i84', 'urn:example:i21'). +'urn:example:i34'('urn:example:i84', 'urn:example:i96'). +'urn:example:i34'('urn:example:i86', 'urn:example:i78'). +'urn:example:i34'('urn:example:i88', 'urn:example:i12'). +'urn:example:i34'('urn:example:i89', 'urn:example:i87'). +'urn:example:i34'('urn:example:i8', 'urn:example:i63'). +'urn:example:i34'('urn:example:i8', 'urn:example:i99'). +'urn:example:i34'('urn:example:i90', 'urn:example:i42'). +'urn:example:i34'('urn:example:i91', 'urn:example:i39'). +'urn:example:i34'('urn:example:i91', 'urn:example:i93'). +'urn:example:i34'('urn:example:i93', 'urn:example:i39'). +'urn:example:i34'('urn:example:i94', 'urn:example:i99'). +'urn:example:i34'('urn:example:i95', 'urn:example:i36'). +'urn:example:i34'('urn:example:i96', 'urn:example:i18'). +'urn:example:i34'('urn:example:i96', 'urn:example:i78'). +'urn:example:i34'('urn:example:i97', 'urn:example:i72'). +'urn:example:i34'('urn:example:i98', 'urn:example:i12'). +'urn:example:i34'('urn:example:i98', 'urn:example:i30'). +'urn:example:i34'('urn:example:i99', 'urn:example:i42'). +'urn:example:i34'('urn:example:i99', 'urn:example:i81'). +'urn:example:i35'('urn:example:i0', 'urn:example:i75'). +'urn:example:i35'('urn:example:i0', 'urn:example:i90'). +'urn:example:i35'('urn:example:i0', 'urn:example:i9'). +'urn:example:i35'('urn:example:i10', 'urn:example:i63'). +'urn:example:i35'('urn:example:i10', 'urn:example:i66'). +'urn:example:i35'('urn:example:i12', 'urn:example:i81'). +'urn:example:i35'('urn:example:i12', 'urn:example:i84'). +'urn:example:i35'('urn:example:i14', 'urn:example:i57'). +'urn:example:i35'('urn:example:i15', 'urn:example:i24'). +'urn:example:i35'('urn:example:i15', 'urn:example:i36'). +'urn:example:i35'('urn:example:i16', 'urn:example:i18'). +'urn:example:i35'('urn:example:i18', 'urn:example:i75'). +'urn:example:i35'('urn:example:i1', 'urn:example:i18'). +'urn:example:i35'('urn:example:i20', 'urn:example:i27'). +'urn:example:i35'('urn:example:i21', 'urn:example:i15'). +'urn:example:i35'('urn:example:i21', 'urn:example:i72'). +'urn:example:i35'('urn:example:i23', 'urn:example:i33'). +'urn:example:i35'('urn:example:i23', 'urn:example:i63'). +'urn:example:i35'('urn:example:i24', 'urn:example:i75'). +'urn:example:i35'('urn:example:i24', 'urn:example:i81'). +'urn:example:i35'('urn:example:i26', 'urn:example:i27'). +'urn:example:i35'('urn:example:i26', 'urn:example:i93'). +'urn:example:i35'('urn:example:i27', 'urn:example:i42'). +'urn:example:i35'('urn:example:i27', 'urn:example:i51'). +'urn:example:i35'('urn:example:i2', 'urn:example:i45'). +'urn:example:i35'('urn:example:i30', 'urn:example:i51'). +'urn:example:i35'('urn:example:i30', 'urn:example:i81'). +'urn:example:i35'('urn:example:i32', 'urn:example:i54'). +'urn:example:i35'('urn:example:i32', 'urn:example:i93'). +'urn:example:i35'('urn:example:i34', 'urn:example:i87'). +'urn:example:i35'('urn:example:i34', 'urn:example:i93'). +'urn:example:i35'('urn:example:i36', 'urn:example:i21'). +'urn:example:i35'('urn:example:i37', 'urn:example:i12'). +'urn:example:i35'('urn:example:i37', 'urn:example:i48'). +'urn:example:i35'('urn:example:i38', 'urn:example:i30'). +'urn:example:i35'('urn:example:i39', 'urn:example:i18'). +'urn:example:i35'('urn:example:i41', 'urn:example:i84'). +'urn:example:i35'('urn:example:i42', 'urn:example:i33'). +'urn:example:i35'('urn:example:i43', 'urn:example:i60'). +'urn:example:i35'('urn:example:i43', 'urn:example:i90'). +'urn:example:i35'('urn:example:i45', 'urn:example:i45'). +'urn:example:i35'('urn:example:i46', 'urn:example:i75'). +'urn:example:i35'('urn:example:i47', 'urn:example:i15'). +'urn:example:i35'('urn:example:i47', 'urn:example:i69'). +'urn:example:i35'('urn:example:i4', 'urn:example:i0'). +'urn:example:i35'('urn:example:i50', 'urn:example:i0'). +'urn:example:i35'('urn:example:i50', 'urn:example:i18'). +'urn:example:i35'('urn:example:i53', 'urn:example:i12'). +'urn:example:i35'('urn:example:i53', 'urn:example:i42'). +'urn:example:i35'('urn:example:i54', 'urn:example:i60'). +'urn:example:i35'('urn:example:i54', 'urn:example:i63'). +'urn:example:i35'('urn:example:i55', 'urn:example:i18'). +'urn:example:i35'('urn:example:i55', 'urn:example:i18'). +'urn:example:i35'('urn:example:i55', 'urn:example:i30'). +'urn:example:i35'('urn:example:i56', 'urn:example:i51'). +'urn:example:i35'('urn:example:i57', 'urn:example:i21'). +'urn:example:i35'('urn:example:i58', 'urn:example:i87'). +'urn:example:i35'('urn:example:i5', 'urn:example:i78'). +'urn:example:i35'('urn:example:i5', 'urn:example:i90'). +'urn:example:i35'('urn:example:i60', 'urn:example:i33'). +'urn:example:i35'('urn:example:i60', 'urn:example:i96'). +'urn:example:i35'('urn:example:i60', 'urn:example:i99'). +'urn:example:i35'('urn:example:i64', 'urn:example:i36'). +'urn:example:i35'('urn:example:i66', 'urn:example:i69'). +'urn:example:i35'('urn:example:i67', 'urn:example:i0'). +'urn:example:i35'('urn:example:i68', 'urn:example:i54'). +'urn:example:i35'('urn:example:i68', 'urn:example:i69'). +'urn:example:i35'('urn:example:i68', 'urn:example:i6'). +'urn:example:i35'('urn:example:i68', 'urn:example:i87'). +'urn:example:i35'('urn:example:i69', 'urn:example:i54'). +'urn:example:i35'('urn:example:i71', 'urn:example:i9'). +'urn:example:i35'('urn:example:i73', 'urn:example:i96'). +'urn:example:i35'('urn:example:i75', 'urn:example:i33'). +'urn:example:i35'('urn:example:i75', 'urn:example:i78'). +'urn:example:i35'('urn:example:i75', 'urn:example:i96'). +'urn:example:i35'('urn:example:i76', 'urn:example:i45'). +'urn:example:i35'('urn:example:i77', 'urn:example:i75'). +'urn:example:i35'('urn:example:i7', 'urn:example:i87'). +'urn:example:i35'('urn:example:i82', 'urn:example:i84'). +'urn:example:i35'('urn:example:i84', 'urn:example:i72'). +'urn:example:i35'('urn:example:i85', 'urn:example:i12'). +'urn:example:i35'('urn:example:i85', 'urn:example:i66'). +'urn:example:i35'('urn:example:i85', 'urn:example:i75'). +'urn:example:i35'('urn:example:i89', 'urn:example:i84'). +'urn:example:i35'('urn:example:i90', 'urn:example:i69'). +'urn:example:i35'('urn:example:i91', 'urn:example:i51'). +'urn:example:i35'('urn:example:i92', 'urn:example:i57'). +'urn:example:i35'('urn:example:i94', 'urn:example:i21'). +'urn:example:i35'('urn:example:i94', 'urn:example:i93'). +'urn:example:i35'('urn:example:i95', 'urn:example:i81'). +'urn:example:i35'('urn:example:i96', 'urn:example:i9'). +'urn:example:i35'('urn:example:i98', 'urn:example:i51'). +'urn:example:i35'('urn:example:i98', 'urn:example:i75'). +'urn:example:i35'('urn:example:i99', 'urn:example:i21'). +'urn:example:i35'('urn:example:i99', 'urn:example:i3'). +'urn:example:i35'('urn:example:i9', 'urn:example:i54'). +'urn:example:i36'('urn:example:i0', 'urn:example:i57'). +'urn:example:i36'('urn:example:i0', 'urn:example:i75'). +'urn:example:i36'('urn:example:i10', 'urn:example:i45'). +'urn:example:i36'('urn:example:i10', 'urn:example:i96'). +'urn:example:i36'('urn:example:i13', 'urn:example:i45'). +'urn:example:i36'('urn:example:i13', 'urn:example:i90'). +'urn:example:i36'('urn:example:i13', 'urn:example:i93'). +'urn:example:i36'('urn:example:i14', 'urn:example:i48'). +'urn:example:i36'('urn:example:i14', 'urn:example:i90'). +'urn:example:i36'('urn:example:i15', 'urn:example:i18'). +'urn:example:i36'('urn:example:i16', 'urn:example:i0'). +'urn:example:i36'('urn:example:i17', 'urn:example:i45'). +'urn:example:i36'('urn:example:i18', 'urn:example:i81'). +'urn:example:i36'('urn:example:i19', 'urn:example:i51'). +'urn:example:i36'('urn:example:i1', 'urn:example:i15'). +'urn:example:i36'('urn:example:i20', 'urn:example:i27'). +'urn:example:i36'('urn:example:i20', 'urn:example:i60'). +'urn:example:i36'('urn:example:i23', 'urn:example:i78'). +'urn:example:i36'('urn:example:i24', 'urn:example:i18'). +'urn:example:i36'('urn:example:i24', 'urn:example:i39'). +'urn:example:i36'('urn:example:i24', 'urn:example:i84'). +'urn:example:i36'('urn:example:i25', 'urn:example:i81'). +'urn:example:i36'('urn:example:i26', 'urn:example:i45'). +'urn:example:i36'('urn:example:i29', 'urn:example:i51'). +'urn:example:i36'('urn:example:i29', 'urn:example:i9'). +'urn:example:i36'('urn:example:i33', 'urn:example:i75'). +'urn:example:i36'('urn:example:i34', 'urn:example:i12'). +'urn:example:i36'('urn:example:i35', 'urn:example:i9'). +'urn:example:i36'('urn:example:i36', 'urn:example:i24'). +'urn:example:i36'('urn:example:i36', 'urn:example:i72'). +'urn:example:i36'('urn:example:i36', 'urn:example:i93'). +'urn:example:i36'('urn:example:i38', 'urn:example:i0'). +'urn:example:i36'('urn:example:i3', 'urn:example:i30'). +'urn:example:i36'('urn:example:i41', 'urn:example:i54'). +'urn:example:i36'('urn:example:i41', 'urn:example:i9'). +'urn:example:i36'('urn:example:i42', 'urn:example:i21'). +'urn:example:i36'('urn:example:i42', 'urn:example:i45'). +'urn:example:i36'('urn:example:i43', 'urn:example:i3'). +'urn:example:i36'('urn:example:i44', 'urn:example:i90'). +'urn:example:i36'('urn:example:i45', 'urn:example:i36'). +'urn:example:i36'('urn:example:i46', 'urn:example:i39'). +'urn:example:i36'('urn:example:i49', 'urn:example:i42'). +'urn:example:i36'('urn:example:i50', 'urn:example:i51'). +'urn:example:i36'('urn:example:i50', 'urn:example:i72'). +'urn:example:i36'('urn:example:i51', 'urn:example:i36'). +'urn:example:i36'('urn:example:i53', 'urn:example:i45'). +'urn:example:i36'('urn:example:i55', 'urn:example:i66'). +'urn:example:i36'('urn:example:i55', 'urn:example:i9'). +'urn:example:i36'('urn:example:i56', 'urn:example:i0'). +'urn:example:i36'('urn:example:i56', 'urn:example:i36'). +'urn:example:i36'('urn:example:i56', 'urn:example:i42'). +'urn:example:i36'('urn:example:i57', 'urn:example:i75'). +'urn:example:i36'('urn:example:i59', 'urn:example:i36'). +'urn:example:i36'('urn:example:i59', 'urn:example:i3'). +'urn:example:i36'('urn:example:i59', 'urn:example:i75'). +'urn:example:i36'('urn:example:i5', 'urn:example:i66'). +'urn:example:i36'('urn:example:i5', 'urn:example:i9'). +'urn:example:i36'('urn:example:i63', 'urn:example:i60'). +'urn:example:i36'('urn:example:i64', 'urn:example:i3'). +'urn:example:i36'('urn:example:i64', 'urn:example:i96'). +'urn:example:i36'('urn:example:i66', 'urn:example:i33'). +'urn:example:i36'('urn:example:i66', 'urn:example:i3'). +'urn:example:i36'('urn:example:i66', 'urn:example:i45'). +'urn:example:i36'('urn:example:i67', 'urn:example:i78'). +'urn:example:i36'('urn:example:i68', 'urn:example:i63'). +'urn:example:i36'('urn:example:i69', 'urn:example:i9'). +'urn:example:i36'('urn:example:i6', 'urn:example:i75'). +'urn:example:i36'('urn:example:i6', 'urn:example:i9'). +'urn:example:i36'('urn:example:i71', 'urn:example:i93'). +'urn:example:i36'('urn:example:i72', 'urn:example:i24'). +'urn:example:i36'('urn:example:i72', 'urn:example:i54'). +'urn:example:i36'('urn:example:i72', 'urn:example:i81'). +'urn:example:i36'('urn:example:i74', 'urn:example:i18'). +'urn:example:i36'('urn:example:i76', 'urn:example:i39'). +'urn:example:i36'('urn:example:i76', 'urn:example:i84'). +'urn:example:i36'('urn:example:i77', 'urn:example:i81'). +'urn:example:i36'('urn:example:i79', 'urn:example:i48'). +'urn:example:i36'('urn:example:i7', 'urn:example:i75'). +'urn:example:i36'('urn:example:i7', 'urn:example:i96'). +'urn:example:i36'('urn:example:i80', 'urn:example:i48'). +'urn:example:i36'('urn:example:i80', 'urn:example:i54'). +'urn:example:i36'('urn:example:i80', 'urn:example:i81'). +'urn:example:i36'('urn:example:i82', 'urn:example:i81'). +'urn:example:i36'('urn:example:i82', 'urn:example:i84'). +'urn:example:i36'('urn:example:i84', 'urn:example:i51'). +'urn:example:i36'('urn:example:i85', 'urn:example:i54'). +'urn:example:i36'('urn:example:i86', 'urn:example:i87'). +'urn:example:i36'('urn:example:i87', 'urn:example:i0'). +'urn:example:i36'('urn:example:i87', 'urn:example:i57'). +'urn:example:i36'('urn:example:i88', 'urn:example:i36'). +'urn:example:i36'('urn:example:i89', 'urn:example:i96'). +'urn:example:i36'('urn:example:i8', 'urn:example:i51'). +'urn:example:i36'('urn:example:i90', 'urn:example:i9'). +'urn:example:i36'('urn:example:i93', 'urn:example:i36'). +'urn:example:i36'('urn:example:i93', 'urn:example:i87'). +'urn:example:i36'('urn:example:i94', 'urn:example:i18'). +'urn:example:i36'('urn:example:i94', 'urn:example:i57'). +'urn:example:i36'('urn:example:i94', 'urn:example:i96'). +'urn:example:i36'('urn:example:i95', 'urn:example:i45'). +'urn:example:i36'('urn:example:i95', 'urn:example:i87'). +'urn:example:i36'('urn:example:i96', 'urn:example:i66'). +'urn:example:i36'('urn:example:i98', 'urn:example:i18'). +'urn:example:i36'('urn:example:i99', 'urn:example:i54'). +'urn:example:i36'('urn:example:i99', 'urn:example:i87'). +'urn:example:i36'('urn:example:i99', 'urn:example:i90'). +'urn:example:i37'('urn:example:i0', 'urn:example:i60'). +'urn:example:i37'('urn:example:i0', 'urn:example:i63'). +'urn:example:i37'('urn:example:i11', 'urn:example:i78'). +'urn:example:i37'('urn:example:i12', 'urn:example:i0'). +'urn:example:i37'('urn:example:i12', 'urn:example:i21'). +'urn:example:i37'('urn:example:i12', 'urn:example:i96'). +'urn:example:i37'('urn:example:i13', 'urn:example:i6'). +'urn:example:i37'('urn:example:i16', 'urn:example:i60'). +'urn:example:i37'('urn:example:i19', 'urn:example:i54'). +'urn:example:i37'('urn:example:i20', 'urn:example:i75'). +'urn:example:i37'('urn:example:i20', 'urn:example:i81'). +'urn:example:i37'('urn:example:i21', 'urn:example:i15'). +'urn:example:i37'('urn:example:i22', 'urn:example:i30'). +'urn:example:i37'('urn:example:i23', 'urn:example:i3'). +'urn:example:i37'('urn:example:i24', 'urn:example:i78'). +'urn:example:i37'('urn:example:i25', 'urn:example:i3'). +'urn:example:i37'('urn:example:i25', 'urn:example:i96'). +'urn:example:i37'('urn:example:i26', 'urn:example:i78'). +'urn:example:i37'('urn:example:i26', 'urn:example:i90'). +'urn:example:i37'('urn:example:i27', 'urn:example:i21'). +'urn:example:i37'('urn:example:i28', 'urn:example:i27'). +'urn:example:i37'('urn:example:i28', 'urn:example:i45'). +'urn:example:i37'('urn:example:i28', 'urn:example:i69'). +'urn:example:i37'('urn:example:i28', 'urn:example:i9'). +'urn:example:i37'('urn:example:i29', 'urn:example:i39'). +'urn:example:i37'('urn:example:i29', 'urn:example:i45'). +'urn:example:i37'('urn:example:i2', 'urn:example:i30'). +'urn:example:i37'('urn:example:i30', 'urn:example:i42'). +'urn:example:i37'('urn:example:i30', 'urn:example:i81'). +'urn:example:i37'('urn:example:i31', 'urn:example:i3'). +'urn:example:i37'('urn:example:i32', 'urn:example:i12'). +'urn:example:i37'('urn:example:i32', 'urn:example:i87'). +'urn:example:i37'('urn:example:i33', 'urn:example:i54'). +'urn:example:i37'('urn:example:i33', 'urn:example:i72'). +'urn:example:i37'('urn:example:i33', 'urn:example:i9'). +'urn:example:i37'('urn:example:i35', 'urn:example:i30'). +'urn:example:i37'('urn:example:i35', 'urn:example:i36'). +'urn:example:i37'('urn:example:i38', 'urn:example:i18'). +'urn:example:i37'('urn:example:i38', 'urn:example:i78'). +'urn:example:i37'('urn:example:i39', 'urn:example:i21'). +'urn:example:i37'('urn:example:i39', 'urn:example:i6'). +'urn:example:i37'('urn:example:i39', 'urn:example:i81'). +'urn:example:i37'('urn:example:i40', 'urn:example:i15'). +'urn:example:i37'('urn:example:i40', 'urn:example:i63'). +'urn:example:i37'('urn:example:i40', 'urn:example:i75'). +'urn:example:i37'('urn:example:i42', 'urn:example:i93'). +'urn:example:i37'('urn:example:i46', 'urn:example:i45'). +'urn:example:i37'('urn:example:i46', 'urn:example:i9'). +'urn:example:i37'('urn:example:i47', 'urn:example:i72'). +'urn:example:i37'('urn:example:i49', 'urn:example:i99'). +'urn:example:i37'('urn:example:i49', 'urn:example:i9'). +'urn:example:i37'('urn:example:i4', 'urn:example:i27'). +'urn:example:i37'('urn:example:i4', 'urn:example:i90'). +'urn:example:i37'('urn:example:i51', 'urn:example:i87'). +'urn:example:i37'('urn:example:i52', 'urn:example:i42'). +'urn:example:i37'('urn:example:i56', 'urn:example:i0'). +'urn:example:i37'('urn:example:i58', 'urn:example:i42'). +'urn:example:i37'('urn:example:i60', 'urn:example:i15'). +'urn:example:i37'('urn:example:i60', 'urn:example:i87'). +'urn:example:i37'('urn:example:i65', 'urn:example:i24'). +'urn:example:i37'('urn:example:i66', 'urn:example:i48'). +'urn:example:i37'('urn:example:i67', 'urn:example:i45'). +'urn:example:i37'('urn:example:i68', 'urn:example:i21'). +'urn:example:i37'('urn:example:i68', 'urn:example:i24'). +'urn:example:i37'('urn:example:i6', 'urn:example:i6'). +'urn:example:i37'('urn:example:i70', 'urn:example:i30'). +'urn:example:i37'('urn:example:i70', 'urn:example:i87'). +'urn:example:i37'('urn:example:i71', 'urn:example:i39'). +'urn:example:i37'('urn:example:i71', 'urn:example:i57'). +'urn:example:i37'('urn:example:i72', 'urn:example:i21'). +'urn:example:i37'('urn:example:i74', 'urn:example:i15'). +'urn:example:i37'('urn:example:i75', 'urn:example:i54'). +'urn:example:i37'('urn:example:i75', 'urn:example:i84'). +'urn:example:i37'('urn:example:i76', 'urn:example:i90'). +'urn:example:i37'('urn:example:i78', 'urn:example:i12'). +'urn:example:i37'('urn:example:i78', 'urn:example:i72'). +'urn:example:i37'('urn:example:i78', 'urn:example:i75'). +'urn:example:i37'('urn:example:i78', 'urn:example:i81'). +'urn:example:i37'('urn:example:i79', 'urn:example:i57'). +'urn:example:i37'('urn:example:i79', 'urn:example:i75'). +'urn:example:i37'('urn:example:i82', 'urn:example:i75'). +'urn:example:i37'('urn:example:i82', 'urn:example:i78'). +'urn:example:i37'('urn:example:i83', 'urn:example:i9'). +'urn:example:i37'('urn:example:i86', 'urn:example:i78'). +'urn:example:i37'('urn:example:i87', 'urn:example:i66'). +'urn:example:i37'('urn:example:i88', 'urn:example:i33'). +'urn:example:i37'('urn:example:i88', 'urn:example:i39'). +'urn:example:i37'('urn:example:i90', 'urn:example:i27'). +'urn:example:i37'('urn:example:i91', 'urn:example:i87'). +'urn:example:i37'('urn:example:i92', 'urn:example:i39'). +'urn:example:i37'('urn:example:i92', 'urn:example:i51'). +'urn:example:i37'('urn:example:i92', 'urn:example:i63'). +'urn:example:i37'('urn:example:i92', 'urn:example:i66'). +'urn:example:i37'('urn:example:i94', 'urn:example:i51'). +'urn:example:i37'('urn:example:i95', 'urn:example:i39'). +'urn:example:i37'('urn:example:i95', 'urn:example:i63'). +'urn:example:i37'('urn:example:i97', 'urn:example:i45'). +'urn:example:i37'('urn:example:i98', 'urn:example:i69'). +'urn:example:i37'('urn:example:i98', 'urn:example:i69'). +'urn:example:i37'('urn:example:i99', 'urn:example:i12'). +'urn:example:i37'('urn:example:i99', 'urn:example:i81'). +'urn:example:i38'('urn:example:i0', 'urn:example:i39'). +'urn:example:i38'('urn:example:i0', 'urn:example:i57'). +'urn:example:i38'('urn:example:i10', 'urn:example:i0'). +'urn:example:i38'('urn:example:i10', 'urn:example:i78'). +'urn:example:i38'('urn:example:i12', 'urn:example:i36'). +'urn:example:i38'('urn:example:i13', 'urn:example:i36'). +'urn:example:i38'('urn:example:i14', 'urn:example:i99'). +'urn:example:i38'('urn:example:i16', 'urn:example:i15'). +'urn:example:i38'('urn:example:i16', 'urn:example:i45'). +'urn:example:i38'('urn:example:i17', 'urn:example:i27'). +'urn:example:i38'('urn:example:i17', 'urn:example:i99'). +'urn:example:i38'('urn:example:i19', 'urn:example:i48'). +'urn:example:i38'('urn:example:i1', 'urn:example:i21'). +'urn:example:i38'('urn:example:i21', 'urn:example:i15'). +'urn:example:i38'('urn:example:i21', 'urn:example:i42'). +'urn:example:i38'('urn:example:i22', 'urn:example:i66'). +'urn:example:i38'('urn:example:i24', 'urn:example:i42'). +'urn:example:i38'('urn:example:i27', 'urn:example:i9'). +'urn:example:i38'('urn:example:i28', 'urn:example:i21'). +'urn:example:i38'('urn:example:i28', 'urn:example:i27'). +'urn:example:i38'('urn:example:i28', 'urn:example:i39'). +'urn:example:i38'('urn:example:i28', 'urn:example:i63'). +'urn:example:i38'('urn:example:i28', 'urn:example:i87'). +'urn:example:i38'('urn:example:i29', 'urn:example:i63'). +'urn:example:i38'('urn:example:i2', 'urn:example:i48'). +'urn:example:i38'('urn:example:i33', 'urn:example:i21'). +'urn:example:i38'('urn:example:i33', 'urn:example:i54'). +'urn:example:i38'('urn:example:i37', 'urn:example:i21'). +'urn:example:i38'('urn:example:i3', 'urn:example:i69'). +'urn:example:i38'('urn:example:i41', 'urn:example:i63'). +'urn:example:i38'('urn:example:i43', 'urn:example:i81'). +'urn:example:i38'('urn:example:i44', 'urn:example:i30'). +'urn:example:i38'('urn:example:i46', 'urn:example:i75'). +'urn:example:i38'('urn:example:i48', 'urn:example:i78'). +'urn:example:i38'('urn:example:i49', 'urn:example:i63'). +'urn:example:i38'('urn:example:i4', 'urn:example:i3'). +'urn:example:i38'('urn:example:i4', 'urn:example:i81'). +'urn:example:i38'('urn:example:i50', 'urn:example:i12'). +'urn:example:i38'('urn:example:i51', 'urn:example:i18'). +'urn:example:i38'('urn:example:i53', 'urn:example:i12'). +'urn:example:i38'('urn:example:i53', 'urn:example:i57'). +'urn:example:i38'('urn:example:i53', 'urn:example:i78'). +'urn:example:i38'('urn:example:i54', 'urn:example:i6'). +'urn:example:i38'('urn:example:i54', 'urn:example:i96'). +'urn:example:i38'('urn:example:i55', 'urn:example:i27'). +'urn:example:i38'('urn:example:i57', 'urn:example:i81'). +'urn:example:i38'('urn:example:i57', 'urn:example:i81'). +'urn:example:i38'('urn:example:i58', 'urn:example:i63'). +'urn:example:i38'('urn:example:i59', 'urn:example:i66'). +'urn:example:i38'('urn:example:i5', 'urn:example:i24'). +'urn:example:i38'('urn:example:i5', 'urn:example:i39'). +'urn:example:i38'('urn:example:i60', 'urn:example:i51'). +'urn:example:i38'('urn:example:i61', 'urn:example:i24'). +'urn:example:i38'('urn:example:i61', 'urn:example:i45'). +'urn:example:i38'('urn:example:i62', 'urn:example:i15'). +'urn:example:i38'('urn:example:i62', 'urn:example:i9'). +'urn:example:i38'('urn:example:i64', 'urn:example:i81'). +'urn:example:i38'('urn:example:i68', 'urn:example:i12'). +'urn:example:i38'('urn:example:i69', 'urn:example:i30'). +'urn:example:i38'('urn:example:i70', 'urn:example:i51'). +'urn:example:i38'('urn:example:i71', 'urn:example:i39'). +'urn:example:i38'('urn:example:i72', 'urn:example:i33'). +'urn:example:i38'('urn:example:i72', 'urn:example:i48'). +'urn:example:i38'('urn:example:i72', 'urn:example:i48'). +'urn:example:i38'('urn:example:i72', 'urn:example:i66'). +'urn:example:i38'('urn:example:i72', 'urn:example:i99'). +'urn:example:i38'('urn:example:i73', 'urn:example:i87'). +'urn:example:i38'('urn:example:i74', 'urn:example:i39'). +'urn:example:i38'('urn:example:i76', 'urn:example:i15'). +'urn:example:i38'('urn:example:i77', 'urn:example:i57'). +'urn:example:i38'('urn:example:i80', 'urn:example:i21'). +'urn:example:i38'('urn:example:i81', 'urn:example:i15'). +'urn:example:i38'('urn:example:i84', 'urn:example:i27'). +'urn:example:i38'('urn:example:i84', 'urn:example:i63'). +'urn:example:i38'('urn:example:i86', 'urn:example:i24'). +'urn:example:i38'('urn:example:i86', 'urn:example:i36'). +'urn:example:i38'('urn:example:i86', 'urn:example:i99'). +'urn:example:i38'('urn:example:i89', 'urn:example:i75'). +'urn:example:i38'('urn:example:i8', 'urn:example:i39'). +'urn:example:i38'('urn:example:i8', 'urn:example:i57'). +'urn:example:i38'('urn:example:i91', 'urn:example:i36'). +'urn:example:i38'('urn:example:i91', 'urn:example:i72'). +'urn:example:i38'('urn:example:i92', 'urn:example:i45'). +'urn:example:i38'('urn:example:i93', 'urn:example:i18'). +'urn:example:i38'('urn:example:i93', 'urn:example:i27'). +'urn:example:i38'('urn:example:i93', 'urn:example:i27'). +'urn:example:i38'('urn:example:i94', 'urn:example:i30'). +'urn:example:i38'('urn:example:i94', 'urn:example:i36'). +'urn:example:i38'('urn:example:i96', 'urn:example:i84'). +'urn:example:i38'('urn:example:i98', 'urn:example:i51'). +'urn:example:i38'('urn:example:i99', 'urn:example:i81'). +'urn:example:i38'('urn:example:i9', 'urn:example:i69'). +'urn:example:i39'('urn:example:i0', 'urn:example:i48'). +'urn:example:i39'('urn:example:i0', 'urn:example:i78'). +'urn:example:i39'('urn:example:i10', 'urn:example:i36'). +'urn:example:i39'('urn:example:i10', 'urn:example:i48'). +'urn:example:i39'('urn:example:i10', 'urn:example:i57'). +'urn:example:i39'('urn:example:i13', 'urn:example:i93'). +'urn:example:i39'('urn:example:i14', 'urn:example:i21'). +'urn:example:i39'('urn:example:i16', 'urn:example:i27'). +'urn:example:i39'('urn:example:i19', 'urn:example:i51'). +'urn:example:i39'('urn:example:i19', 'urn:example:i63'). +'urn:example:i39'('urn:example:i19', 'urn:example:i96'). +'urn:example:i39'('urn:example:i1', 'urn:example:i45'). +'urn:example:i39'('urn:example:i20', 'urn:example:i15'). +'urn:example:i39'('urn:example:i20', 'urn:example:i30'). +'urn:example:i39'('urn:example:i20', 'urn:example:i81'). +'urn:example:i39'('urn:example:i21', 'urn:example:i12'). +'urn:example:i39'('urn:example:i21', 'urn:example:i39'). +'urn:example:i39'('urn:example:i21', 'urn:example:i96'). +'urn:example:i39'('urn:example:i22', 'urn:example:i18'). +'urn:example:i39'('urn:example:i23', 'urn:example:i69'). +'urn:example:i39'('urn:example:i25', 'urn:example:i24'). +'urn:example:i39'('urn:example:i25', 'urn:example:i45'). +'urn:example:i39'('urn:example:i28', 'urn:example:i24'). +'urn:example:i39'('urn:example:i28', 'urn:example:i48'). +'urn:example:i39'('urn:example:i28', 'urn:example:i6'). +'urn:example:i39'('urn:example:i28', 'urn:example:i96'). +'urn:example:i39'('urn:example:i2', 'urn:example:i45'). +'urn:example:i39'('urn:example:i2', 'urn:example:i60'). +'urn:example:i39'('urn:example:i2', 'urn:example:i63'). +'urn:example:i39'('urn:example:i30', 'urn:example:i51'). +'urn:example:i39'('urn:example:i30', 'urn:example:i90'). +'urn:example:i39'('urn:example:i31', 'urn:example:i84'). +'urn:example:i39'('urn:example:i32', 'urn:example:i72'). +'urn:example:i39'('urn:example:i32', 'urn:example:i90'). +'urn:example:i39'('urn:example:i33', 'urn:example:i15'). +'urn:example:i39'('urn:example:i33', 'urn:example:i48'). +'urn:example:i39'('urn:example:i35', 'urn:example:i42'). +'urn:example:i39'('urn:example:i36', 'urn:example:i15'). +'urn:example:i39'('urn:example:i36', 'urn:example:i48'). +'urn:example:i39'('urn:example:i36', 'urn:example:i63'). +'urn:example:i39'('urn:example:i37', 'urn:example:i93'). +'urn:example:i39'('urn:example:i3', 'urn:example:i96'). +'urn:example:i39'('urn:example:i40', 'urn:example:i12'). +'urn:example:i39'('urn:example:i40', 'urn:example:i39'). +'urn:example:i39'('urn:example:i40', 'urn:example:i57'). +'urn:example:i39'('urn:example:i43', 'urn:example:i45'). +'urn:example:i39'('urn:example:i44', 'urn:example:i54'). +'urn:example:i39'('urn:example:i45', 'urn:example:i87'). +'urn:example:i39'('urn:example:i45', 'urn:example:i90'). +'urn:example:i39'('urn:example:i47', 'urn:example:i15'). +'urn:example:i39'('urn:example:i47', 'urn:example:i57'). +'urn:example:i39'('urn:example:i47', 'urn:example:i57'). +'urn:example:i39'('urn:example:i47', 'urn:example:i90'). +'urn:example:i39'('urn:example:i48', 'urn:example:i3'). +'urn:example:i39'('urn:example:i48', 'urn:example:i66'). +'urn:example:i39'('urn:example:i49', 'urn:example:i54'). +'urn:example:i39'('urn:example:i50', 'urn:example:i21'). +'urn:example:i39'('urn:example:i50', 'urn:example:i27'). +'urn:example:i39'('urn:example:i54', 'urn:example:i6'). +'urn:example:i39'('urn:example:i55', 'urn:example:i69'). +'urn:example:i39'('urn:example:i57', 'urn:example:i60'). +'urn:example:i39'('urn:example:i59', 'urn:example:i87'). +'urn:example:i39'('urn:example:i5', 'urn:example:i90'). +'urn:example:i39'('urn:example:i61', 'urn:example:i18'). +'urn:example:i39'('urn:example:i61', 'urn:example:i57'). +'urn:example:i39'('urn:example:i62', 'urn:example:i45'). +'urn:example:i39'('urn:example:i62', 'urn:example:i78'). +'urn:example:i39'('urn:example:i68', 'urn:example:i27'). +'urn:example:i39'('urn:example:i68', 'urn:example:i30'). +'urn:example:i39'('urn:example:i6', 'urn:example:i0'). +'urn:example:i39'('urn:example:i70', 'urn:example:i0'). +'urn:example:i39'('urn:example:i70', 'urn:example:i27'). +'urn:example:i39'('urn:example:i70', 'urn:example:i48'). +'urn:example:i39'('urn:example:i71', 'urn:example:i42'). +'urn:example:i39'('urn:example:i71', 'urn:example:i54'). +'urn:example:i39'('urn:example:i74', 'urn:example:i18'). +'urn:example:i39'('urn:example:i74', 'urn:example:i45'). +'urn:example:i39'('urn:example:i75', 'urn:example:i21'). +'urn:example:i39'('urn:example:i76', 'urn:example:i75'). +'urn:example:i39'('urn:example:i76', 'urn:example:i75'). +'urn:example:i39'('urn:example:i77', 'urn:example:i42'). +'urn:example:i39'('urn:example:i7', 'urn:example:i78'). +'urn:example:i39'('urn:example:i81', 'urn:example:i66'). +'urn:example:i39'('urn:example:i82', 'urn:example:i9'). +'urn:example:i39'('urn:example:i86', 'urn:example:i81'). +'urn:example:i39'('urn:example:i87', 'urn:example:i3'). +'urn:example:i39'('urn:example:i87', 'urn:example:i81'). +'urn:example:i39'('urn:example:i88', 'urn:example:i54'). +'urn:example:i39'('urn:example:i89', 'urn:example:i99'). +'urn:example:i39'('urn:example:i89', 'urn:example:i9'). +'urn:example:i39'('urn:example:i90', 'urn:example:i90'). +'urn:example:i39'('urn:example:i91', 'urn:example:i39'). +'urn:example:i39'('urn:example:i91', 'urn:example:i63'). +'urn:example:i39'('urn:example:i93', 'urn:example:i66'). +'urn:example:i39'('urn:example:i96', 'urn:example:i30'). +'urn:example:i39'('urn:example:i96', 'urn:example:i96'). +'urn:example:i39'('urn:example:i9', 'urn:example:i0'). +'urn:example:i3'('urn:example:i0', 'urn:example:i69'). +'urn:example:i3'('urn:example:i11', 'urn:example:i27'). +'urn:example:i3'('urn:example:i12', 'urn:example:i39'). +'urn:example:i3'('urn:example:i14', 'urn:example:i51'). +'urn:example:i3'('urn:example:i14', 'urn:example:i87'). +'urn:example:i3'('urn:example:i15', 'urn:example:i87'). +'urn:example:i3'('urn:example:i17', 'urn:example:i0'). +'urn:example:i3'('urn:example:i17', 'urn:example:i18'). +'urn:example:i3'('urn:example:i17', 'urn:example:i54'). +'urn:example:i3'('urn:example:i18', 'urn:example:i30'). +'urn:example:i3'('urn:example:i19', 'urn:example:i96'). +'urn:example:i3'('urn:example:i20', 'urn:example:i15'). +'urn:example:i3'('urn:example:i21', 'urn:example:i48'). +'urn:example:i3'('urn:example:i22', 'urn:example:i21'). +'urn:example:i3'('urn:example:i22', 'urn:example:i48'). +'urn:example:i3'('urn:example:i23', 'urn:example:i96'). +'urn:example:i3'('urn:example:i24', 'urn:example:i48'). +'urn:example:i3'('urn:example:i24', 'urn:example:i60'). +'urn:example:i3'('urn:example:i29', 'urn:example:i36'). +'urn:example:i3'('urn:example:i30', 'urn:example:i39'). +'urn:example:i3'('urn:example:i31', 'urn:example:i0'). +'urn:example:i3'('urn:example:i31', 'urn:example:i54'). +'urn:example:i3'('urn:example:i31', 'urn:example:i72'). +'urn:example:i3'('urn:example:i31', 'urn:example:i96'). +'urn:example:i3'('urn:example:i32', 'urn:example:i69'). +'urn:example:i3'('urn:example:i34', 'urn:example:i0'). +'urn:example:i3'('urn:example:i34', 'urn:example:i24'). +'urn:example:i3'('urn:example:i34', 'urn:example:i66'). +'urn:example:i3'('urn:example:i37', 'urn:example:i84'). +'urn:example:i3'('urn:example:i38', 'urn:example:i96'). +'urn:example:i3'('urn:example:i39', 'urn:example:i54'). +'urn:example:i3'('urn:example:i3', 'urn:example:i84'). +'urn:example:i3'('urn:example:i40', 'urn:example:i48'). +'urn:example:i3'('urn:example:i40', 'urn:example:i87'). +'urn:example:i3'('urn:example:i40', 'urn:example:i93'). +'urn:example:i3'('urn:example:i41', 'urn:example:i75'). +'urn:example:i3'('urn:example:i42', 'urn:example:i36'). +'urn:example:i3'('urn:example:i42', 'urn:example:i75'). +'urn:example:i3'('urn:example:i44', 'urn:example:i15'). +'urn:example:i3'('urn:example:i45', 'urn:example:i69'). +'urn:example:i3'('urn:example:i46', 'urn:example:i78'). +'urn:example:i3'('urn:example:i47', 'urn:example:i27'). +'urn:example:i3'('urn:example:i49', 'urn:example:i63'). +'urn:example:i3'('urn:example:i49', 'urn:example:i66'). +'urn:example:i3'('urn:example:i4', 'urn:example:i48'). +'urn:example:i3'('urn:example:i4', 'urn:example:i87'). +'urn:example:i3'('urn:example:i4', 'urn:example:i90'). +'urn:example:i3'('urn:example:i50', 'urn:example:i45'). +'urn:example:i3'('urn:example:i53', 'urn:example:i6'). +'urn:example:i3'('urn:example:i53', 'urn:example:i75'). +'urn:example:i3'('urn:example:i56', 'urn:example:i63'). +'urn:example:i3'('urn:example:i56', 'urn:example:i6'). +'urn:example:i3'('urn:example:i56', 'urn:example:i72'). +'urn:example:i3'('urn:example:i56', 'urn:example:i81'). +'urn:example:i3'('urn:example:i58', 'urn:example:i96'). +'urn:example:i3'('urn:example:i59', 'urn:example:i3'). +'urn:example:i3'('urn:example:i5', 'urn:example:i0'). +'urn:example:i3'('urn:example:i5', 'urn:example:i21'). +'urn:example:i3'('urn:example:i60', 'urn:example:i42'). +'urn:example:i3'('urn:example:i61', 'urn:example:i3'). +'urn:example:i3'('urn:example:i62', 'urn:example:i18'). +'urn:example:i3'('urn:example:i62', 'urn:example:i39'). +'urn:example:i3'('urn:example:i63', 'urn:example:i36'). +'urn:example:i3'('urn:example:i63', 'urn:example:i84'). +'urn:example:i3'('urn:example:i63', 'urn:example:i84'). +'urn:example:i3'('urn:example:i65', 'urn:example:i93'). +'urn:example:i3'('urn:example:i66', 'urn:example:i3'). +'urn:example:i3'('urn:example:i68', 'urn:example:i48'). +'urn:example:i3'('urn:example:i69', 'urn:example:i72'). +'urn:example:i3'('urn:example:i6', 'urn:example:i87'). +'urn:example:i3'('urn:example:i70', 'urn:example:i21'). +'urn:example:i3'('urn:example:i70', 'urn:example:i96'). +'urn:example:i3'('urn:example:i71', 'urn:example:i21'). +'urn:example:i3'('urn:example:i73', 'urn:example:i51'). +'urn:example:i3'('urn:example:i73', 'urn:example:i54'). +'urn:example:i3'('urn:example:i73', 'urn:example:i84'). +'urn:example:i3'('urn:example:i75', 'urn:example:i45'). +'urn:example:i3'('urn:example:i76', 'urn:example:i45'). +'urn:example:i3'('urn:example:i78', 'urn:example:i15'). +'urn:example:i3'('urn:example:i78', 'urn:example:i72'). +'urn:example:i3'('urn:example:i79', 'urn:example:i30'). +'urn:example:i3'('urn:example:i7', 'urn:example:i15'). +'urn:example:i3'('urn:example:i7', 'urn:example:i36'). +'urn:example:i3'('urn:example:i7', 'urn:example:i48'). +'urn:example:i3'('urn:example:i7', 'urn:example:i84'). +'urn:example:i3'('urn:example:i81', 'urn:example:i60'). +'urn:example:i3'('urn:example:i82', 'urn:example:i48'). +'urn:example:i3'('urn:example:i84', 'urn:example:i18'). +'urn:example:i3'('urn:example:i84', 'urn:example:i21'). +'urn:example:i3'('urn:example:i84', 'urn:example:i39'). +'urn:example:i3'('urn:example:i85', 'urn:example:i33'). +'urn:example:i3'('urn:example:i86', 'urn:example:i57'). +'urn:example:i3'('urn:example:i88', 'urn:example:i30'). +'urn:example:i3'('urn:example:i88', 'urn:example:i3'). +'urn:example:i3'('urn:example:i89', 'urn:example:i69'). +'urn:example:i3'('urn:example:i8', 'urn:example:i72'). +'urn:example:i3'('urn:example:i8', 'urn:example:i81'). +'urn:example:i3'('urn:example:i90', 'urn:example:i18'). +'urn:example:i3'('urn:example:i91', 'urn:example:i87'). +'urn:example:i3'('urn:example:i93', 'urn:example:i63'). +'urn:example:i3'('urn:example:i94', 'urn:example:i54'). +'urn:example:i3'('urn:example:i94', 'urn:example:i54'). +'urn:example:i3'('urn:example:i94', 'urn:example:i69'). +'urn:example:i3'('urn:example:i95', 'urn:example:i78'). +'urn:example:i3'('urn:example:i96', 'urn:example:i81'). +'urn:example:i3'('urn:example:i96', 'urn:example:i96'). +'urn:example:i3'('urn:example:i97', 'urn:example:i69'). +'urn:example:i3'('urn:example:i98', 'urn:example:i63'). +'urn:example:i3'('urn:example:i99', 'urn:example:i96'). +'urn:example:i40'('urn:example:i0', 'urn:example:i6'). +'urn:example:i40'('urn:example:i10', 'urn:example:i84'). +'urn:example:i40'('urn:example:i11', 'urn:example:i57'). +'urn:example:i40'('urn:example:i13', 'urn:example:i54'). +'urn:example:i40'('urn:example:i13', 'urn:example:i57'). +'urn:example:i40'('urn:example:i13', 'urn:example:i87'). +'urn:example:i40'('urn:example:i14', 'urn:example:i78'). +'urn:example:i40'('urn:example:i16', 'urn:example:i96'). +'urn:example:i40'('urn:example:i17', 'urn:example:i81'). +'urn:example:i40'('urn:example:i19', 'urn:example:i42'). +'urn:example:i40'('urn:example:i1', 'urn:example:i63'). +'urn:example:i40'('urn:example:i21', 'urn:example:i63'). +'urn:example:i40'('urn:example:i23', 'urn:example:i18'). +'urn:example:i40'('urn:example:i23', 'urn:example:i48'). +'urn:example:i40'('urn:example:i23', 'urn:example:i84'). +'urn:example:i40'('urn:example:i24', 'urn:example:i18'). +'urn:example:i40'('urn:example:i24', 'urn:example:i72'). +'urn:example:i40'('urn:example:i25', 'urn:example:i12'). +'urn:example:i40'('urn:example:i26', 'urn:example:i3'). +'urn:example:i40'('urn:example:i26', 'urn:example:i63'). +'urn:example:i40'('urn:example:i27', 'urn:example:i54'). +'urn:example:i40'('urn:example:i28', 'urn:example:i6'). +'urn:example:i40'('urn:example:i29', 'urn:example:i15'). +'urn:example:i40'('urn:example:i2', 'urn:example:i39'). +'urn:example:i40'('urn:example:i2', 'urn:example:i48'). +'urn:example:i40'('urn:example:i2', 'urn:example:i72'). +'urn:example:i40'('urn:example:i31', 'urn:example:i60'). +'urn:example:i40'('urn:example:i32', 'urn:example:i24'). +'urn:example:i40'('urn:example:i32', 'urn:example:i57'). +'urn:example:i40'('urn:example:i33', 'urn:example:i12'). +'urn:example:i40'('urn:example:i33', 'urn:example:i9'). +'urn:example:i40'('urn:example:i35', 'urn:example:i54'). +'urn:example:i40'('urn:example:i36', 'urn:example:i57'). +'urn:example:i40'('urn:example:i36', 'urn:example:i90'). +'urn:example:i40'('urn:example:i37', 'urn:example:i6'). +'urn:example:i40'('urn:example:i38', 'urn:example:i30'). +'urn:example:i40'('urn:example:i39', 'urn:example:i42'). +'urn:example:i40'('urn:example:i3', 'urn:example:i51'). +'urn:example:i40'('urn:example:i41', 'urn:example:i51'). +'urn:example:i40'('urn:example:i41', 'urn:example:i72'). +'urn:example:i40'('urn:example:i43', 'urn:example:i81'). +'urn:example:i40'('urn:example:i4', 'urn:example:i51'). +'urn:example:i40'('urn:example:i50', 'urn:example:i18'). +'urn:example:i40'('urn:example:i50', 'urn:example:i72'). +'urn:example:i40'('urn:example:i51', 'urn:example:i39'). +'urn:example:i40'('urn:example:i51', 'urn:example:i60'). +'urn:example:i40'('urn:example:i51', 'urn:example:i9'). +'urn:example:i40'('urn:example:i53', 'urn:example:i3'). +'urn:example:i40'('urn:example:i54', 'urn:example:i30'). +'urn:example:i40'('urn:example:i55', 'urn:example:i36'). +'urn:example:i40'('urn:example:i58', 'urn:example:i39'). +'urn:example:i40'('urn:example:i59', 'urn:example:i21'). +'urn:example:i40'('urn:example:i59', 'urn:example:i30'). +'urn:example:i40'('urn:example:i59', 'urn:example:i9'). +'urn:example:i40'('urn:example:i5', 'urn:example:i90'). +'urn:example:i40'('urn:example:i61', 'urn:example:i93'). +'urn:example:i40'('urn:example:i62', 'urn:example:i60'). +'urn:example:i40'('urn:example:i62', 'urn:example:i84'). +'urn:example:i40'('urn:example:i64', 'urn:example:i21'). +'urn:example:i40'('urn:example:i65', 'urn:example:i78'). +'urn:example:i40'('urn:example:i68', 'urn:example:i24'). +'urn:example:i40'('urn:example:i68', 'urn:example:i57'). +'urn:example:i40'('urn:example:i68', 'urn:example:i69'). +'urn:example:i40'('urn:example:i69', 'urn:example:i24'). +'urn:example:i40'('urn:example:i69', 'urn:example:i90'). +'urn:example:i40'('urn:example:i70', 'urn:example:i27'). +'urn:example:i40'('urn:example:i70', 'urn:example:i99'). +'urn:example:i40'('urn:example:i71', 'urn:example:i69'). +'urn:example:i40'('urn:example:i72', 'urn:example:i27'). +'urn:example:i40'('urn:example:i72', 'urn:example:i27'). +'urn:example:i40'('urn:example:i74', 'urn:example:i96'). +'urn:example:i40'('urn:example:i74', 'urn:example:i9'). +'urn:example:i40'('urn:example:i76', 'urn:example:i18'). +'urn:example:i40'('urn:example:i76', 'urn:example:i30'). +'urn:example:i40'('urn:example:i76', 'urn:example:i3'). +'urn:example:i40'('urn:example:i76', 'urn:example:i72'). +'urn:example:i40'('urn:example:i76', 'urn:example:i9'). +'urn:example:i40'('urn:example:i78', 'urn:example:i90'). +'urn:example:i40'('urn:example:i79', 'urn:example:i57'). +'urn:example:i40'('urn:example:i79', 'urn:example:i60'). +'urn:example:i40'('urn:example:i7', 'urn:example:i12'). +'urn:example:i40'('urn:example:i7', 'urn:example:i87'). +'urn:example:i40'('urn:example:i80', 'urn:example:i54'). +'urn:example:i40'('urn:example:i80', 'urn:example:i60'). +'urn:example:i40'('urn:example:i83', 'urn:example:i45'). +'urn:example:i40'('urn:example:i83', 'urn:example:i78'). +'urn:example:i40'('urn:example:i83', 'urn:example:i87'). +'urn:example:i40'('urn:example:i83', 'urn:example:i96'). +'urn:example:i40'('urn:example:i84', 'urn:example:i48'). +'urn:example:i40'('urn:example:i86', 'urn:example:i48'). +'urn:example:i40'('urn:example:i86', 'urn:example:i60'). +'urn:example:i40'('urn:example:i86', 'urn:example:i6'). +'urn:example:i40'('urn:example:i86', 'urn:example:i90'). +'urn:example:i40'('urn:example:i88', 'urn:example:i27'). +'urn:example:i40'('urn:example:i88', 'urn:example:i66'). +'urn:example:i40'('urn:example:i89', 'urn:example:i21'). +'urn:example:i40'('urn:example:i89', 'urn:example:i60'). +'urn:example:i40'('urn:example:i90', 'urn:example:i63'). +'urn:example:i40'('urn:example:i92', 'urn:example:i30'). +'urn:example:i40'('urn:example:i92', 'urn:example:i9'). +'urn:example:i40'('urn:example:i93', 'urn:example:i36'). +'urn:example:i40'('urn:example:i94', 'urn:example:i87'). +'urn:example:i40'('urn:example:i94', 'urn:example:i9'). +'urn:example:i40'('urn:example:i95', 'urn:example:i15'). +'urn:example:i40'('urn:example:i95', 'urn:example:i30'). +'urn:example:i40'('urn:example:i95', 'urn:example:i99'). +'urn:example:i40'('urn:example:i96', 'urn:example:i57'). +'urn:example:i40'('urn:example:i97', 'urn:example:i3'). +'urn:example:i40'('urn:example:i98', 'urn:example:i51'). +'urn:example:i40'('urn:example:i98', 'urn:example:i66'). +'urn:example:i40'('urn:example:i99', 'urn:example:i48'). +'urn:example:i40'('urn:example:i99', 'urn:example:i9'). +'urn:example:i41'('urn:example:i0', 'urn:example:i12'). +'urn:example:i41'('urn:example:i10', 'urn:example:i93'). +'urn:example:i41'('urn:example:i11', 'urn:example:i51'). +'urn:example:i41'('urn:example:i11', 'urn:example:i93'). +'urn:example:i41'('urn:example:i13', 'urn:example:i18'). +'urn:example:i41'('urn:example:i16', 'urn:example:i54'). +'urn:example:i41'('urn:example:i1', 'urn:example:i15'). +'urn:example:i41'('urn:example:i21', 'urn:example:i15'). +'urn:example:i41'('urn:example:i21', 'urn:example:i3'). +'urn:example:i41'('urn:example:i24', 'urn:example:i30'). +'urn:example:i41'('urn:example:i24', 'urn:example:i33'). +'urn:example:i41'('urn:example:i25', 'urn:example:i3'). +'urn:example:i41'('urn:example:i26', 'urn:example:i33'). +'urn:example:i41'('urn:example:i27', 'urn:example:i6'). +'urn:example:i41'('urn:example:i28', 'urn:example:i30'). +'urn:example:i41'('urn:example:i29', 'urn:example:i3'). +'urn:example:i41'('urn:example:i2', 'urn:example:i48'). +'urn:example:i41'('urn:example:i32', 'urn:example:i39'). +'urn:example:i41'('urn:example:i32', 'urn:example:i90'). +'urn:example:i41'('urn:example:i33', 'urn:example:i42'). +'urn:example:i41'('urn:example:i36', 'urn:example:i0'). +'urn:example:i41'('urn:example:i37', 'urn:example:i24'). +'urn:example:i41'('urn:example:i38', 'urn:example:i63'). +'urn:example:i41'('urn:example:i39', 'urn:example:i30'). +'urn:example:i41'('urn:example:i39', 'urn:example:i66'). +'urn:example:i41'('urn:example:i41', 'urn:example:i27'). +'urn:example:i41'('urn:example:i42', 'urn:example:i93'). +'urn:example:i41'('urn:example:i43', 'urn:example:i75'). +'urn:example:i41'('urn:example:i44', 'urn:example:i90'). +'urn:example:i41'('urn:example:i46', 'urn:example:i93'). +'urn:example:i41'('urn:example:i47', 'urn:example:i30'). +'urn:example:i41'('urn:example:i4', 'urn:example:i84'). +'urn:example:i41'('urn:example:i50', 'urn:example:i30'). +'urn:example:i41'('urn:example:i50', 'urn:example:i57'). +'urn:example:i41'('urn:example:i51', 'urn:example:i63'). +'urn:example:i41'('urn:example:i52', 'urn:example:i15'). +'urn:example:i41'('urn:example:i52', 'urn:example:i75'). +'urn:example:i41'('urn:example:i53', 'urn:example:i66'). +'urn:example:i41'('urn:example:i53', 'urn:example:i84'). +'urn:example:i41'('urn:example:i55', 'urn:example:i51'). +'urn:example:i41'('urn:example:i56', 'urn:example:i33'). +'urn:example:i41'('urn:example:i57', 'urn:example:i72'). +'urn:example:i41'('urn:example:i58', 'urn:example:i33'). +'urn:example:i41'('urn:example:i59', 'urn:example:i66'). +'urn:example:i41'('urn:example:i60', 'urn:example:i27'). +'urn:example:i41'('urn:example:i62', 'urn:example:i48'). +'urn:example:i41'('urn:example:i63', 'urn:example:i30'). +'urn:example:i41'('urn:example:i64', 'urn:example:i51'). +'urn:example:i41'('urn:example:i65', 'urn:example:i60'). +'urn:example:i41'('urn:example:i65', 'urn:example:i78'). +'urn:example:i41'('urn:example:i66', 'urn:example:i54'). +'urn:example:i41'('urn:example:i66', 'urn:example:i84'). +'urn:example:i41'('urn:example:i68', 'urn:example:i36'). +'urn:example:i41'('urn:example:i6', 'urn:example:i18'). +'urn:example:i41'('urn:example:i6', 'urn:example:i33'). +'urn:example:i41'('urn:example:i6', 'urn:example:i54'). +'urn:example:i41'('urn:example:i6', 'urn:example:i60'). +'urn:example:i41'('urn:example:i6', 'urn:example:i99'). +'urn:example:i41'('urn:example:i72', 'urn:example:i48'). +'urn:example:i41'('urn:example:i72', 'urn:example:i78'). +'urn:example:i41'('urn:example:i72', 'urn:example:i93'). +'urn:example:i41'('urn:example:i72', 'urn:example:i96'). +'urn:example:i41'('urn:example:i73', 'urn:example:i6'). +'urn:example:i41'('urn:example:i74', 'urn:example:i24'). +'urn:example:i41'('urn:example:i75', 'urn:example:i36'). +'urn:example:i41'('urn:example:i77', 'urn:example:i90'). +'urn:example:i41'('urn:example:i78', 'urn:example:i63'). +'urn:example:i41'('urn:example:i81', 'urn:example:i66'). +'urn:example:i41'('urn:example:i82', 'urn:example:i93'). +'urn:example:i41'('urn:example:i82', 'urn:example:i96'). +'urn:example:i41'('urn:example:i85', 'urn:example:i12'). +'urn:example:i41'('urn:example:i85', 'urn:example:i9'). +'urn:example:i41'('urn:example:i86', 'urn:example:i66'). +'urn:example:i41'('urn:example:i87', 'urn:example:i24'). +'urn:example:i41'('urn:example:i88', 'urn:example:i18'). +'urn:example:i41'('urn:example:i8', 'urn:example:i39'). +'urn:example:i41'('urn:example:i8', 'urn:example:i54'). +'urn:example:i41'('urn:example:i8', 'urn:example:i90'). +'urn:example:i41'('urn:example:i90', 'urn:example:i42'). +'urn:example:i41'('urn:example:i91', 'urn:example:i9'). +'urn:example:i41'('urn:example:i92', 'urn:example:i96'). +'urn:example:i41'('urn:example:i95', 'urn:example:i6'). +'urn:example:i41'('urn:example:i96', 'urn:example:i3'). +'urn:example:i41'('urn:example:i96', 'urn:example:i3'). +'urn:example:i41'('urn:example:i96', 'urn:example:i42'). +'urn:example:i41'('urn:example:i98', 'urn:example:i93'). +'urn:example:i41'('urn:example:i9', 'urn:example:i12'). +'urn:example:i41'('urn:example:i9', 'urn:example:i6'). +'urn:example:i42'('urn:example:i0', 'urn:example:i48'). +'urn:example:i42'('urn:example:i10', 'urn:example:i42'). +'urn:example:i42'('urn:example:i13', 'urn:example:i39'). +'urn:example:i42'('urn:example:i16', 'urn:example:i90'). +'urn:example:i42'('urn:example:i18', 'urn:example:i48'). +'urn:example:i42'('urn:example:i19', 'urn:example:i30'). +'urn:example:i42'('urn:example:i1', 'urn:example:i3'). +'urn:example:i42'('urn:example:i20', 'urn:example:i33'). +'urn:example:i42'('urn:example:i20', 'urn:example:i96'). +'urn:example:i42'('urn:example:i22', 'urn:example:i21'). +'urn:example:i42'('urn:example:i24', 'urn:example:i33'). +'urn:example:i42'('urn:example:i25', 'urn:example:i27'). +'urn:example:i42'('urn:example:i26', 'urn:example:i54'). +'urn:example:i42'('urn:example:i26', 'urn:example:i66'). +'urn:example:i42'('urn:example:i26', 'urn:example:i6'). +'urn:example:i42'('urn:example:i28', 'urn:example:i18'). +'urn:example:i42'('urn:example:i28', 'urn:example:i60'). +'urn:example:i42'('urn:example:i29', 'urn:example:i54'). +'urn:example:i42'('urn:example:i29', 'urn:example:i6'). +'urn:example:i42'('urn:example:i29', 'urn:example:i78'). +'urn:example:i42'('urn:example:i30', 'urn:example:i15'). +'urn:example:i42'('urn:example:i31', 'urn:example:i3'). +'urn:example:i42'('urn:example:i31', 'urn:example:i45'). +'urn:example:i42'('urn:example:i32', 'urn:example:i6'). +'urn:example:i42'('urn:example:i36', 'urn:example:i39'). +'urn:example:i42'('urn:example:i3', 'urn:example:i30'). +'urn:example:i42'('urn:example:i3', 'urn:example:i57'). +'urn:example:i42'('urn:example:i40', 'urn:example:i81'). +'urn:example:i42'('urn:example:i42', 'urn:example:i33'). +'urn:example:i42'('urn:example:i42', 'urn:example:i39'). +'urn:example:i42'('urn:example:i43', 'urn:example:i42'). +'urn:example:i42'('urn:example:i43', 'urn:example:i87'). +'urn:example:i42'('urn:example:i46', 'urn:example:i87'). +'urn:example:i42'('urn:example:i47', 'urn:example:i72'). +'urn:example:i42'('urn:example:i47', 'urn:example:i9'). +'urn:example:i42'('urn:example:i52', 'urn:example:i15'). +'urn:example:i42'('urn:example:i55', 'urn:example:i6'). +'urn:example:i42'('urn:example:i56', 'urn:example:i30'). +'urn:example:i42'('urn:example:i59', 'urn:example:i30'). +'urn:example:i42'('urn:example:i5', 'urn:example:i45'). +'urn:example:i42'('urn:example:i60', 'urn:example:i63'). +'urn:example:i42'('urn:example:i62', 'urn:example:i57'). +'urn:example:i42'('urn:example:i63', 'urn:example:i48'). +'urn:example:i42'('urn:example:i64', 'urn:example:i87'). +'urn:example:i42'('urn:example:i65', 'urn:example:i48'). +'urn:example:i42'('urn:example:i65', 'urn:example:i75'). +'urn:example:i42'('urn:example:i6', 'urn:example:i3'). +'urn:example:i42'('urn:example:i70', 'urn:example:i45'). +'urn:example:i42'('urn:example:i70', 'urn:example:i51'). +'urn:example:i42'('urn:example:i70', 'urn:example:i9'). +'urn:example:i42'('urn:example:i72', 'urn:example:i45'). +'urn:example:i42'('urn:example:i72', 'urn:example:i75'). +'urn:example:i42'('urn:example:i74', 'urn:example:i78'). +'urn:example:i42'('urn:example:i75', 'urn:example:i72'). +'urn:example:i42'('urn:example:i76', 'urn:example:i18'). +'urn:example:i42'('urn:example:i76', 'urn:example:i30'). +'urn:example:i42'('urn:example:i77', 'urn:example:i93'). +'urn:example:i42'('urn:example:i79', 'urn:example:i27'). +'urn:example:i42'('urn:example:i7', 'urn:example:i33'). +'urn:example:i42'('urn:example:i80', 'urn:example:i18'). +'urn:example:i42'('urn:example:i80', 'urn:example:i72'). +'urn:example:i42'('urn:example:i80', 'urn:example:i96'). +'urn:example:i42'('urn:example:i81', 'urn:example:i81'). +'urn:example:i42'('urn:example:i83', 'urn:example:i12'). +'urn:example:i42'('urn:example:i83', 'urn:example:i48'). +'urn:example:i42'('urn:example:i87', 'urn:example:i87'). +'urn:example:i42'('urn:example:i88', 'urn:example:i3'). +'urn:example:i42'('urn:example:i88', 'urn:example:i60'). +'urn:example:i42'('urn:example:i88', 'urn:example:i78'). +'urn:example:i42'('urn:example:i88', 'urn:example:i96'). +'urn:example:i42'('urn:example:i89', 'urn:example:i18'). +'urn:example:i42'('urn:example:i89', 'urn:example:i27'). +'urn:example:i42'('urn:example:i89', 'urn:example:i54'). +'urn:example:i42'('urn:example:i8', 'urn:example:i21'). +'urn:example:i42'('urn:example:i93', 'urn:example:i48'). +'urn:example:i42'('urn:example:i94', 'urn:example:i51'). +'urn:example:i42'('urn:example:i95', 'urn:example:i15'). +'urn:example:i42'('urn:example:i95', 'urn:example:i39'). +'urn:example:i42'('urn:example:i95', 'urn:example:i81'). +'urn:example:i42'('urn:example:i96', 'urn:example:i69'). +'urn:example:i42'('urn:example:i97', 'urn:example:i84'). +'urn:example:i42'('urn:example:i98', 'urn:example:i81'). +'urn:example:i42'('urn:example:i99', 'urn:example:i18'). +'urn:example:i42'('urn:example:i99', 'urn:example:i72'). +'urn:example:i42'('urn:example:i9', 'urn:example:i9'). +'urn:example:i43'('urn:example:i11', 'urn:example:i27'). +'urn:example:i43'('urn:example:i11', 'urn:example:i51'). +'urn:example:i43'('urn:example:i12', 'urn:example:i42'). +'urn:example:i43'('urn:example:i12', 'urn:example:i63'). +'urn:example:i43'('urn:example:i12', 'urn:example:i93'). +'urn:example:i43'('urn:example:i14', 'urn:example:i36'). +'urn:example:i43'('urn:example:i17', 'urn:example:i90'). +'urn:example:i43'('urn:example:i18', 'urn:example:i18'). +'urn:example:i43'('urn:example:i18', 'urn:example:i81'). +'urn:example:i43'('urn:example:i19', 'urn:example:i12'). +'urn:example:i43'('urn:example:i19', 'urn:example:i27'). +'urn:example:i43'('urn:example:i19', 'urn:example:i39'). +'urn:example:i43'('urn:example:i20', 'urn:example:i3'). +'urn:example:i43'('urn:example:i20', 'urn:example:i81'). +'urn:example:i43'('urn:example:i22', 'urn:example:i24'). +'urn:example:i43'('urn:example:i22', 'urn:example:i72'). +'urn:example:i43'('urn:example:i25', 'urn:example:i63'). +'urn:example:i43'('urn:example:i27', 'urn:example:i99'). +'urn:example:i43'('urn:example:i28', 'urn:example:i45'). +'urn:example:i43'('urn:example:i28', 'urn:example:i99'). +'urn:example:i43'('urn:example:i29', 'urn:example:i24'). +'urn:example:i43'('urn:example:i29', 'urn:example:i51'). +'urn:example:i43'('urn:example:i29', 'urn:example:i75'). +'urn:example:i43'('urn:example:i2', 'urn:example:i18'). +'urn:example:i43'('urn:example:i30', 'urn:example:i96'). +'urn:example:i43'('urn:example:i31', 'urn:example:i6'). +'urn:example:i43'('urn:example:i33', 'urn:example:i21'). +'urn:example:i43'('urn:example:i34', 'urn:example:i60'). +'urn:example:i43'('urn:example:i35', 'urn:example:i33'). +'urn:example:i43'('urn:example:i38', 'urn:example:i42'). +'urn:example:i43'('urn:example:i39', 'urn:example:i66'). +'urn:example:i43'('urn:example:i39', 'urn:example:i81'). +'urn:example:i43'('urn:example:i3', 'urn:example:i18'). +'urn:example:i43'('urn:example:i3', 'urn:example:i24'). +'urn:example:i43'('urn:example:i3', 'urn:example:i24'). +'urn:example:i43'('urn:example:i40', 'urn:example:i69'). +'urn:example:i43'('urn:example:i41', 'urn:example:i24'). +'urn:example:i43'('urn:example:i42', 'urn:example:i81'). +'urn:example:i43'('urn:example:i43', 'urn:example:i96'). +'urn:example:i43'('urn:example:i44', 'urn:example:i33'). +'urn:example:i43'('urn:example:i44', 'urn:example:i93'). +'urn:example:i43'('urn:example:i48', 'urn:example:i21'). +'urn:example:i43'('urn:example:i49', 'urn:example:i42'). +'urn:example:i43'('urn:example:i49', 'urn:example:i96'). +'urn:example:i43'('urn:example:i49', 'urn:example:i9'). +'urn:example:i43'('urn:example:i4', 'urn:example:i51'). +'urn:example:i43'('urn:example:i4', 'urn:example:i81'). +'urn:example:i43'('urn:example:i50', 'urn:example:i57'). +'urn:example:i43'('urn:example:i51', 'urn:example:i60'). +'urn:example:i43'('urn:example:i52', 'urn:example:i39'). +'urn:example:i43'('urn:example:i52', 'urn:example:i45'). +'urn:example:i43'('urn:example:i54', 'urn:example:i33'). +'urn:example:i43'('urn:example:i54', 'urn:example:i84'). +'urn:example:i43'('urn:example:i54', 'urn:example:i84'). +'urn:example:i43'('urn:example:i56', 'urn:example:i81'). +'urn:example:i43'('urn:example:i57', 'urn:example:i93'). +'urn:example:i43'('urn:example:i58', 'urn:example:i93'). +'urn:example:i43'('urn:example:i59', 'urn:example:i75'). +'urn:example:i43'('urn:example:i5', 'urn:example:i66'). +'urn:example:i43'('urn:example:i60', 'urn:example:i60'). +'urn:example:i43'('urn:example:i63', 'urn:example:i24'). +'urn:example:i43'('urn:example:i63', 'urn:example:i3'). +'urn:example:i43'('urn:example:i63', 'urn:example:i48'). +'urn:example:i43'('urn:example:i64', 'urn:example:i9'). +'urn:example:i43'('urn:example:i65', 'urn:example:i93'). +'urn:example:i43'('urn:example:i68', 'urn:example:i63'). +'urn:example:i43'('urn:example:i6', 'urn:example:i18'). +'urn:example:i43'('urn:example:i6', 'urn:example:i39'). +'urn:example:i43'('urn:example:i6', 'urn:example:i78'). +'urn:example:i43'('urn:example:i71', 'urn:example:i66'). +'urn:example:i43'('urn:example:i72', 'urn:example:i42'). +'urn:example:i43'('urn:example:i72', 'urn:example:i45'). +'urn:example:i43'('urn:example:i72', 'urn:example:i54'). +'urn:example:i43'('urn:example:i72', 'urn:example:i90'). +'urn:example:i43'('urn:example:i73', 'urn:example:i33'). +'urn:example:i43'('urn:example:i74', 'urn:example:i18'). +'urn:example:i43'('urn:example:i75', 'urn:example:i21'). +'urn:example:i43'('urn:example:i75', 'urn:example:i36'). +'urn:example:i43'('urn:example:i75', 'urn:example:i93'). +'urn:example:i43'('urn:example:i76', 'urn:example:i0'). +'urn:example:i43'('urn:example:i76', 'urn:example:i69'). +'urn:example:i43'('urn:example:i7', 'urn:example:i24'). +'urn:example:i43'('urn:example:i7', 'urn:example:i78'). +'urn:example:i43'('urn:example:i80', 'urn:example:i78'). +'urn:example:i43'('urn:example:i81', 'urn:example:i15'). +'urn:example:i43'('urn:example:i81', 'urn:example:i15'). +'urn:example:i43'('urn:example:i82', 'urn:example:i54'). +'urn:example:i43'('urn:example:i83', 'urn:example:i15'). +'urn:example:i43'('urn:example:i83', 'urn:example:i66'). +'urn:example:i43'('urn:example:i84', 'urn:example:i0'). +'urn:example:i43'('urn:example:i84', 'urn:example:i72'). +'urn:example:i43'('urn:example:i86', 'urn:example:i15'). +'urn:example:i43'('urn:example:i86', 'urn:example:i48'). +'urn:example:i43'('urn:example:i86', 'urn:example:i51'). +'urn:example:i43'('urn:example:i86', 'urn:example:i6'). +'urn:example:i43'('urn:example:i86', 'urn:example:i9'). +'urn:example:i43'('urn:example:i88', 'urn:example:i75'). +'urn:example:i43'('urn:example:i88', 'urn:example:i84'). +'urn:example:i43'('urn:example:i89', 'urn:example:i36'). +'urn:example:i43'('urn:example:i90', 'urn:example:i81'). +'urn:example:i43'('urn:example:i90', 'urn:example:i87'). +'urn:example:i43'('urn:example:i91', 'urn:example:i42'). +'urn:example:i43'('urn:example:i94', 'urn:example:i3'). +'urn:example:i43'('urn:example:i94', 'urn:example:i87'). +'urn:example:i43'('urn:example:i95', 'urn:example:i18'). +'urn:example:i43'('urn:example:i96', 'urn:example:i87'). +'urn:example:i43'('urn:example:i98', 'urn:example:i21'). +'urn:example:i43'('urn:example:i99', 'urn:example:i33'). +'urn:example:i43'('urn:example:i9', 'urn:example:i33'). +'urn:example:i43'('urn:example:i9', 'urn:example:i3'). +'urn:example:i43'('urn:example:i9', 'urn:example:i6'). +'urn:example:i43'('urn:example:i9', 'urn:example:i99'). +'urn:example:i44'('urn:example:i0', 'urn:example:i90'). +'urn:example:i44'('urn:example:i12', 'urn:example:i93'). +'urn:example:i44'('urn:example:i14', 'urn:example:i12'). +'urn:example:i44'('urn:example:i15', 'urn:example:i36'). +'urn:example:i44'('urn:example:i15', 'urn:example:i45'). +'urn:example:i44'('urn:example:i16', 'urn:example:i93'). +'urn:example:i44'('urn:example:i17', 'urn:example:i3'). +'urn:example:i44'('urn:example:i17', 'urn:example:i42'). +'urn:example:i44'('urn:example:i19', 'urn:example:i87'). +'urn:example:i44'('urn:example:i19', 'urn:example:i93'). +'urn:example:i44'('urn:example:i1', 'urn:example:i33'). +'urn:example:i44'('urn:example:i1', 'urn:example:i75'). +'urn:example:i44'('urn:example:i22', 'urn:example:i54'). +'urn:example:i44'('urn:example:i23', 'urn:example:i33'). +'urn:example:i44'('urn:example:i25', 'urn:example:i63'). +'urn:example:i44'('urn:example:i27', 'urn:example:i54'). +'urn:example:i44'('urn:example:i27', 'urn:example:i78'). +'urn:example:i44'('urn:example:i29', 'urn:example:i84'). +'urn:example:i44'('urn:example:i2', 'urn:example:i51'). +'urn:example:i44'('urn:example:i30', 'urn:example:i48'). +'urn:example:i44'('urn:example:i32', 'urn:example:i36'). +'urn:example:i44'('urn:example:i32', 'urn:example:i78'). +'urn:example:i44'('urn:example:i32', 'urn:example:i81'). +'urn:example:i44'('urn:example:i33', 'urn:example:i6'). +'urn:example:i44'('urn:example:i34', 'urn:example:i15'). +'urn:example:i44'('urn:example:i35', 'urn:example:i15'). +'urn:example:i44'('urn:example:i35', 'urn:example:i75'). +'urn:example:i44'('urn:example:i35', 'urn:example:i78'). +'urn:example:i44'('urn:example:i38', 'urn:example:i57'). +'urn:example:i44'('urn:example:i3', 'urn:example:i36'). +'urn:example:i44'('urn:example:i3', 'urn:example:i48'). +'urn:example:i44'('urn:example:i42', 'urn:example:i3'). +'urn:example:i44'('urn:example:i42', 'urn:example:i72'). +'urn:example:i44'('urn:example:i42', 'urn:example:i72'). +'urn:example:i44'('urn:example:i42', 'urn:example:i75'). +'urn:example:i44'('urn:example:i43', 'urn:example:i51'). +'urn:example:i44'('urn:example:i43', 'urn:example:i63'). +'urn:example:i44'('urn:example:i43', 'urn:example:i90'). +'urn:example:i44'('urn:example:i45', 'urn:example:i9'). +'urn:example:i44'('urn:example:i46', 'urn:example:i63'). +'urn:example:i44'('urn:example:i46', 'urn:example:i81'). +'urn:example:i44'('urn:example:i48', 'urn:example:i27'). +'urn:example:i44'('urn:example:i49', 'urn:example:i6'). +'urn:example:i44'('urn:example:i49', 'urn:example:i90'). +'urn:example:i44'('urn:example:i4', 'urn:example:i66'). +'urn:example:i44'('urn:example:i51', 'urn:example:i63'). +'urn:example:i44'('urn:example:i52', 'urn:example:i9'). +'urn:example:i44'('urn:example:i54', 'urn:example:i39'). +'urn:example:i44'('urn:example:i54', 'urn:example:i51'). +'urn:example:i44'('urn:example:i55', 'urn:example:i9'). +'urn:example:i44'('urn:example:i56', 'urn:example:i30'). +'urn:example:i44'('urn:example:i57', 'urn:example:i27'). +'urn:example:i44'('urn:example:i57', 'urn:example:i3'). +'urn:example:i44'('urn:example:i57', 'urn:example:i54'). +'urn:example:i44'('urn:example:i57', 'urn:example:i81'). +'urn:example:i44'('urn:example:i58', 'urn:example:i21'). +'urn:example:i44'('urn:example:i58', 'urn:example:i27'). +'urn:example:i44'('urn:example:i58', 'urn:example:i87'). +'urn:example:i44'('urn:example:i58', 'urn:example:i93'). +'urn:example:i44'('urn:example:i5', 'urn:example:i99'). +'urn:example:i44'('urn:example:i61', 'urn:example:i30'). +'urn:example:i44'('urn:example:i61', 'urn:example:i87'). +'urn:example:i44'('urn:example:i62', 'urn:example:i54'). +'urn:example:i44'('urn:example:i63', 'urn:example:i48'). +'urn:example:i44'('urn:example:i65', 'urn:example:i39'). +'urn:example:i44'('urn:example:i66', 'urn:example:i48'). +'urn:example:i44'('urn:example:i67', 'urn:example:i24'). +'urn:example:i44'('urn:example:i69', 'urn:example:i3'). +'urn:example:i44'('urn:example:i73', 'urn:example:i72'). +'urn:example:i44'('urn:example:i74', 'urn:example:i63'). +'urn:example:i44'('urn:example:i75', 'urn:example:i21'). +'urn:example:i44'('urn:example:i75', 'urn:example:i93'). +'urn:example:i44'('urn:example:i76', 'urn:example:i54'). +'urn:example:i44'('urn:example:i77', 'urn:example:i45'). +'urn:example:i44'('urn:example:i77', 'urn:example:i60'). +'urn:example:i44'('urn:example:i79', 'urn:example:i63'). +'urn:example:i44'('urn:example:i79', 'urn:example:i72'). +'urn:example:i44'('urn:example:i79', 'urn:example:i75'). +'urn:example:i44'('urn:example:i7', 'urn:example:i45'). +'urn:example:i44'('urn:example:i7', 'urn:example:i6'). +'urn:example:i44'('urn:example:i80', 'urn:example:i21'). +'urn:example:i44'('urn:example:i80', 'urn:example:i39'). +'urn:example:i44'('urn:example:i80', 'urn:example:i60'). +'urn:example:i44'('urn:example:i82', 'urn:example:i33'). +'urn:example:i44'('urn:example:i82', 'urn:example:i66'). +'urn:example:i44'('urn:example:i82', 'urn:example:i6'). +'urn:example:i44'('urn:example:i85', 'urn:example:i3'). +'urn:example:i44'('urn:example:i85', 'urn:example:i42'). +'urn:example:i44'('urn:example:i86', 'urn:example:i51'). +'urn:example:i44'('urn:example:i88', 'urn:example:i27'). +'urn:example:i44'('urn:example:i89', 'urn:example:i93'). +'urn:example:i44'('urn:example:i90', 'urn:example:i15'). +'urn:example:i44'('urn:example:i90', 'urn:example:i75'). +'urn:example:i44'('urn:example:i91', 'urn:example:i87'). +'urn:example:i44'('urn:example:i92', 'urn:example:i72'). +'urn:example:i44'('urn:example:i93', 'urn:example:i15'). +'urn:example:i44'('urn:example:i95', 'urn:example:i93'). +'urn:example:i44'('urn:example:i96', 'urn:example:i81'). +'urn:example:i44'('urn:example:i97', 'urn:example:i63'). +'urn:example:i44'('urn:example:i98', 'urn:example:i33'). +'urn:example:i44'('urn:example:i99', 'urn:example:i42'). +'urn:example:i45'('urn:example:i0', 'urn:example:i0'). +'urn:example:i45'('urn:example:i10', 'urn:example:i30'). +'urn:example:i45'('urn:example:i16', 'urn:example:i81'). +'urn:example:i45'('urn:example:i18', 'urn:example:i45'). +'urn:example:i45'('urn:example:i19', 'urn:example:i36'). +'urn:example:i45'('urn:example:i23', 'urn:example:i45'). +'urn:example:i45'('urn:example:i23', 'urn:example:i9'). +'urn:example:i45'('urn:example:i24', 'urn:example:i33'). +'urn:example:i45'('urn:example:i25', 'urn:example:i24'). +'urn:example:i45'('urn:example:i26', 'urn:example:i75'). +'urn:example:i45'('urn:example:i26', 'urn:example:i84'). +'urn:example:i45'('urn:example:i26', 'urn:example:i87'). +'urn:example:i45'('urn:example:i29', 'urn:example:i3'). +'urn:example:i45'('urn:example:i29', 'urn:example:i48'). +'urn:example:i45'('urn:example:i29', 'urn:example:i81'). +'urn:example:i45'('urn:example:i29', 'urn:example:i99'). +'urn:example:i45'('urn:example:i30', 'urn:example:i6'). +'urn:example:i45'('urn:example:i30', 'urn:example:i9'). +'urn:example:i45'('urn:example:i32', 'urn:example:i15'). +'urn:example:i45'('urn:example:i34', 'urn:example:i84'). +'urn:example:i45'('urn:example:i38', 'urn:example:i48'). +'urn:example:i45'('urn:example:i38', 'urn:example:i78'). +'urn:example:i45'('urn:example:i39', 'urn:example:i72'). +'urn:example:i45'('urn:example:i3', 'urn:example:i54'). +'urn:example:i45'('urn:example:i40', 'urn:example:i27'). +'urn:example:i45'('urn:example:i41', 'urn:example:i60'). +'urn:example:i45'('urn:example:i42', 'urn:example:i75'). +'urn:example:i45'('urn:example:i43', 'urn:example:i33'). +'urn:example:i45'('urn:example:i43', 'urn:example:i75'). +'urn:example:i45'('urn:example:i43', 'urn:example:i99'). +'urn:example:i45'('urn:example:i48', 'urn:example:i42'). +'urn:example:i45'('urn:example:i4', 'urn:example:i15'). +'urn:example:i45'('urn:example:i4', 'urn:example:i51'). +'urn:example:i45'('urn:example:i4', 'urn:example:i84'). +'urn:example:i45'('urn:example:i50', 'urn:example:i75'). +'urn:example:i45'('urn:example:i51', 'urn:example:i18'). +'urn:example:i45'('urn:example:i51', 'urn:example:i48'). +'urn:example:i45'('urn:example:i52', 'urn:example:i54'). +'urn:example:i45'('urn:example:i55', 'urn:example:i48'). +'urn:example:i45'('urn:example:i55', 'urn:example:i66'). +'urn:example:i45'('urn:example:i56', 'urn:example:i36'). +'urn:example:i45'('urn:example:i57', 'urn:example:i60'). +'urn:example:i45'('urn:example:i58', 'urn:example:i3'). +'urn:example:i45'('urn:example:i58', 'urn:example:i63'). +'urn:example:i45'('urn:example:i58', 'urn:example:i75'). +'urn:example:i45'('urn:example:i5', 'urn:example:i57'). +'urn:example:i45'('urn:example:i5', 'urn:example:i93'). +'urn:example:i45'('urn:example:i60', 'urn:example:i39'). +'urn:example:i45'('urn:example:i60', 'urn:example:i39'). +'urn:example:i45'('urn:example:i60', 'urn:example:i54'). +'urn:example:i45'('urn:example:i63', 'urn:example:i24'). +'urn:example:i45'('urn:example:i64', 'urn:example:i81'). +'urn:example:i45'('urn:example:i65', 'urn:example:i54'). +'urn:example:i45'('urn:example:i65', 'urn:example:i81'). +'urn:example:i45'('urn:example:i66', 'urn:example:i0'). +'urn:example:i45'('urn:example:i66', 'urn:example:i3'). +'urn:example:i45'('urn:example:i68', 'urn:example:i51'). +'urn:example:i45'('urn:example:i69', 'urn:example:i75'). +'urn:example:i45'('urn:example:i69', 'urn:example:i81'). +'urn:example:i45'('urn:example:i6', 'urn:example:i39'). +'urn:example:i45'('urn:example:i6', 'urn:example:i93'). +'urn:example:i45'('urn:example:i71', 'urn:example:i12'). +'urn:example:i45'('urn:example:i75', 'urn:example:i30'). +'urn:example:i45'('urn:example:i75', 'urn:example:i57'). +'urn:example:i45'('urn:example:i76', 'urn:example:i39'). +'urn:example:i45'('urn:example:i76', 'urn:example:i42'). +'urn:example:i45'('urn:example:i76', 'urn:example:i63'). +'urn:example:i45'('urn:example:i77', 'urn:example:i36'). +'urn:example:i45'('urn:example:i77', 'urn:example:i51'). +'urn:example:i45'('urn:example:i7', 'urn:example:i60'). +'urn:example:i45'('urn:example:i80', 'urn:example:i30'). +'urn:example:i45'('urn:example:i80', 'urn:example:i39'). +'urn:example:i45'('urn:example:i80', 'urn:example:i99'). +'urn:example:i45'('urn:example:i81', 'urn:example:i57'). +'urn:example:i45'('urn:example:i84', 'urn:example:i48'). +'urn:example:i45'('urn:example:i85', 'urn:example:i78'). +'urn:example:i45'('urn:example:i89', 'urn:example:i6'). +'urn:example:i45'('urn:example:i8', 'urn:example:i63'). +'urn:example:i45'('urn:example:i90', 'urn:example:i57'). +'urn:example:i45'('urn:example:i91', 'urn:example:i18'). +'urn:example:i45'('urn:example:i93', 'urn:example:i78'). +'urn:example:i45'('urn:example:i93', 'urn:example:i99'). +'urn:example:i45'('urn:example:i95', 'urn:example:i90'). +'urn:example:i45'('urn:example:i97', 'urn:example:i3'). +'urn:example:i45'('urn:example:i9', 'urn:example:i15'). +'urn:example:i45'('urn:example:i9', 'urn:example:i3'). +'urn:example:i46'('urn:example:i0', 'urn:example:i90'). +'urn:example:i46'('urn:example:i0', 'urn:example:i96'). +'urn:example:i46'('urn:example:i10', 'urn:example:i51'). +'urn:example:i46'('urn:example:i11', 'urn:example:i0'). +'urn:example:i46'('urn:example:i12', 'urn:example:i63'). +'urn:example:i46'('urn:example:i13', 'urn:example:i57'). +'urn:example:i46'('urn:example:i16', 'urn:example:i30'). +'urn:example:i46'('urn:example:i16', 'urn:example:i96'). +'urn:example:i46'('urn:example:i17', 'urn:example:i78'). +'urn:example:i46'('urn:example:i18', 'urn:example:i36'). +'urn:example:i46'('urn:example:i18', 'urn:example:i72'). +'urn:example:i46'('urn:example:i18', 'urn:example:i78'). +'urn:example:i46'('urn:example:i19', 'urn:example:i6'). +'urn:example:i46'('urn:example:i20', 'urn:example:i18'). +'urn:example:i46'('urn:example:i20', 'urn:example:i87'). +'urn:example:i46'('urn:example:i20', 'urn:example:i96'). +'urn:example:i46'('urn:example:i23', 'urn:example:i33'). +'urn:example:i46'('urn:example:i23', 'urn:example:i75'). +'urn:example:i46'('urn:example:i23', 'urn:example:i87'). +'urn:example:i46'('urn:example:i24', 'urn:example:i3'). +'urn:example:i46'('urn:example:i26', 'urn:example:i60'). +'urn:example:i46'('urn:example:i27', 'urn:example:i12'). +'urn:example:i46'('urn:example:i28', 'urn:example:i12'). +'urn:example:i46'('urn:example:i28', 'urn:example:i33'). +'urn:example:i46'('urn:example:i2', 'urn:example:i27'). +'urn:example:i46'('urn:example:i2', 'urn:example:i63'). +'urn:example:i46'('urn:example:i30', 'urn:example:i63'). +'urn:example:i46'('urn:example:i33', 'urn:example:i21'). +'urn:example:i46'('urn:example:i33', 'urn:example:i48'). +'urn:example:i46'('urn:example:i33', 'urn:example:i90'). +'urn:example:i46'('urn:example:i35', 'urn:example:i60'). +'urn:example:i46'('urn:example:i3', 'urn:example:i15'). +'urn:example:i46'('urn:example:i3', 'urn:example:i21'). +'urn:example:i46'('urn:example:i40', 'urn:example:i69'). +'urn:example:i46'('urn:example:i40', 'urn:example:i93'). +'urn:example:i46'('urn:example:i41', 'urn:example:i27'). +'urn:example:i46'('urn:example:i41', 'urn:example:i63'). +'urn:example:i46'('urn:example:i41', 'urn:example:i90'). +'urn:example:i46'('urn:example:i42', 'urn:example:i0'). +'urn:example:i46'('urn:example:i42', 'urn:example:i78'). +'urn:example:i46'('urn:example:i47', 'urn:example:i90'). +'urn:example:i46'('urn:example:i48', 'urn:example:i45'). +'urn:example:i46'('urn:example:i49', 'urn:example:i3'). +'urn:example:i46'('urn:example:i49', 'urn:example:i45'). +'urn:example:i46'('urn:example:i49', 'urn:example:i51'). +'urn:example:i46'('urn:example:i4', 'urn:example:i33'). +'urn:example:i46'('urn:example:i4', 'urn:example:i36'). +'urn:example:i46'('urn:example:i51', 'urn:example:i21'). +'urn:example:i46'('urn:example:i53', 'urn:example:i33'). +'urn:example:i46'('urn:example:i53', 'urn:example:i93'). +'urn:example:i46'('urn:example:i54', 'urn:example:i18'). +'urn:example:i46'('urn:example:i54', 'urn:example:i72'). +'urn:example:i46'('urn:example:i55', 'urn:example:i12'). +'urn:example:i46'('urn:example:i57', 'urn:example:i81'). +'urn:example:i46'('urn:example:i57', 'urn:example:i87'). +'urn:example:i46'('urn:example:i57', 'urn:example:i96'). +'urn:example:i46'('urn:example:i59', 'urn:example:i30'). +'urn:example:i46'('urn:example:i5', 'urn:example:i0'). +'urn:example:i46'('urn:example:i5', 'urn:example:i15'). +'urn:example:i46'('urn:example:i5', 'urn:example:i21'). +'urn:example:i46'('urn:example:i62', 'urn:example:i12'). +'urn:example:i46'('urn:example:i62', 'urn:example:i96'). +'urn:example:i46'('urn:example:i64', 'urn:example:i63'). +'urn:example:i46'('urn:example:i64', 'urn:example:i96'). +'urn:example:i46'('urn:example:i65', 'urn:example:i9'). +'urn:example:i46'('urn:example:i66', 'urn:example:i27'). +'urn:example:i46'('urn:example:i66', 'urn:example:i36'). +'urn:example:i46'('urn:example:i66', 'urn:example:i39'). +'urn:example:i46'('urn:example:i69', 'urn:example:i54'). +'urn:example:i46'('urn:example:i70', 'urn:example:i18'). +'urn:example:i46'('urn:example:i71', 'urn:example:i66'). +'urn:example:i46'('urn:example:i71', 'urn:example:i87'). +'urn:example:i46'('urn:example:i76', 'urn:example:i63'). +'urn:example:i46'('urn:example:i79', 'urn:example:i93'). +'urn:example:i46'('urn:example:i81', 'urn:example:i30'). +'urn:example:i46'('urn:example:i81', 'urn:example:i3'). +'urn:example:i46'('urn:example:i81', 'urn:example:i84'). +'urn:example:i46'('urn:example:i82', 'urn:example:i6'). +'urn:example:i46'('urn:example:i83', 'urn:example:i75'). +'urn:example:i46'('urn:example:i84', 'urn:example:i66'). +'urn:example:i46'('urn:example:i85', 'urn:example:i9'). +'urn:example:i46'('urn:example:i86', 'urn:example:i0'). +'urn:example:i46'('urn:example:i86', 'urn:example:i84'). +'urn:example:i46'('urn:example:i87', 'urn:example:i39'). +'urn:example:i46'('urn:example:i87', 'urn:example:i60'). +'urn:example:i46'('urn:example:i87', 'urn:example:i66'). +'urn:example:i46'('urn:example:i87', 'urn:example:i93'). +'urn:example:i46'('urn:example:i88', 'urn:example:i87'). +'urn:example:i46'('urn:example:i89', 'urn:example:i78'). +'urn:example:i46'('urn:example:i8', 'urn:example:i15'). +'urn:example:i46'('urn:example:i90', 'urn:example:i30'). +'urn:example:i46'('urn:example:i90', 'urn:example:i39'). +'urn:example:i46'('urn:example:i90', 'urn:example:i51'). +'urn:example:i46'('urn:example:i92', 'urn:example:i96'). +'urn:example:i46'('urn:example:i93', 'urn:example:i39'). +'urn:example:i46'('urn:example:i93', 'urn:example:i75'). +'urn:example:i46'('urn:example:i97', 'urn:example:i75'). +'urn:example:i46'('urn:example:i98', 'urn:example:i36'). +'urn:example:i46'('urn:example:i99', 'urn:example:i54'). +'urn:example:i47'('urn:example:i0', 'urn:example:i81'). +'urn:example:i47'('urn:example:i10', 'urn:example:i81'). +'urn:example:i47'('urn:example:i12', 'urn:example:i72'). +'urn:example:i47'('urn:example:i13', 'urn:example:i18'). +'urn:example:i47'('urn:example:i13', 'urn:example:i75'). +'urn:example:i47'('urn:example:i14', 'urn:example:i48'). +'urn:example:i47'('urn:example:i14', 'urn:example:i9'). +'urn:example:i47'('urn:example:i14', 'urn:example:i9'). +'urn:example:i47'('urn:example:i17', 'urn:example:i12'). +'urn:example:i47'('urn:example:i17', 'urn:example:i48'). +'urn:example:i47'('urn:example:i17', 'urn:example:i84'). +'urn:example:i47'('urn:example:i19', 'urn:example:i51'). +'urn:example:i47'('urn:example:i19', 'urn:example:i69'). +'urn:example:i47'('urn:example:i19', 'urn:example:i90'). +'urn:example:i47'('urn:example:i1', 'urn:example:i72'). +'urn:example:i47'('urn:example:i1', 'urn:example:i90'). +'urn:example:i47'('urn:example:i20', 'urn:example:i54'). +'urn:example:i47'('urn:example:i21', 'urn:example:i48'). +'urn:example:i47'('urn:example:i22', 'urn:example:i21'). +'urn:example:i47'('urn:example:i24', 'urn:example:i93'). +'urn:example:i47'('urn:example:i26', 'urn:example:i87'). +'urn:example:i47'('urn:example:i27', 'urn:example:i6'). +'urn:example:i47'('urn:example:i28', 'urn:example:i78'). +'urn:example:i47'('urn:example:i29', 'urn:example:i21'). +'urn:example:i47'('urn:example:i2', 'urn:example:i27'). +'urn:example:i47'('urn:example:i30', 'urn:example:i96'). +'urn:example:i47'('urn:example:i32', 'urn:example:i93'). +'urn:example:i47'('urn:example:i34', 'urn:example:i87'). +'urn:example:i47'('urn:example:i35', 'urn:example:i39'). +'urn:example:i47'('urn:example:i35', 'urn:example:i42'). +'urn:example:i47'('urn:example:i35', 'urn:example:i9'). +'urn:example:i47'('urn:example:i36', 'urn:example:i51'). +'urn:example:i47'('urn:example:i37', 'urn:example:i75'). +'urn:example:i47'('urn:example:i37', 'urn:example:i87'). +'urn:example:i47'('urn:example:i39', 'urn:example:i66'). +'urn:example:i47'('urn:example:i39', 'urn:example:i72'). +'urn:example:i47'('urn:example:i3', 'urn:example:i51'). +'urn:example:i47'('urn:example:i3', 'urn:example:i66'). +'urn:example:i47'('urn:example:i41', 'urn:example:i57'). +'urn:example:i47'('urn:example:i41', 'urn:example:i93'). +'urn:example:i47'('urn:example:i42', 'urn:example:i24'). +'urn:example:i47'('urn:example:i42', 'urn:example:i27'). +'urn:example:i47'('urn:example:i43', 'urn:example:i60'). +'urn:example:i47'('urn:example:i44', 'urn:example:i33'). +'urn:example:i47'('urn:example:i46', 'urn:example:i84'). +'urn:example:i47'('urn:example:i48', 'urn:example:i90'). +'urn:example:i47'('urn:example:i49', 'urn:example:i54'). +'urn:example:i47'('urn:example:i49', 'urn:example:i90'). +'urn:example:i47'('urn:example:i4', 'urn:example:i33'). +'urn:example:i47'('urn:example:i4', 'urn:example:i69'). +'urn:example:i47'('urn:example:i50', 'urn:example:i3'). +'urn:example:i47'('urn:example:i50', 'urn:example:i87'). +'urn:example:i47'('urn:example:i54', 'urn:example:i75'). +'urn:example:i47'('urn:example:i55', 'urn:example:i12'). +'urn:example:i47'('urn:example:i56', 'urn:example:i66'). +'urn:example:i47'('urn:example:i59', 'urn:example:i96'). +'urn:example:i47'('urn:example:i60', 'urn:example:i15'). +'urn:example:i47'('urn:example:i62', 'urn:example:i12'). +'urn:example:i47'('urn:example:i65', 'urn:example:i3'). +'urn:example:i47'('urn:example:i66', 'urn:example:i0'). +'urn:example:i47'('urn:example:i66', 'urn:example:i63'). +'urn:example:i47'('urn:example:i67', 'urn:example:i12'). +'urn:example:i47'('urn:example:i67', 'urn:example:i33'). +'urn:example:i47'('urn:example:i68', 'urn:example:i9'). +'urn:example:i47'('urn:example:i69', 'urn:example:i27'). +'urn:example:i47'('urn:example:i6', 'urn:example:i24'). +'urn:example:i47'('urn:example:i70', 'urn:example:i42'). +'urn:example:i47'('urn:example:i70', 'urn:example:i45'). +'urn:example:i47'('urn:example:i72', 'urn:example:i18'). +'urn:example:i47'('urn:example:i72', 'urn:example:i21'). +'urn:example:i47'('urn:example:i72', 'urn:example:i24'). +'urn:example:i47'('urn:example:i75', 'urn:example:i15'). +'urn:example:i47'('urn:example:i75', 'urn:example:i51'). +'urn:example:i47'('urn:example:i78', 'urn:example:i48'). +'urn:example:i47'('urn:example:i78', 'urn:example:i6'). +'urn:example:i47'('urn:example:i79', 'urn:example:i15'). +'urn:example:i47'('urn:example:i79', 'urn:example:i33'). +'urn:example:i47'('urn:example:i7', 'urn:example:i81'). +'urn:example:i47'('urn:example:i80', 'urn:example:i15'). +'urn:example:i47'('urn:example:i81', 'urn:example:i57'). +'urn:example:i47'('urn:example:i82', 'urn:example:i3'). +'urn:example:i47'('urn:example:i84', 'urn:example:i12'). +'urn:example:i47'('urn:example:i86', 'urn:example:i72'). +'urn:example:i47'('urn:example:i88', 'urn:example:i78'). +'urn:example:i47'('urn:example:i89', 'urn:example:i57'). +'urn:example:i47'('urn:example:i89', 'urn:example:i87'). +'urn:example:i47'('urn:example:i8', 'urn:example:i27'). +'urn:example:i47'('urn:example:i8', 'urn:example:i36'). +'urn:example:i47'('urn:example:i8', 'urn:example:i69'). +'urn:example:i47'('urn:example:i90', 'urn:example:i18'). +'urn:example:i47'('urn:example:i90', 'urn:example:i27'). +'urn:example:i47'('urn:example:i90', 'urn:example:i81'). +'urn:example:i47'('urn:example:i93', 'urn:example:i6'). +'urn:example:i47'('urn:example:i94', 'urn:example:i0'). +'urn:example:i47'('urn:example:i94', 'urn:example:i54'). +'urn:example:i47'('urn:example:i95', 'urn:example:i81'). +'urn:example:i47'('urn:example:i96', 'urn:example:i63'). +'urn:example:i47'('urn:example:i97', 'urn:example:i30'). +'urn:example:i47'('urn:example:i97', 'urn:example:i48'). +'urn:example:i47'('urn:example:i99', 'urn:example:i63'). +'urn:example:i47'('urn:example:i9', 'urn:example:i66'). +'urn:example:i48'('urn:example:i10', 'urn:example:i45'). +'urn:example:i48'('urn:example:i13', 'urn:example:i3'). +'urn:example:i48'('urn:example:i13', 'urn:example:i6'). +'urn:example:i48'('urn:example:i13', 'urn:example:i6'). +'urn:example:i48'('urn:example:i14', 'urn:example:i48'). +'urn:example:i48'('urn:example:i15', 'urn:example:i0'). +'urn:example:i48'('urn:example:i15', 'urn:example:i6'). +'urn:example:i48'('urn:example:i16', 'urn:example:i15'). +'urn:example:i48'('urn:example:i18', 'urn:example:i84'). +'urn:example:i48'('urn:example:i19', 'urn:example:i6'). +'urn:example:i48'('urn:example:i1', 'urn:example:i54'). +'urn:example:i48'('urn:example:i20', 'urn:example:i60'). +'urn:example:i48'('urn:example:i20', 'urn:example:i72'). +'urn:example:i48'('urn:example:i21', 'urn:example:i36'). +'urn:example:i48'('urn:example:i21', 'urn:example:i57'). +'urn:example:i48'('urn:example:i24', 'urn:example:i12'). +'urn:example:i48'('urn:example:i25', 'urn:example:i24'). +'urn:example:i48'('urn:example:i26', 'urn:example:i90'). +'urn:example:i48'('urn:example:i28', 'urn:example:i66'). +'urn:example:i48'('urn:example:i28', 'urn:example:i87'). +'urn:example:i48'('urn:example:i29', 'urn:example:i24'). +'urn:example:i48'('urn:example:i29', 'urn:example:i54'). +'urn:example:i48'('urn:example:i31', 'urn:example:i15'). +'urn:example:i48'('urn:example:i31', 'urn:example:i30'). +'urn:example:i48'('urn:example:i35', 'urn:example:i27'). +'urn:example:i48'('urn:example:i36', 'urn:example:i30'). +'urn:example:i48'('urn:example:i37', 'urn:example:i39'). +'urn:example:i48'('urn:example:i38', 'urn:example:i6'). +'urn:example:i48'('urn:example:i39', 'urn:example:i0'). +'urn:example:i48'('urn:example:i43', 'urn:example:i12'). +'urn:example:i48'('urn:example:i45', 'urn:example:i90'). +'urn:example:i48'('urn:example:i47', 'urn:example:i27'). +'urn:example:i48'('urn:example:i4', 'urn:example:i18'). +'urn:example:i48'('urn:example:i4', 'urn:example:i54'). +'urn:example:i48'('urn:example:i4', 'urn:example:i72'). +'urn:example:i48'('urn:example:i50', 'urn:example:i0'). +'urn:example:i48'('urn:example:i52', 'urn:example:i60'). +'urn:example:i48'('urn:example:i53', 'urn:example:i60'). +'urn:example:i48'('urn:example:i54', 'urn:example:i15'). +'urn:example:i48'('urn:example:i54', 'urn:example:i66'). +'urn:example:i48'('urn:example:i55', 'urn:example:i3'). +'urn:example:i48'('urn:example:i56', 'urn:example:i69'). +'urn:example:i48'('urn:example:i56', 'urn:example:i6'). +'urn:example:i48'('urn:example:i57', 'urn:example:i75'). +'urn:example:i48'('urn:example:i58', 'urn:example:i48'). +'urn:example:i48'('urn:example:i59', 'urn:example:i87'). +'urn:example:i48'('urn:example:i5', 'urn:example:i96'). +'urn:example:i48'('urn:example:i60', 'urn:example:i42'). +'urn:example:i48'('urn:example:i60', 'urn:example:i48'). +'urn:example:i48'('urn:example:i61', 'urn:example:i72'). +'urn:example:i48'('urn:example:i62', 'urn:example:i42'). +'urn:example:i48'('urn:example:i62', 'urn:example:i51'). +'urn:example:i48'('urn:example:i62', 'urn:example:i51'). +'urn:example:i48'('urn:example:i65', 'urn:example:i27'). +'urn:example:i48'('urn:example:i65', 'urn:example:i51'). +'urn:example:i48'('urn:example:i66', 'urn:example:i21'). +'urn:example:i48'('urn:example:i66', 'urn:example:i33'). +'urn:example:i48'('urn:example:i66', 'urn:example:i48'). +'urn:example:i48'('urn:example:i67', 'urn:example:i78'). +'urn:example:i48'('urn:example:i68', 'urn:example:i90'). +'urn:example:i48'('urn:example:i69', 'urn:example:i69'). +'urn:example:i48'('urn:example:i69', 'urn:example:i84'). +'urn:example:i48'('urn:example:i70', 'urn:example:i93'). +'urn:example:i48'('urn:example:i71', 'urn:example:i12'). +'urn:example:i48'('urn:example:i72', 'urn:example:i90'). +'urn:example:i48'('urn:example:i74', 'urn:example:i45'). +'urn:example:i48'('urn:example:i76', 'urn:example:i57'). +'urn:example:i48'('urn:example:i77', 'urn:example:i42'). +'urn:example:i48'('urn:example:i77', 'urn:example:i90'). +'urn:example:i48'('urn:example:i77', 'urn:example:i96'). +'urn:example:i48'('urn:example:i78', 'urn:example:i39'). +'urn:example:i48'('urn:example:i79', 'urn:example:i93'). +'urn:example:i48'('urn:example:i80', 'urn:example:i45'). +'urn:example:i48'('urn:example:i80', 'urn:example:i87'). +'urn:example:i48'('urn:example:i81', 'urn:example:i24'). +'urn:example:i48'('urn:example:i84', 'urn:example:i54'). +'urn:example:i48'('urn:example:i85', 'urn:example:i30'). +'urn:example:i48'('urn:example:i85', 'urn:example:i57'). +'urn:example:i48'('urn:example:i85', 'urn:example:i93'). +'urn:example:i48'('urn:example:i88', 'urn:example:i66'). +'urn:example:i48'('urn:example:i8', 'urn:example:i57'). +'urn:example:i48'('urn:example:i90', 'urn:example:i72'). +'urn:example:i48'('urn:example:i90', 'urn:example:i93'). +'urn:example:i48'('urn:example:i91', 'urn:example:i0'). +'urn:example:i48'('urn:example:i91', 'urn:example:i9'). +'urn:example:i48'('urn:example:i96', 'urn:example:i36'). +'urn:example:i48'('urn:example:i97', 'urn:example:i27'). +'urn:example:i48'('urn:example:i98', 'urn:example:i12'). +'urn:example:i48'('urn:example:i9', 'urn:example:i93'). +'urn:example:i49'('urn:example:i10', 'urn:example:i57'). +'urn:example:i49'('urn:example:i10', 'urn:example:i66'). +'urn:example:i49'('urn:example:i12', 'urn:example:i60'). +'urn:example:i49'('urn:example:i12', 'urn:example:i6'). +'urn:example:i49'('urn:example:i12', 'urn:example:i75'). +'urn:example:i49'('urn:example:i15', 'urn:example:i27'). +'urn:example:i49'('urn:example:i15', 'urn:example:i78'). +'urn:example:i49'('urn:example:i16', 'urn:example:i24'). +'urn:example:i49'('urn:example:i16', 'urn:example:i51'). +'urn:example:i49'('urn:example:i16', 'urn:example:i84'). +'urn:example:i49'('urn:example:i17', 'urn:example:i9'). +'urn:example:i49'('urn:example:i18', 'urn:example:i75'). +'urn:example:i49'('urn:example:i1', 'urn:example:i66'). +'urn:example:i49'('urn:example:i1', 'urn:example:i69'). +'urn:example:i49'('urn:example:i20', 'urn:example:i15'). +'urn:example:i49'('urn:example:i20', 'urn:example:i30'). +'urn:example:i49'('urn:example:i21', 'urn:example:i39'). +'urn:example:i49'('urn:example:i22', 'urn:example:i60'). +'urn:example:i49'('urn:example:i23', 'urn:example:i12'). +'urn:example:i49'('urn:example:i23', 'urn:example:i30'). +'urn:example:i49'('urn:example:i23', 'urn:example:i96'). +'urn:example:i49'('urn:example:i24', 'urn:example:i39'). +'urn:example:i49'('urn:example:i24', 'urn:example:i78'). +'urn:example:i49'('urn:example:i26', 'urn:example:i24'). +'urn:example:i49'('urn:example:i28', 'urn:example:i72'). +'urn:example:i49'('urn:example:i2', 'urn:example:i33'). +'urn:example:i49'('urn:example:i2', 'urn:example:i69'). +'urn:example:i49'('urn:example:i32', 'urn:example:i63'). +'urn:example:i49'('urn:example:i35', 'urn:example:i18'). +'urn:example:i49'('urn:example:i36', 'urn:example:i90'). +'urn:example:i49'('urn:example:i38', 'urn:example:i12'). +'urn:example:i49'('urn:example:i38', 'urn:example:i9'). +'urn:example:i49'('urn:example:i39', 'urn:example:i18'). +'urn:example:i49'('urn:example:i39', 'urn:example:i78'). +'urn:example:i49'('urn:example:i39', 'urn:example:i81'). +'urn:example:i49'('urn:example:i3', 'urn:example:i21'). +'urn:example:i49'('urn:example:i3', 'urn:example:i54'). +'urn:example:i49'('urn:example:i40', 'urn:example:i33'). +'urn:example:i49'('urn:example:i40', 'urn:example:i42'). +'urn:example:i49'('urn:example:i40', 'urn:example:i72'). +'urn:example:i49'('urn:example:i43', 'urn:example:i3'). +'urn:example:i49'('urn:example:i47', 'urn:example:i51'). +'urn:example:i49'('urn:example:i52', 'urn:example:i96'). +'urn:example:i49'('urn:example:i55', 'urn:example:i0'). +'urn:example:i49'('urn:example:i56', 'urn:example:i33'). +'urn:example:i49'('urn:example:i56', 'urn:example:i36'). +'urn:example:i49'('urn:example:i58', 'urn:example:i27'). +'urn:example:i49'('urn:example:i58', 'urn:example:i54'). +'urn:example:i49'('urn:example:i59', 'urn:example:i39'). +'urn:example:i49'('urn:example:i62', 'urn:example:i66'). +'urn:example:i49'('urn:example:i62', 'urn:example:i72'). +'urn:example:i49'('urn:example:i63', 'urn:example:i69'). +'urn:example:i49'('urn:example:i65', 'urn:example:i18'). +'urn:example:i49'('urn:example:i65', 'urn:example:i93'). +'urn:example:i49'('urn:example:i68', 'urn:example:i48'). +'urn:example:i49'('urn:example:i68', 'urn:example:i87'). +'urn:example:i49'('urn:example:i69', 'urn:example:i12'). +'urn:example:i49'('urn:example:i72', 'urn:example:i39'). +'urn:example:i49'('urn:example:i73', 'urn:example:i36'). +'urn:example:i49'('urn:example:i77', 'urn:example:i3'). +'urn:example:i49'('urn:example:i77', 'urn:example:i60'). +'urn:example:i49'('urn:example:i77', 'urn:example:i78'). +'urn:example:i49'('urn:example:i79', 'urn:example:i81'). +'urn:example:i49'('urn:example:i81', 'urn:example:i84'). +'urn:example:i49'('urn:example:i82', 'urn:example:i21'). +'urn:example:i49'('urn:example:i83', 'urn:example:i75'). +'urn:example:i49'('urn:example:i83', 'urn:example:i90'). +'urn:example:i49'('urn:example:i85', 'urn:example:i30'). +'urn:example:i49'('urn:example:i88', 'urn:example:i18'). +'urn:example:i49'('urn:example:i89', 'urn:example:i87'). +'urn:example:i49'('urn:example:i89', 'urn:example:i96'). +'urn:example:i49'('urn:example:i8', 'urn:example:i33'). +'urn:example:i49'('urn:example:i90', 'urn:example:i3'). +'urn:example:i49'('urn:example:i91', 'urn:example:i60'). +'urn:example:i49'('urn:example:i93', 'urn:example:i30'). +'urn:example:i49'('urn:example:i93', 'urn:example:i45'). +'urn:example:i49'('urn:example:i96', 'urn:example:i48'). +'urn:example:i49'('urn:example:i98', 'urn:example:i12'). +'urn:example:i49'('urn:example:i98', 'urn:example:i30'). +'urn:example:i49'('urn:example:i98', 'urn:example:i36'). +'urn:example:i49'('urn:example:i99', 'urn:example:i21'). +'urn:example:i49'('urn:example:i99', 'urn:example:i72'). +'urn:example:i49'('urn:example:i9', 'urn:example:i18'). +'urn:example:i4'('urn:example:i10', 'urn:example:i45'). +'urn:example:i4'('urn:example:i10', 'urn:example:i63'). +'urn:example:i4'('urn:example:i10', 'urn:example:i81'). +'urn:example:i4'('urn:example:i11', 'urn:example:i90'). +'urn:example:i4'('urn:example:i13', 'urn:example:i78'). +'urn:example:i4'('urn:example:i13', 'urn:example:i96'). +'urn:example:i4'('urn:example:i14', 'urn:example:i24'). +'urn:example:i4'('urn:example:i14', 'urn:example:i63'). +'urn:example:i4'('urn:example:i14', 'urn:example:i90'). +'urn:example:i4'('urn:example:i15', 'urn:example:i42'). +'urn:example:i4'('urn:example:i16', 'urn:example:i78'). +'urn:example:i4'('urn:example:i17', 'urn:example:i6'). +'urn:example:i4'('urn:example:i18', 'urn:example:i72'). +'urn:example:i4'('urn:example:i19', 'urn:example:i69'). +'urn:example:i4'('urn:example:i20', 'urn:example:i33'). +'urn:example:i4'('urn:example:i20', 'urn:example:i39'). +'urn:example:i4'('urn:example:i22', 'urn:example:i45'). +'urn:example:i4'('urn:example:i22', 'urn:example:i57'). +'urn:example:i4'('urn:example:i22', 'urn:example:i84'). +'urn:example:i4'('urn:example:i23', 'urn:example:i24'). +'urn:example:i4'('urn:example:i23', 'urn:example:i42'). +'urn:example:i4'('urn:example:i24', 'urn:example:i18'). +'urn:example:i4'('urn:example:i24', 'urn:example:i57'). +'urn:example:i4'('urn:example:i24', 'urn:example:i6'). +'urn:example:i4'('urn:example:i25', 'urn:example:i75'). +'urn:example:i4'('urn:example:i29', 'urn:example:i72'). +'urn:example:i4'('urn:example:i29', 'urn:example:i75'). +'urn:example:i4'('urn:example:i30', 'urn:example:i24'). +'urn:example:i4'('urn:example:i30', 'urn:example:i48'). +'urn:example:i4'('urn:example:i30', 'urn:example:i54'). +'urn:example:i4'('urn:example:i30', 'urn:example:i72'). +'urn:example:i4'('urn:example:i31', 'urn:example:i36'). +'urn:example:i4'('urn:example:i33', 'urn:example:i0'). +'urn:example:i4'('urn:example:i33', 'urn:example:i27'). +'urn:example:i4'('urn:example:i33', 'urn:example:i36'). +'urn:example:i4'('urn:example:i34', 'urn:example:i24'). +'urn:example:i4'('urn:example:i34', 'urn:example:i45'). +'urn:example:i4'('urn:example:i36', 'urn:example:i42'). +'urn:example:i4'('urn:example:i36', 'urn:example:i87'). +'urn:example:i4'('urn:example:i37', 'urn:example:i36'). +'urn:example:i4'('urn:example:i37', 'urn:example:i57'). +'urn:example:i4'('urn:example:i38', 'urn:example:i75'). +'urn:example:i4'('urn:example:i39', 'urn:example:i63'). +'urn:example:i4'('urn:example:i3', 'urn:example:i45'). +'urn:example:i4'('urn:example:i3', 'urn:example:i78'). +'urn:example:i4'('urn:example:i40', 'urn:example:i42'). +'urn:example:i4'('urn:example:i40', 'urn:example:i54'). +'urn:example:i4'('urn:example:i40', 'urn:example:i66'). +'urn:example:i4'('urn:example:i40', 'urn:example:i75'). +'urn:example:i4'('urn:example:i40', 'urn:example:i75'). +'urn:example:i4'('urn:example:i41', 'urn:example:i66'). +'urn:example:i4'('urn:example:i44', 'urn:example:i78'). +'urn:example:i4'('urn:example:i45', 'urn:example:i54'). +'urn:example:i4'('urn:example:i49', 'urn:example:i87'). +'urn:example:i4'('urn:example:i4', 'urn:example:i42'). +'urn:example:i4'('urn:example:i50', 'urn:example:i15'). +'urn:example:i4'('urn:example:i51', 'urn:example:i87'). +'urn:example:i4'('urn:example:i52', 'urn:example:i99'). +'urn:example:i4'('urn:example:i53', 'urn:example:i33'). +'urn:example:i4'('urn:example:i53', 'urn:example:i69'). +'urn:example:i4'('urn:example:i53', 'urn:example:i69'). +'urn:example:i4'('urn:example:i55', 'urn:example:i0'). +'urn:example:i4'('urn:example:i55', 'urn:example:i96'). +'urn:example:i4'('urn:example:i57', 'urn:example:i18'). +'urn:example:i4'('urn:example:i57', 'urn:example:i33'). +'urn:example:i4'('urn:example:i57', 'urn:example:i57'). +'urn:example:i4'('urn:example:i57', 'urn:example:i72'). +'urn:example:i4'('urn:example:i60', 'urn:example:i39'). +'urn:example:i4'('urn:example:i60', 'urn:example:i84'). +'urn:example:i4'('urn:example:i61', 'urn:example:i69'). +'urn:example:i4'('urn:example:i64', 'urn:example:i9'). +'urn:example:i4'('urn:example:i65', 'urn:example:i30'). +'urn:example:i4'('urn:example:i68', 'urn:example:i18'). +'urn:example:i4'('urn:example:i68', 'urn:example:i87'). +'urn:example:i4'('urn:example:i69', 'urn:example:i36'). +'urn:example:i4'('urn:example:i69', 'urn:example:i69'). +'urn:example:i4'('urn:example:i6', 'urn:example:i15'). +'urn:example:i4'('urn:example:i71', 'urn:example:i84'). +'urn:example:i4'('urn:example:i72', 'urn:example:i12'). +'urn:example:i4'('urn:example:i72', 'urn:example:i21'). +'urn:example:i4'('urn:example:i73', 'urn:example:i72'). +'urn:example:i4'('urn:example:i73', 'urn:example:i84'). +'urn:example:i4'('urn:example:i74', 'urn:example:i57'). +'urn:example:i4'('urn:example:i75', 'urn:example:i78'). +'urn:example:i4'('urn:example:i77', 'urn:example:i12'). +'urn:example:i4'('urn:example:i78', 'urn:example:i9'). +'urn:example:i4'('urn:example:i7', 'urn:example:i81'). +'urn:example:i4'('urn:example:i82', 'urn:example:i0'). +'urn:example:i4'('urn:example:i83', 'urn:example:i36'). +'urn:example:i4'('urn:example:i84', 'urn:example:i30'). +'urn:example:i4'('urn:example:i86', 'urn:example:i36'). +'urn:example:i4'('urn:example:i86', 'urn:example:i60'). +'urn:example:i4'('urn:example:i87', 'urn:example:i6'). +'urn:example:i4'('urn:example:i87', 'urn:example:i72'). +'urn:example:i4'('urn:example:i88', 'urn:example:i0'). +'urn:example:i4'('urn:example:i88', 'urn:example:i51'). +'urn:example:i4'('urn:example:i88', 'urn:example:i51'). +'urn:example:i4'('urn:example:i89', 'urn:example:i51'). +'urn:example:i4'('urn:example:i90', 'urn:example:i24'). +'urn:example:i4'('urn:example:i92', 'urn:example:i81'). +'urn:example:i4'('urn:example:i94', 'urn:example:i15'). +'urn:example:i4'('urn:example:i94', 'urn:example:i78'). +'urn:example:i4'('urn:example:i95', 'urn:example:i72'). +'urn:example:i4'('urn:example:i96', 'urn:example:i15'). +'urn:example:i4'('urn:example:i98', 'urn:example:i21'). +'urn:example:i50'('urn:example:i0', 'urn:example:i18'). +'urn:example:i50'('urn:example:i0', 'urn:example:i18'). +'urn:example:i50'('urn:example:i10', 'urn:example:i27'). +'urn:example:i50'('urn:example:i10', 'urn:example:i9'). +'urn:example:i50'('urn:example:i12', 'urn:example:i27'). +'urn:example:i50'('urn:example:i12', 'urn:example:i57'). +'urn:example:i50'('urn:example:i13', 'urn:example:i12'). +'urn:example:i50'('urn:example:i13', 'urn:example:i39'). +'urn:example:i50'('urn:example:i13', 'urn:example:i81'). +'urn:example:i50'('urn:example:i13', 'urn:example:i81'). +'urn:example:i50'('urn:example:i14', 'urn:example:i21'). +'urn:example:i50'('urn:example:i14', 'urn:example:i90'). +'urn:example:i50'('urn:example:i15', 'urn:example:i12'). +'urn:example:i50'('urn:example:i15', 'urn:example:i12'). +'urn:example:i50'('urn:example:i15', 'urn:example:i21'). +'urn:example:i50'('urn:example:i15', 'urn:example:i30'). +'urn:example:i50'('urn:example:i16', 'urn:example:i30'). +'urn:example:i50'('urn:example:i16', 'urn:example:i48'). +'urn:example:i50'('urn:example:i16', 'urn:example:i6'). +'urn:example:i50'('urn:example:i17', 'urn:example:i15'). +'urn:example:i50'('urn:example:i18', 'urn:example:i42'). +'urn:example:i50'('urn:example:i18', 'urn:example:i60'). +'urn:example:i50'('urn:example:i18', 'urn:example:i60'). +'urn:example:i50'('urn:example:i18', 'urn:example:i99'). +'urn:example:i50'('urn:example:i19', 'urn:example:i48'). +'urn:example:i50'('urn:example:i1', 'urn:example:i33'). +'urn:example:i50'('urn:example:i1', 'urn:example:i3'). +'urn:example:i50'('urn:example:i1', 'urn:example:i3'). +'urn:example:i50'('urn:example:i1', 'urn:example:i60'). +'urn:example:i50'('urn:example:i20', 'urn:example:i69'). +'urn:example:i50'('urn:example:i20', 'urn:example:i90'). +'urn:example:i50'('urn:example:i21', 'urn:example:i72'). +'urn:example:i50'('urn:example:i23', 'urn:example:i54'). +'urn:example:i50'('urn:example:i23', 'urn:example:i78'). +'urn:example:i50'('urn:example:i25', 'urn:example:i54'). +'urn:example:i50'('urn:example:i25', 'urn:example:i6'). +'urn:example:i50'('urn:example:i26', 'urn:example:i24'). +'urn:example:i50'('urn:example:i26', 'urn:example:i51'). +'urn:example:i50'('urn:example:i26', 'urn:example:i57'). +'urn:example:i50'('urn:example:i26', 'urn:example:i75'). +'urn:example:i50'('urn:example:i27', 'urn:example:i15'). +'urn:example:i50'('urn:example:i27', 'urn:example:i30'). +'urn:example:i50'('urn:example:i28', 'urn:example:i78'). +'urn:example:i50'('urn:example:i28', 'urn:example:i9'). +'urn:example:i50'('urn:example:i29', 'urn:example:i12'). +'urn:example:i50'('urn:example:i29', 'urn:example:i6'). +'urn:example:i50'('urn:example:i29', 'urn:example:i99'). +'urn:example:i50'('urn:example:i2', 'urn:example:i24'). +'urn:example:i50'('urn:example:i2', 'urn:example:i33'). +'urn:example:i50'('urn:example:i2', 'urn:example:i90'). +'urn:example:i50'('urn:example:i30', 'urn:example:i39'). +'urn:example:i50'('urn:example:i31', 'urn:example:i0'). +'urn:example:i50'('urn:example:i31', 'urn:example:i36'). +'urn:example:i50'('urn:example:i31', 'urn:example:i42'). +'urn:example:i50'('urn:example:i31', 'urn:example:i57'). +'urn:example:i50'('urn:example:i31', 'urn:example:i75'). +'urn:example:i50'('urn:example:i33', 'urn:example:i9'). +'urn:example:i50'('urn:example:i34', 'urn:example:i27'). +'urn:example:i50'('urn:example:i34', 'urn:example:i33'). +'urn:example:i50'('urn:example:i34', 'urn:example:i45'). +'urn:example:i50'('urn:example:i35', 'urn:example:i12'). +'urn:example:i50'('urn:example:i35', 'urn:example:i39'). +'urn:example:i50'('urn:example:i36', 'urn:example:i36'). +'urn:example:i50'('urn:example:i38', 'urn:example:i15'). +'urn:example:i50'('urn:example:i38', 'urn:example:i42'). +'urn:example:i50'('urn:example:i39', 'urn:example:i33'). +'urn:example:i50'('urn:example:i39', 'urn:example:i48'). +'urn:example:i50'('urn:example:i3', 'urn:example:i36'). +'urn:example:i50'('urn:example:i3', 'urn:example:i90'). +'urn:example:i50'('urn:example:i40', 'urn:example:i54'). +'urn:example:i50'('urn:example:i40', 'urn:example:i66'). +'urn:example:i50'('urn:example:i40', 'urn:example:i72'). +'urn:example:i50'('urn:example:i41', 'urn:example:i33'). +'urn:example:i50'('urn:example:i41', 'urn:example:i84'). +'urn:example:i50'('urn:example:i41', 'urn:example:i93'). +'urn:example:i50'('urn:example:i42', 'urn:example:i90'). +'urn:example:i50'('urn:example:i43', 'urn:example:i36'). +'urn:example:i50'('urn:example:i43', 'urn:example:i9'). +'urn:example:i50'('urn:example:i44', 'urn:example:i24'). +'urn:example:i50'('urn:example:i44', 'urn:example:i63'). +'urn:example:i50'('urn:example:i44', 'urn:example:i84'). +'urn:example:i50'('urn:example:i46', 'urn:example:i15'). +'urn:example:i50'('urn:example:i46', 'urn:example:i57'). +'urn:example:i50'('urn:example:i46', 'urn:example:i69'). +'urn:example:i50'('urn:example:i47', 'urn:example:i75'). +'urn:example:i50'('urn:example:i48', 'urn:example:i27'). +'urn:example:i50'('urn:example:i4', 'urn:example:i45'). +'urn:example:i50'('urn:example:i4', 'urn:example:i60'). +'urn:example:i50'('urn:example:i4', 'urn:example:i60'). +'urn:example:i50'('urn:example:i4', 'urn:example:i75'). +'urn:example:i50'('urn:example:i50', 'urn:example:i84'). +'urn:example:i50'('urn:example:i50', 'urn:example:i93'). +'urn:example:i50'('urn:example:i51', 'urn:example:i3'). +'urn:example:i50'('urn:example:i51', 'urn:example:i3'). +'urn:example:i50'('urn:example:i51', 'urn:example:i57'). +'urn:example:i50'('urn:example:i51', 'urn:example:i84'). +'urn:example:i50'('urn:example:i52', 'urn:example:i42'). +'urn:example:i50'('urn:example:i53', 'urn:example:i60'). +'urn:example:i50'('urn:example:i53', 'urn:example:i63'). +'urn:example:i50'('urn:example:i53', 'urn:example:i9'). +'urn:example:i50'('urn:example:i54', 'urn:example:i30'). +'urn:example:i50'('urn:example:i54', 'urn:example:i45'). +'urn:example:i50'('urn:example:i54', 'urn:example:i72'). +'urn:example:i50'('urn:example:i54', 'urn:example:i90'). +'urn:example:i50'('urn:example:i55', 'urn:example:i12'). +'urn:example:i50'('urn:example:i55', 'urn:example:i6'). +'urn:example:i50'('urn:example:i56', 'urn:example:i42'). +'urn:example:i50'('urn:example:i56', 'urn:example:i54'). +'urn:example:i50'('urn:example:i56', 'urn:example:i6'). +'urn:example:i50'('urn:example:i57', 'urn:example:i69'). +'urn:example:i50'('urn:example:i58', 'urn:example:i12'). +'urn:example:i50'('urn:example:i58', 'urn:example:i57'). +'urn:example:i50'('urn:example:i58', 'urn:example:i93'). +'urn:example:i50'('urn:example:i59', 'urn:example:i36'). +'urn:example:i50'('urn:example:i5', 'urn:example:i75'). +'urn:example:i50'('urn:example:i61', 'urn:example:i18'). +'urn:example:i50'('urn:example:i61', 'urn:example:i45'). +'urn:example:i50'('urn:example:i61', 'urn:example:i78'). +'urn:example:i50'('urn:example:i63', 'urn:example:i6'). +'urn:example:i50'('urn:example:i64', 'urn:example:i33'). +'urn:example:i50'('urn:example:i64', 'urn:example:i45'). +'urn:example:i50'('urn:example:i64', 'urn:example:i96'). +'urn:example:i50'('urn:example:i65', 'urn:example:i54'). +'urn:example:i50'('urn:example:i65', 'urn:example:i72'). +'urn:example:i50'('urn:example:i65', 'urn:example:i93'). +'urn:example:i50'('urn:example:i66', 'urn:example:i51'). +'urn:example:i50'('urn:example:i66', 'urn:example:i57'). +'urn:example:i50'('urn:example:i67', 'urn:example:i81'). +'urn:example:i50'('urn:example:i68', 'urn:example:i21'). +'urn:example:i50'('urn:example:i68', 'urn:example:i60'). +'urn:example:i50'('urn:example:i69', 'urn:example:i45'). +'urn:example:i50'('urn:example:i69', 'urn:example:i66'). +'urn:example:i50'('urn:example:i6', 'urn:example:i6'). +'urn:example:i50'('urn:example:i70', 'urn:example:i24'). +'urn:example:i50'('urn:example:i70', 'urn:example:i78'). +'urn:example:i50'('urn:example:i71', 'urn:example:i90'). +'urn:example:i50'('urn:example:i72', 'urn:example:i3'). +'urn:example:i50'('urn:example:i72', 'urn:example:i69'). +'urn:example:i50'('urn:example:i72', 'urn:example:i78'). +'urn:example:i50'('urn:example:i74', 'urn:example:i24'). +'urn:example:i50'('urn:example:i74', 'urn:example:i39'). +'urn:example:i50'('urn:example:i74', 'urn:example:i78'). +'urn:example:i50'('urn:example:i75', 'urn:example:i24'). +'urn:example:i50'('urn:example:i75', 'urn:example:i45'). +'urn:example:i50'('urn:example:i76', 'urn:example:i18'). +'urn:example:i50'('urn:example:i77', 'urn:example:i48'). +'urn:example:i50'('urn:example:i77', 'urn:example:i60'). +'urn:example:i50'('urn:example:i77', 'urn:example:i99'). +'urn:example:i50'('urn:example:i78', 'urn:example:i3'). +'urn:example:i50'('urn:example:i78', 'urn:example:i87'). +'urn:example:i50'('urn:example:i79', 'urn:example:i0'). +'urn:example:i50'('urn:example:i79', 'urn:example:i24'). +'urn:example:i50'('urn:example:i7', 'urn:example:i48'). +'urn:example:i50'('urn:example:i7', 'urn:example:i78'). +'urn:example:i50'('urn:example:i7', 'urn:example:i87'). +'urn:example:i50'('urn:example:i80', 'urn:example:i24'). +'urn:example:i50'('urn:example:i80', 'urn:example:i45'). +'urn:example:i50'('urn:example:i80', 'urn:example:i57'). +'urn:example:i50'('urn:example:i80', 'urn:example:i78'). +'urn:example:i50'('urn:example:i81', 'urn:example:i27'). +'urn:example:i50'('urn:example:i81', 'urn:example:i48'). +'urn:example:i50'('urn:example:i81', 'urn:example:i72'). +'urn:example:i50'('urn:example:i82', 'urn:example:i24'). +'urn:example:i50'('urn:example:i82', 'urn:example:i30'). +'urn:example:i50'('urn:example:i82', 'urn:example:i84'). +'urn:example:i50'('urn:example:i83', 'urn:example:i21'). +'urn:example:i50'('urn:example:i83', 'urn:example:i6'). +'urn:example:i50'('urn:example:i83', 'urn:example:i78'). +'urn:example:i50'('urn:example:i84', 'urn:example:i12'). +'urn:example:i50'('urn:example:i84', 'urn:example:i72'). +'urn:example:i50'('urn:example:i85', 'urn:example:i0'). +'urn:example:i50'('urn:example:i85', 'urn:example:i54'). +'urn:example:i50'('urn:example:i85', 'urn:example:i63'). +'urn:example:i50'('urn:example:i86', 'urn:example:i69'). +'urn:example:i50'('urn:example:i87', 'urn:example:i48'). +'urn:example:i50'('urn:example:i87', 'urn:example:i99'). +'urn:example:i50'('urn:example:i88', 'urn:example:i15'). +'urn:example:i50'('urn:example:i88', 'urn:example:i21'). +'urn:example:i50'('urn:example:i88', 'urn:example:i27'). +'urn:example:i50'('urn:example:i88', 'urn:example:i30'). +'urn:example:i50'('urn:example:i88', 'urn:example:i63'). +'urn:example:i50'('urn:example:i8', 'urn:example:i72'). +'urn:example:i50'('urn:example:i90', 'urn:example:i24'). +'urn:example:i50'('urn:example:i90', 'urn:example:i6'). +'urn:example:i50'('urn:example:i91', 'urn:example:i12'). +'urn:example:i50'('urn:example:i91', 'urn:example:i48'). +'urn:example:i50'('urn:example:i92', 'urn:example:i6'). +'urn:example:i50'('urn:example:i92', 'urn:example:i96'). +'urn:example:i50'('urn:example:i93', 'urn:example:i87'). +'urn:example:i50'('urn:example:i94', 'urn:example:i21'). +'urn:example:i50'('urn:example:i94', 'urn:example:i24'). +'urn:example:i50'('urn:example:i94', 'urn:example:i60'). +'urn:example:i50'('urn:example:i94', 'urn:example:i63'). +'urn:example:i50'('urn:example:i95', 'urn:example:i12'). +'urn:example:i50'('urn:example:i95', 'urn:example:i45'). +'urn:example:i50'('urn:example:i96', 'urn:example:i66'). +'urn:example:i50'('urn:example:i96', 'urn:example:i72'). +'urn:example:i50'('urn:example:i96', 'urn:example:i90'). +'urn:example:i50'('urn:example:i96', 'urn:example:i93'). +'urn:example:i50'('urn:example:i97', 'urn:example:i15'). +'urn:example:i50'('urn:example:i97', 'urn:example:i48'). +'urn:example:i50'('urn:example:i98', 'urn:example:i72'). +'urn:example:i50'('urn:example:i99', 'urn:example:i54'). +'urn:example:i50'('urn:example:i99', 'urn:example:i63'). +'urn:example:i50'('urn:example:i99', 'urn:example:i66'). +'urn:example:i50'('urn:example:i9', 'urn:example:i24'). +'urn:example:i50'('urn:example:i9', 'urn:example:i27'). +'urn:example:i50'('urn:example:i9', 'urn:example:i33'). +'urn:example:i51'('urn:example:i10', 'urn:example:i96'). +'urn:example:i51'('urn:example:i11', 'urn:example:i90'). +'urn:example:i51'('urn:example:i14', 'urn:example:i66'). +'urn:example:i51'('urn:example:i14', 'urn:example:i69'). +'urn:example:i51'('urn:example:i15', 'urn:example:i21'). +'urn:example:i51'('urn:example:i15', 'urn:example:i90'). +'urn:example:i51'('urn:example:i17', 'urn:example:i24'). +'urn:example:i51'('urn:example:i19', 'urn:example:i12'). +'urn:example:i51'('urn:example:i1', 'urn:example:i48'). +'urn:example:i51'('urn:example:i1', 'urn:example:i51'). +'urn:example:i51'('urn:example:i1', 'urn:example:i75'). +'urn:example:i51'('urn:example:i23', 'urn:example:i21'). +'urn:example:i51'('urn:example:i24', 'urn:example:i87'). +'urn:example:i51'('urn:example:i27', 'urn:example:i6'). +'urn:example:i51'('urn:example:i28', 'urn:example:i45'). +'urn:example:i51'('urn:example:i28', 'urn:example:i75'). +'urn:example:i51'('urn:example:i31', 'urn:example:i84'). +'urn:example:i51'('urn:example:i32', 'urn:example:i9'). +'urn:example:i51'('urn:example:i36', 'urn:example:i9'). +'urn:example:i51'('urn:example:i37', 'urn:example:i0'). +'urn:example:i51'('urn:example:i37', 'urn:example:i36'). +'urn:example:i51'('urn:example:i38', 'urn:example:i63'). +'urn:example:i51'('urn:example:i39', 'urn:example:i48'). +'urn:example:i51'('urn:example:i39', 'urn:example:i57'). +'urn:example:i51'('urn:example:i3', 'urn:example:i15'). +'urn:example:i51'('urn:example:i3', 'urn:example:i69'). +'urn:example:i51'('urn:example:i40', 'urn:example:i66'). +'urn:example:i51'('urn:example:i43', 'urn:example:i24'). +'urn:example:i51'('urn:example:i43', 'urn:example:i51'). +'urn:example:i51'('urn:example:i43', 'urn:example:i63'). +'urn:example:i51'('urn:example:i48', 'urn:example:i57'). +'urn:example:i51'('urn:example:i49', 'urn:example:i27'). +'urn:example:i51'('urn:example:i4', 'urn:example:i93'). +'urn:example:i51'('urn:example:i4', 'urn:example:i96'). +'urn:example:i51'('urn:example:i52', 'urn:example:i99'). +'urn:example:i51'('urn:example:i52', 'urn:example:i9'). +'urn:example:i51'('urn:example:i53', 'urn:example:i54'). +'urn:example:i51'('urn:example:i54', 'urn:example:i36'). +'urn:example:i51'('urn:example:i56', 'urn:example:i3'). +'urn:example:i51'('urn:example:i59', 'urn:example:i51'). +'urn:example:i51'('urn:example:i59', 'urn:example:i57'). +'urn:example:i51'('urn:example:i5', 'urn:example:i15'). +'urn:example:i51'('urn:example:i60', 'urn:example:i33'). +'urn:example:i51'('urn:example:i64', 'urn:example:i63'). +'urn:example:i51'('urn:example:i66', 'urn:example:i27'). +'urn:example:i51'('urn:example:i67', 'urn:example:i45'). +'urn:example:i51'('urn:example:i68', 'urn:example:i84'). +'urn:example:i51'('urn:example:i6', 'urn:example:i33'). +'urn:example:i51'('urn:example:i6', 'urn:example:i3'). +'urn:example:i51'('urn:example:i6', 'urn:example:i9'). +'urn:example:i51'('urn:example:i71', 'urn:example:i6'). +'urn:example:i51'('urn:example:i73', 'urn:example:i57'). +'urn:example:i51'('urn:example:i75', 'urn:example:i48'). +'urn:example:i51'('urn:example:i77', 'urn:example:i12'). +'urn:example:i51'('urn:example:i77', 'urn:example:i36'). +'urn:example:i51'('urn:example:i78', 'urn:example:i21'). +'urn:example:i51'('urn:example:i78', 'urn:example:i33'). +'urn:example:i51'('urn:example:i7', 'urn:example:i18'). +'urn:example:i51'('urn:example:i80', 'urn:example:i18'). +'urn:example:i51'('urn:example:i81', 'urn:example:i15'). +'urn:example:i51'('urn:example:i82', 'urn:example:i36'). +'urn:example:i51'('urn:example:i82', 'urn:example:i51'). +'urn:example:i51'('urn:example:i82', 'urn:example:i66'). +'urn:example:i51'('urn:example:i82', 'urn:example:i9'). +'urn:example:i51'('urn:example:i83', 'urn:example:i27'). +'urn:example:i51'('urn:example:i83', 'urn:example:i45'). +'urn:example:i51'('urn:example:i84', 'urn:example:i42'). +'urn:example:i51'('urn:example:i86', 'urn:example:i18'). +'urn:example:i51'('urn:example:i86', 'urn:example:i45'). +'urn:example:i51'('urn:example:i86', 'urn:example:i66'). +'urn:example:i51'('urn:example:i87', 'urn:example:i12'). +'urn:example:i51'('urn:example:i87', 'urn:example:i18'). +'urn:example:i51'('urn:example:i87', 'urn:example:i81'). +'urn:example:i51'('urn:example:i90', 'urn:example:i72'). +'urn:example:i51'('urn:example:i91', 'urn:example:i45'). +'urn:example:i51'('urn:example:i91', 'urn:example:i6'). +'urn:example:i51'('urn:example:i91', 'urn:example:i9'). +'urn:example:i51'('urn:example:i95', 'urn:example:i33'). +'urn:example:i51'('urn:example:i97', 'urn:example:i21'). +'urn:example:i51'('urn:example:i97', 'urn:example:i45'). +'urn:example:i51'('urn:example:i97', 'urn:example:i57'). +'urn:example:i51'('urn:example:i98', 'urn:example:i96'). +'urn:example:i51'('urn:example:i99', 'urn:example:i12'). +'urn:example:i51'('urn:example:i9', 'urn:example:i69'). +'urn:example:i52'('urn:example:i0', 'urn:example:i36'). +'urn:example:i52'('urn:example:i0', 'urn:example:i42'). +'urn:example:i52'('urn:example:i13', 'urn:example:i6'). +'urn:example:i52'('urn:example:i14', 'urn:example:i21'). +'urn:example:i52'('urn:example:i14', 'urn:example:i66'). +'urn:example:i52'('urn:example:i17', 'urn:example:i54'). +'urn:example:i52'('urn:example:i17', 'urn:example:i9'). +'urn:example:i52'('urn:example:i20', 'urn:example:i72'). +'urn:example:i52'('urn:example:i21', 'urn:example:i33'). +'urn:example:i52'('urn:example:i21', 'urn:example:i57'). +'urn:example:i52'('urn:example:i21', 'urn:example:i78'). +'urn:example:i52'('urn:example:i23', 'urn:example:i21'). +'urn:example:i52'('urn:example:i25', 'urn:example:i42'). +'urn:example:i52'('urn:example:i25', 'urn:example:i63'). +'urn:example:i52'('urn:example:i26', 'urn:example:i78'). +'urn:example:i52'('urn:example:i26', 'urn:example:i87'). +'urn:example:i52'('urn:example:i27', 'urn:example:i81'). +'urn:example:i52'('urn:example:i28', 'urn:example:i90'). +'urn:example:i52'('urn:example:i29', 'urn:example:i15'). +'urn:example:i52'('urn:example:i2', 'urn:example:i51'). +'urn:example:i52'('urn:example:i32', 'urn:example:i75'). +'urn:example:i52'('urn:example:i33', 'urn:example:i96'). +'urn:example:i52'('urn:example:i35', 'urn:example:i45'). +'urn:example:i52'('urn:example:i36', 'urn:example:i54'). +'urn:example:i52'('urn:example:i38', 'urn:example:i36'). +'urn:example:i52'('urn:example:i3', 'urn:example:i36'). +'urn:example:i52'('urn:example:i41', 'urn:example:i24'). +'urn:example:i52'('urn:example:i41', 'urn:example:i36'). +'urn:example:i52'('urn:example:i43', 'urn:example:i45'). +'urn:example:i52'('urn:example:i43', 'urn:example:i6'). +'urn:example:i52'('urn:example:i43', 'urn:example:i78'). +'urn:example:i52'('urn:example:i46', 'urn:example:i15'). +'urn:example:i52'('urn:example:i46', 'urn:example:i57'). +'urn:example:i52'('urn:example:i48', 'urn:example:i15'). +'urn:example:i52'('urn:example:i48', 'urn:example:i18'). +'urn:example:i52'('urn:example:i48', 'urn:example:i3'). +'urn:example:i52'('urn:example:i48', 'urn:example:i72'). +'urn:example:i52'('urn:example:i49', 'urn:example:i84'). +'urn:example:i52'('urn:example:i4', 'urn:example:i21'). +'urn:example:i52'('urn:example:i50', 'urn:example:i36'). +'urn:example:i52'('urn:example:i51', 'urn:example:i42'). +'urn:example:i52'('urn:example:i54', 'urn:example:i12'). +'urn:example:i52'('urn:example:i55', 'urn:example:i66'). +'urn:example:i52'('urn:example:i55', 'urn:example:i84'). +'urn:example:i52'('urn:example:i56', 'urn:example:i45'). +'urn:example:i52'('urn:example:i56', 'urn:example:i84'). +'urn:example:i52'('urn:example:i57', 'urn:example:i9'). +'urn:example:i52'('urn:example:i58', 'urn:example:i24'). +'urn:example:i52'('urn:example:i58', 'urn:example:i84'). +'urn:example:i52'('urn:example:i5', 'urn:example:i87'). +'urn:example:i52'('urn:example:i60', 'urn:example:i81'). +'urn:example:i52'('urn:example:i60', 'urn:example:i84'). +'urn:example:i52'('urn:example:i61', 'urn:example:i72'). +'urn:example:i52'('urn:example:i62', 'urn:example:i72'). +'urn:example:i52'('urn:example:i64', 'urn:example:i51'). +'urn:example:i52'('urn:example:i64', 'urn:example:i57'). +'urn:example:i52'('urn:example:i65', 'urn:example:i12'). +'urn:example:i52'('urn:example:i65', 'urn:example:i72'). +'urn:example:i52'('urn:example:i65', 'urn:example:i81'). +'urn:example:i52'('urn:example:i67', 'urn:example:i60'). +'urn:example:i52'('urn:example:i67', 'urn:example:i78'). +'urn:example:i52'('urn:example:i68', 'urn:example:i12'). +'urn:example:i52'('urn:example:i68', 'urn:example:i78'). +'urn:example:i52'('urn:example:i69', 'urn:example:i0'). +'urn:example:i52'('urn:example:i69', 'urn:example:i54'). +'urn:example:i52'('urn:example:i69', 'urn:example:i75'). +'urn:example:i52'('urn:example:i69', 'urn:example:i90'). +'urn:example:i52'('urn:example:i70', 'urn:example:i9'). +'urn:example:i52'('urn:example:i71', 'urn:example:i24'). +'urn:example:i52'('urn:example:i72', 'urn:example:i0'). +'urn:example:i52'('urn:example:i72', 'urn:example:i51'). +'urn:example:i52'('urn:example:i72', 'urn:example:i63'). +'urn:example:i52'('urn:example:i73', 'urn:example:i0'). +'urn:example:i52'('urn:example:i73', 'urn:example:i21'). +'urn:example:i52'('urn:example:i73', 'urn:example:i24'). +'urn:example:i52'('urn:example:i73', 'urn:example:i36'). +'urn:example:i52'('urn:example:i76', 'urn:example:i27'). +'urn:example:i52'('urn:example:i76', 'urn:example:i63'). +'urn:example:i52'('urn:example:i77', 'urn:example:i45'). +'urn:example:i52'('urn:example:i78', 'urn:example:i21'). +'urn:example:i52'('urn:example:i79', 'urn:example:i87'). +'urn:example:i52'('urn:example:i7', 'urn:example:i15'). +'urn:example:i52'('urn:example:i80', 'urn:example:i12'). +'urn:example:i52'('urn:example:i81', 'urn:example:i54'). +'urn:example:i52'('urn:example:i83', 'urn:example:i78'). +'urn:example:i52'('urn:example:i83', 'urn:example:i87'). +'urn:example:i52'('urn:example:i85', 'urn:example:i66'). +'urn:example:i52'('urn:example:i86', 'urn:example:i15'). +'urn:example:i52'('urn:example:i86', 'urn:example:i66'). +'urn:example:i52'('urn:example:i86', 'urn:example:i96'). +'urn:example:i52'('urn:example:i87', 'urn:example:i54'). +'urn:example:i52'('urn:example:i87', 'urn:example:i99'). +'urn:example:i52'('urn:example:i88', 'urn:example:i63'). +'urn:example:i52'('urn:example:i89', 'urn:example:i75'). +'urn:example:i52'('urn:example:i89', 'urn:example:i81'). +'urn:example:i52'('urn:example:i8', 'urn:example:i33'). +'urn:example:i52'('urn:example:i8', 'urn:example:i51'). +'urn:example:i52'('urn:example:i90', 'urn:example:i30'). +'urn:example:i52'('urn:example:i90', 'urn:example:i36'). +'urn:example:i52'('urn:example:i92', 'urn:example:i45'). +'urn:example:i52'('urn:example:i92', 'urn:example:i72'). +'urn:example:i52'('urn:example:i93', 'urn:example:i42'). +'urn:example:i52'('urn:example:i95', 'urn:example:i12'). +'urn:example:i52'('urn:example:i95', 'urn:example:i51'). +'urn:example:i52'('urn:example:i95', 'urn:example:i54'). +'urn:example:i52'('urn:example:i96', 'urn:example:i75'). +'urn:example:i52'('urn:example:i96', 'urn:example:i84'). +'urn:example:i52'('urn:example:i98', 'urn:example:i3'). +'urn:example:i52'('urn:example:i99', 'urn:example:i54'). +'urn:example:i52'('urn:example:i99', 'urn:example:i60'). +'urn:example:i52'('urn:example:i9', 'urn:example:i15'). +'urn:example:i53'('urn:example:i11', 'urn:example:i63'). +'urn:example:i53'('urn:example:i13', 'urn:example:i15'). +'urn:example:i53'('urn:example:i13', 'urn:example:i60'). +'urn:example:i53'('urn:example:i13', 'urn:example:i78'). +'urn:example:i53'('urn:example:i14', 'urn:example:i24'). +'urn:example:i53'('urn:example:i15', 'urn:example:i15'). +'urn:example:i53'('urn:example:i16', 'urn:example:i15'). +'urn:example:i53'('urn:example:i16', 'urn:example:i15'). +'urn:example:i53'('urn:example:i16', 'urn:example:i27'). +'urn:example:i53'('urn:example:i17', 'urn:example:i36'). +'urn:example:i53'('urn:example:i21', 'urn:example:i30'). +'urn:example:i53'('urn:example:i21', 'urn:example:i75'). +'urn:example:i53'('urn:example:i23', 'urn:example:i84'). +'urn:example:i53'('urn:example:i24', 'urn:example:i12'). +'urn:example:i53'('urn:example:i24', 'urn:example:i21'). +'urn:example:i53'('urn:example:i24', 'urn:example:i39'). +'urn:example:i53'('urn:example:i26', 'urn:example:i96'). +'urn:example:i53'('urn:example:i29', 'urn:example:i60'). +'urn:example:i53'('urn:example:i29', 'urn:example:i78'). +'urn:example:i53'('urn:example:i2', 'urn:example:i27'). +'urn:example:i53'('urn:example:i30', 'urn:example:i66'). +'urn:example:i53'('urn:example:i31', 'urn:example:i18'). +'urn:example:i53'('urn:example:i32', 'urn:example:i33'). +'urn:example:i53'('urn:example:i33', 'urn:example:i54'). +'urn:example:i53'('urn:example:i33', 'urn:example:i75'). +'urn:example:i53'('urn:example:i34', 'urn:example:i78'). +'urn:example:i53'('urn:example:i34', 'urn:example:i81'). +'urn:example:i53'('urn:example:i35', 'urn:example:i18'). +'urn:example:i53'('urn:example:i35', 'urn:example:i93'). +'urn:example:i53'('urn:example:i36', 'urn:example:i0'). +'urn:example:i53'('urn:example:i36', 'urn:example:i24'). +'urn:example:i53'('urn:example:i36', 'urn:example:i84'). +'urn:example:i53'('urn:example:i37', 'urn:example:i51'). +'urn:example:i53'('urn:example:i37', 'urn:example:i87'). +'urn:example:i53'('urn:example:i38', 'urn:example:i3'). +'urn:example:i53'('urn:example:i3', 'urn:example:i15'). +'urn:example:i53'('urn:example:i42', 'urn:example:i39'). +'urn:example:i53'('urn:example:i44', 'urn:example:i57'). +'urn:example:i53'('urn:example:i45', 'urn:example:i75'). +'urn:example:i53'('urn:example:i45', 'urn:example:i9'). +'urn:example:i53'('urn:example:i46', 'urn:example:i33'). +'urn:example:i53'('urn:example:i46', 'urn:example:i66'). +'urn:example:i53'('urn:example:i48', 'urn:example:i45'). +'urn:example:i53'('urn:example:i49', 'urn:example:i42'). +'urn:example:i53'('urn:example:i49', 'urn:example:i69'). +'urn:example:i53'('urn:example:i4', 'urn:example:i18'). +'urn:example:i53'('urn:example:i50', 'urn:example:i18'). +'urn:example:i53'('urn:example:i50', 'urn:example:i69'). +'urn:example:i53'('urn:example:i50', 'urn:example:i69'). +'urn:example:i53'('urn:example:i50', 'urn:example:i78'). +'urn:example:i53'('urn:example:i51', 'urn:example:i12'). +'urn:example:i53'('urn:example:i51', 'urn:example:i30'). +'urn:example:i53'('urn:example:i53', 'urn:example:i9'). +'urn:example:i53'('urn:example:i54', 'urn:example:i30'). +'urn:example:i53'('urn:example:i54', 'urn:example:i45'). +'urn:example:i53'('urn:example:i54', 'urn:example:i48'). +'urn:example:i53'('urn:example:i54', 'urn:example:i51'). +'urn:example:i53'('urn:example:i58', 'urn:example:i0'). +'urn:example:i53'('urn:example:i58', 'urn:example:i27'). +'urn:example:i53'('urn:example:i59', 'urn:example:i66'). +'urn:example:i53'('urn:example:i61', 'urn:example:i12'). +'urn:example:i53'('urn:example:i61', 'urn:example:i15'). +'urn:example:i53'('urn:example:i61', 'urn:example:i66'). +'urn:example:i53'('urn:example:i61', 'urn:example:i99'). +'urn:example:i53'('urn:example:i62', 'urn:example:i84'). +'urn:example:i53'('urn:example:i63', 'urn:example:i99'). +'urn:example:i53'('urn:example:i66', 'urn:example:i15'). +'urn:example:i53'('urn:example:i66', 'urn:example:i21'). +'urn:example:i53'('urn:example:i66', 'urn:example:i45'). +'urn:example:i53'('urn:example:i67', 'urn:example:i78'). +'urn:example:i53'('urn:example:i68', 'urn:example:i63'). +'urn:example:i53'('urn:example:i68', 'urn:example:i96'). +'urn:example:i53'('urn:example:i6', 'urn:example:i21'). +'urn:example:i53'('urn:example:i71', 'urn:example:i27'). +'urn:example:i53'('urn:example:i71', 'urn:example:i75'). +'urn:example:i53'('urn:example:i71', 'urn:example:i81'). +'urn:example:i53'('urn:example:i71', 'urn:example:i84'). +'urn:example:i53'('urn:example:i73', 'urn:example:i51'). +'urn:example:i53'('urn:example:i73', 'urn:example:i87'). +'urn:example:i53'('urn:example:i73', 'urn:example:i90'). +'urn:example:i53'('urn:example:i75', 'urn:example:i63'). +'urn:example:i53'('urn:example:i75', 'urn:example:i78'). +'urn:example:i53'('urn:example:i77', 'urn:example:i0'). +'urn:example:i53'('urn:example:i77', 'urn:example:i27'). +'urn:example:i53'('urn:example:i77', 'urn:example:i30'). +'urn:example:i53'('urn:example:i78', 'urn:example:i96'). +'urn:example:i53'('urn:example:i79', 'urn:example:i90'). +'urn:example:i53'('urn:example:i80', 'urn:example:i45'). +'urn:example:i53'('urn:example:i80', 'urn:example:i48'). +'urn:example:i53'('urn:example:i81', 'urn:example:i33'). +'urn:example:i53'('urn:example:i82', 'urn:example:i39'). +'urn:example:i53'('urn:example:i84', 'urn:example:i45'). +'urn:example:i53'('urn:example:i85', 'urn:example:i48'). +'urn:example:i53'('urn:example:i85', 'urn:example:i57'). +'urn:example:i53'('urn:example:i85', 'urn:example:i9'). +'urn:example:i53'('urn:example:i86', 'urn:example:i30'). +'urn:example:i53'('urn:example:i86', 'urn:example:i78'). +'urn:example:i53'('urn:example:i88', 'urn:example:i30'). +'urn:example:i53'('urn:example:i88', 'urn:example:i45'). +'urn:example:i53'('urn:example:i89', 'urn:example:i69'). +'urn:example:i53'('urn:example:i89', 'urn:example:i6'). +'urn:example:i53'('urn:example:i8', 'urn:example:i93'). +'urn:example:i53'('urn:example:i8', 'urn:example:i93'). +'urn:example:i53'('urn:example:i91', 'urn:example:i0'). +'urn:example:i53'('urn:example:i92', 'urn:example:i39'). +'urn:example:i53'('urn:example:i93', 'urn:example:i12'). +'urn:example:i53'('urn:example:i94', 'urn:example:i93'). +'urn:example:i53'('urn:example:i95', 'urn:example:i0'). +'urn:example:i53'('urn:example:i95', 'urn:example:i45'). +'urn:example:i53'('urn:example:i95', 'urn:example:i45'). +'urn:example:i53'('urn:example:i95', 'urn:example:i90'). +'urn:example:i53'('urn:example:i96', 'urn:example:i18'). +'urn:example:i53'('urn:example:i96', 'urn:example:i6'). +'urn:example:i53'('urn:example:i98', 'urn:example:i21'). +'urn:example:i53'('urn:example:i99', 'urn:example:i15'). +'urn:example:i53'('urn:example:i99', 'urn:example:i9'). +'urn:example:i54'('urn:example:i10', 'urn:example:i48'). +'urn:example:i54'('urn:example:i10', 'urn:example:i93'). +'urn:example:i54'('urn:example:i11', 'urn:example:i33'). +'urn:example:i54'('urn:example:i12', 'urn:example:i42'). +'urn:example:i54'('urn:example:i12', 'urn:example:i87'). +'urn:example:i54'('urn:example:i13', 'urn:example:i27'). +'urn:example:i54'('urn:example:i15', 'urn:example:i27'). +'urn:example:i54'('urn:example:i15', 'urn:example:i51'). +'urn:example:i54'('urn:example:i15', 'urn:example:i69'). +'urn:example:i54'('urn:example:i18', 'urn:example:i48'). +'urn:example:i54'('urn:example:i19', 'urn:example:i12'). +'urn:example:i54'('urn:example:i19', 'urn:example:i66'). +'urn:example:i54'('urn:example:i20', 'urn:example:i6'). +'urn:example:i54'('urn:example:i20', 'urn:example:i81'). +'urn:example:i54'('urn:example:i20', 'urn:example:i90'). +'urn:example:i54'('urn:example:i21', 'urn:example:i48'). +'urn:example:i54'('urn:example:i21', 'urn:example:i66'). +'urn:example:i54'('urn:example:i23', 'urn:example:i39'). +'urn:example:i54'('urn:example:i23', 'urn:example:i75'). +'urn:example:i54'('urn:example:i24', 'urn:example:i33'). +'urn:example:i54'('urn:example:i24', 'urn:example:i45'). +'urn:example:i54'('urn:example:i24', 'urn:example:i75'). +'urn:example:i54'('urn:example:i25', 'urn:example:i42'). +'urn:example:i54'('urn:example:i26', 'urn:example:i0'). +'urn:example:i54'('urn:example:i28', 'urn:example:i21'). +'urn:example:i54'('urn:example:i2', 'urn:example:i96'). +'urn:example:i54'('urn:example:i30', 'urn:example:i48'). +'urn:example:i54'('urn:example:i30', 'urn:example:i66'). +'urn:example:i54'('urn:example:i33', 'urn:example:i96'). +'urn:example:i54'('urn:example:i35', 'urn:example:i12'). +'urn:example:i54'('urn:example:i36', 'urn:example:i45'). +'urn:example:i54'('urn:example:i36', 'urn:example:i54'). +'urn:example:i54'('urn:example:i36', 'urn:example:i57'). +'urn:example:i54'('urn:example:i39', 'urn:example:i54'). +'urn:example:i54'('urn:example:i42', 'urn:example:i36'). +'urn:example:i54'('urn:example:i43', 'urn:example:i21'). +'urn:example:i54'('urn:example:i43', 'urn:example:i45'). +'urn:example:i54'('urn:example:i45', 'urn:example:i30'). +'urn:example:i54'('urn:example:i46', 'urn:example:i39'). +'urn:example:i54'('urn:example:i47', 'urn:example:i66'). +'urn:example:i54'('urn:example:i48', 'urn:example:i9'). +'urn:example:i54'('urn:example:i50', 'urn:example:i21'). +'urn:example:i54'('urn:example:i50', 'urn:example:i84'). +'urn:example:i54'('urn:example:i50', 'urn:example:i84'). +'urn:example:i54'('urn:example:i51', 'urn:example:i66'). +'urn:example:i54'('urn:example:i53', 'urn:example:i90'). +'urn:example:i54'('urn:example:i54', 'urn:example:i30'). +'urn:example:i54'('urn:example:i55', 'urn:example:i24'). +'urn:example:i54'('urn:example:i55', 'urn:example:i75'). +'urn:example:i54'('urn:example:i57', 'urn:example:i21'). +'urn:example:i54'('urn:example:i58', 'urn:example:i48'). +'urn:example:i54'('urn:example:i58', 'urn:example:i6'). +'urn:example:i54'('urn:example:i59', 'urn:example:i12'). +'urn:example:i54'('urn:example:i59', 'urn:example:i63'). +'urn:example:i54'('urn:example:i59', 'urn:example:i6'). +'urn:example:i54'('urn:example:i61', 'urn:example:i48'). +'urn:example:i54'('urn:example:i62', 'urn:example:i75'). +'urn:example:i54'('urn:example:i63', 'urn:example:i54'). +'urn:example:i54'('urn:example:i63', 'urn:example:i90'). +'urn:example:i54'('urn:example:i64', 'urn:example:i12'). +'urn:example:i54'('urn:example:i64', 'urn:example:i63'). +'urn:example:i54'('urn:example:i65', 'urn:example:i21'). +'urn:example:i54'('urn:example:i66', 'urn:example:i33'). +'urn:example:i54'('urn:example:i67', 'urn:example:i63'). +'urn:example:i54'('urn:example:i67', 'urn:example:i72'). +'urn:example:i54'('urn:example:i68', 'urn:example:i63'). +'urn:example:i54'('urn:example:i69', 'urn:example:i72'). +'urn:example:i54'('urn:example:i69', 'urn:example:i9'). +'urn:example:i54'('urn:example:i6', 'urn:example:i69'). +'urn:example:i54'('urn:example:i70', 'urn:example:i60'). +'urn:example:i54'('urn:example:i70', 'urn:example:i69'). +'urn:example:i54'('urn:example:i71', 'urn:example:i3'). +'urn:example:i54'('urn:example:i73', 'urn:example:i93'). +'urn:example:i54'('urn:example:i74', 'urn:example:i72'). +'urn:example:i54'('urn:example:i75', 'urn:example:i18'). +'urn:example:i54'('urn:example:i76', 'urn:example:i81'). +'urn:example:i54'('urn:example:i77', 'urn:example:i21'). +'urn:example:i54'('urn:example:i7', 'urn:example:i3'). +'urn:example:i54'('urn:example:i7', 'urn:example:i42'). +'urn:example:i54'('urn:example:i81', 'urn:example:i3'). +'urn:example:i54'('urn:example:i81', 'urn:example:i3'). +'urn:example:i54'('urn:example:i82', 'urn:example:i12'). +'urn:example:i54'('urn:example:i82', 'urn:example:i63'). +'urn:example:i54'('urn:example:i84', 'urn:example:i30'). +'urn:example:i54'('urn:example:i84', 'urn:example:i39'). +'urn:example:i54'('urn:example:i84', 'urn:example:i51'). +'urn:example:i54'('urn:example:i84', 'urn:example:i93'). +'urn:example:i54'('urn:example:i85', 'urn:example:i99'). +'urn:example:i54'('urn:example:i87', 'urn:example:i36'). +'urn:example:i54'('urn:example:i88', 'urn:example:i39'). +'urn:example:i54'('urn:example:i89', 'urn:example:i3'). +'urn:example:i54'('urn:example:i90', 'urn:example:i39'). +'urn:example:i54'('urn:example:i91', 'urn:example:i48'). +'urn:example:i54'('urn:example:i91', 'urn:example:i66'). +'urn:example:i54'('urn:example:i92', 'urn:example:i54'). +'urn:example:i54'('urn:example:i93', 'urn:example:i45'). +'urn:example:i54'('urn:example:i93', 'urn:example:i96'). +'urn:example:i54'('urn:example:i94', 'urn:example:i39'). +'urn:example:i54'('urn:example:i95', 'urn:example:i60'). +'urn:example:i54'('urn:example:i95', 'urn:example:i78'). +'urn:example:i54'('urn:example:i96', 'urn:example:i9'). +'urn:example:i54'('urn:example:i98', 'urn:example:i42'). +'urn:example:i54'('urn:example:i98', 'urn:example:i84'). +'urn:example:i54'('urn:example:i98', 'urn:example:i84'). +'urn:example:i54'('urn:example:i9', 'urn:example:i51'). +'urn:example:i55'('urn:example:i0', 'urn:example:i15'). +'urn:example:i55'('urn:example:i0', 'urn:example:i27'). +'urn:example:i55'('urn:example:i11', 'urn:example:i81'). +'urn:example:i55'('urn:example:i12', 'urn:example:i63'). +'urn:example:i55'('urn:example:i12', 'urn:example:i66'). +'urn:example:i55'('urn:example:i13', 'urn:example:i93'). +'urn:example:i55'('urn:example:i14', 'urn:example:i21'). +'urn:example:i55'('urn:example:i14', 'urn:example:i84'). +'urn:example:i55'('urn:example:i14', 'urn:example:i93'). +'urn:example:i55'('urn:example:i15', 'urn:example:i84'). +'urn:example:i55'('urn:example:i18', 'urn:example:i60'). +'urn:example:i55'('urn:example:i19', 'urn:example:i81'). +'urn:example:i55'('urn:example:i20', 'urn:example:i54'). +'urn:example:i55'('urn:example:i21', 'urn:example:i87'). +'urn:example:i55'('urn:example:i21', 'urn:example:i9'). +'urn:example:i55'('urn:example:i24', 'urn:example:i63'). +'urn:example:i55'('urn:example:i24', 'urn:example:i90'). +'urn:example:i55'('urn:example:i26', 'urn:example:i90'). +'urn:example:i55'('urn:example:i27', 'urn:example:i6'). +'urn:example:i55'('urn:example:i2', 'urn:example:i3'). +'urn:example:i55'('urn:example:i31', 'urn:example:i99'). +'urn:example:i55'('urn:example:i33', 'urn:example:i33'). +'urn:example:i55'('urn:example:i34', 'urn:example:i66'). +'urn:example:i55'('urn:example:i35', 'urn:example:i90'). +'urn:example:i55'('urn:example:i36', 'urn:example:i18'). +'urn:example:i55'('urn:example:i37', 'urn:example:i63'). +'urn:example:i55'('urn:example:i38', 'urn:example:i3'). +'urn:example:i55'('urn:example:i39', 'urn:example:i75'). +'urn:example:i55'('urn:example:i3', 'urn:example:i96'). +'urn:example:i55'('urn:example:i40', 'urn:example:i99'). +'urn:example:i55'('urn:example:i42', 'urn:example:i72'). +'urn:example:i55'('urn:example:i43', 'urn:example:i84'). +'urn:example:i55'('urn:example:i45', 'urn:example:i93'). +'urn:example:i55'('urn:example:i46', 'urn:example:i12'). +'urn:example:i55'('urn:example:i46', 'urn:example:i45'). +'urn:example:i55'('urn:example:i46', 'urn:example:i9'). +'urn:example:i55'('urn:example:i48', 'urn:example:i33'). +'urn:example:i55'('urn:example:i48', 'urn:example:i72'). +'urn:example:i55'('urn:example:i49', 'urn:example:i87'). +'urn:example:i55'('urn:example:i51', 'urn:example:i6'). +'urn:example:i55'('urn:example:i52', 'urn:example:i93'). +'urn:example:i55'('urn:example:i53', 'urn:example:i87'). +'urn:example:i55'('urn:example:i54', 'urn:example:i39'). +'urn:example:i55'('urn:example:i54', 'urn:example:i42'). +'urn:example:i55'('urn:example:i54', 'urn:example:i54'). +'urn:example:i55'('urn:example:i54', 'urn:example:i96'). +'urn:example:i55'('urn:example:i57', 'urn:example:i3'). +'urn:example:i55'('urn:example:i57', 'urn:example:i60'). +'urn:example:i55'('urn:example:i60', 'urn:example:i84'). +'urn:example:i55'('urn:example:i61', 'urn:example:i66'). +'urn:example:i55'('urn:example:i65', 'urn:example:i75'). +'urn:example:i55'('urn:example:i67', 'urn:example:i57'). +'urn:example:i55'('urn:example:i68', 'urn:example:i72'). +'urn:example:i55'('urn:example:i68', 'urn:example:i78'). +'urn:example:i55'('urn:example:i6', 'urn:example:i12'). +'urn:example:i55'('urn:example:i70', 'urn:example:i78'). +'urn:example:i55'('urn:example:i70', 'urn:example:i90'). +'urn:example:i55'('urn:example:i71', 'urn:example:i54'). +'urn:example:i55'('urn:example:i72', 'urn:example:i36'). +'urn:example:i55'('urn:example:i72', 'urn:example:i75'). +'urn:example:i55'('urn:example:i73', 'urn:example:i63'). +'urn:example:i55'('urn:example:i75', 'urn:example:i87'). +'urn:example:i55'('urn:example:i76', 'urn:example:i39'). +'urn:example:i55'('urn:example:i76', 'urn:example:i6'). +'urn:example:i55'('urn:example:i78', 'urn:example:i36'). +'urn:example:i55'('urn:example:i79', 'urn:example:i72'). +'urn:example:i55'('urn:example:i79', 'urn:example:i78'). +'urn:example:i55'('urn:example:i7', 'urn:example:i69'). +'urn:example:i55'('urn:example:i80', 'urn:example:i63'). +'urn:example:i55'('urn:example:i81', 'urn:example:i15'). +'urn:example:i55'('urn:example:i85', 'urn:example:i66'). +'urn:example:i55'('urn:example:i86', 'urn:example:i0'). +'urn:example:i55'('urn:example:i87', 'urn:example:i3'). +'urn:example:i55'('urn:example:i87', 'urn:example:i6'). +'urn:example:i55'('urn:example:i88', 'urn:example:i39'). +'urn:example:i55'('urn:example:i88', 'urn:example:i87'). +'urn:example:i55'('urn:example:i88', 'urn:example:i93'). +'urn:example:i55'('urn:example:i94', 'urn:example:i18'). +'urn:example:i55'('urn:example:i96', 'urn:example:i45'). +'urn:example:i55'('urn:example:i96', 'urn:example:i6'). +'urn:example:i55'('urn:example:i96', 'urn:example:i81'). +'urn:example:i55'('urn:example:i97', 'urn:example:i12'). +'urn:example:i55'('urn:example:i98', 'urn:example:i12'). +'urn:example:i55'('urn:example:i98', 'urn:example:i33'). +'urn:example:i55'('urn:example:i9', 'urn:example:i24'). +'urn:example:i56'('urn:example:i0', 'urn:example:i87'). +'urn:example:i56'('urn:example:i10', 'urn:example:i93'). +'urn:example:i56'('urn:example:i11', 'urn:example:i33'). +'urn:example:i56'('urn:example:i11', 'urn:example:i96'). +'urn:example:i56'('urn:example:i12', 'urn:example:i15'). +'urn:example:i56'('urn:example:i12', 'urn:example:i57'). +'urn:example:i56'('urn:example:i13', 'urn:example:i66'). +'urn:example:i56'('urn:example:i14', 'urn:example:i33'). +'urn:example:i56'('urn:example:i14', 'urn:example:i57'). +'urn:example:i56'('urn:example:i15', 'urn:example:i18'). +'urn:example:i56'('urn:example:i15', 'urn:example:i42'). +'urn:example:i56'('urn:example:i15', 'urn:example:i63'). +'urn:example:i56'('urn:example:i17', 'urn:example:i54'). +'urn:example:i56'('urn:example:i19', 'urn:example:i48'). +'urn:example:i56'('urn:example:i1', 'urn:example:i36'). +'urn:example:i56'('urn:example:i21', 'urn:example:i45'). +'urn:example:i56'('urn:example:i22', 'urn:example:i12'). +'urn:example:i56'('urn:example:i23', 'urn:example:i30'). +'urn:example:i56'('urn:example:i25', 'urn:example:i84'). +'urn:example:i56'('urn:example:i26', 'urn:example:i90'). +'urn:example:i56'('urn:example:i27', 'urn:example:i27'). +'urn:example:i56'('urn:example:i27', 'urn:example:i72'). +'urn:example:i56'('urn:example:i28', 'urn:example:i69'). +'urn:example:i56'('urn:example:i28', 'urn:example:i87'). +'urn:example:i56'('urn:example:i2', 'urn:example:i0'). +'urn:example:i56'('urn:example:i2', 'urn:example:i84'). +'urn:example:i56'('urn:example:i30', 'urn:example:i36'). +'urn:example:i56'('urn:example:i30', 'urn:example:i84'). +'urn:example:i56'('urn:example:i31', 'urn:example:i60'). +'urn:example:i56'('urn:example:i32', 'urn:example:i39'). +'urn:example:i56'('urn:example:i33', 'urn:example:i27'). +'urn:example:i56'('urn:example:i34', 'urn:example:i57'). +'urn:example:i56'('urn:example:i36', 'urn:example:i12'). +'urn:example:i56'('urn:example:i36', 'urn:example:i57'). +'urn:example:i56'('urn:example:i37', 'urn:example:i81'). +'urn:example:i56'('urn:example:i38', 'urn:example:i39'). +'urn:example:i56'('urn:example:i39', 'urn:example:i45'). +'urn:example:i56'('urn:example:i39', 'urn:example:i54'). +'urn:example:i56'('urn:example:i43', 'urn:example:i12'). +'urn:example:i56'('urn:example:i43', 'urn:example:i3'). +'urn:example:i56'('urn:example:i45', 'urn:example:i69'). +'urn:example:i56'('urn:example:i46', 'urn:example:i42'). +'urn:example:i56'('urn:example:i46', 'urn:example:i81'). +'urn:example:i56'('urn:example:i47', 'urn:example:i42'). +'urn:example:i56'('urn:example:i47', 'urn:example:i63'). +'urn:example:i56'('urn:example:i48', 'urn:example:i84'). +'urn:example:i56'('urn:example:i49', 'urn:example:i93'). +'urn:example:i56'('urn:example:i49', 'urn:example:i93'). +'urn:example:i56'('urn:example:i4', 'urn:example:i48'). +'urn:example:i56'('urn:example:i52', 'urn:example:i21'). +'urn:example:i56'('urn:example:i52', 'urn:example:i30'). +'urn:example:i56'('urn:example:i53', 'urn:example:i54'). +'urn:example:i56'('urn:example:i59', 'urn:example:i3'). +'urn:example:i56'('urn:example:i59', 'urn:example:i6'). +'urn:example:i56'('urn:example:i61', 'urn:example:i54'). +'urn:example:i56'('urn:example:i61', 'urn:example:i72'). +'urn:example:i56'('urn:example:i61', 'urn:example:i93'). +'urn:example:i56'('urn:example:i62', 'urn:example:i84'). +'urn:example:i56'('urn:example:i63', 'urn:example:i0'). +'urn:example:i56'('urn:example:i63', 'urn:example:i51'). +'urn:example:i56'('urn:example:i63', 'urn:example:i81'). +'urn:example:i56'('urn:example:i63', 'urn:example:i90'). +'urn:example:i56'('urn:example:i65', 'urn:example:i90'). +'urn:example:i56'('urn:example:i66', 'urn:example:i6'). +'urn:example:i56'('urn:example:i66', 'urn:example:i84'). +'urn:example:i56'('urn:example:i67', 'urn:example:i69'). +'urn:example:i56'('urn:example:i68', 'urn:example:i45'). +'urn:example:i56'('urn:example:i68', 'urn:example:i75'). +'urn:example:i56'('urn:example:i70', 'urn:example:i60'). +'urn:example:i56'('urn:example:i71', 'urn:example:i0'). +'urn:example:i56'('urn:example:i72', 'urn:example:i3'). +'urn:example:i56'('urn:example:i73', 'urn:example:i42'). +'urn:example:i56'('urn:example:i75', 'urn:example:i18'). +'urn:example:i56'('urn:example:i78', 'urn:example:i27'). +'urn:example:i56'('urn:example:i78', 'urn:example:i42'). +'urn:example:i56'('urn:example:i79', 'urn:example:i21'). +'urn:example:i56'('urn:example:i80', 'urn:example:i0'). +'urn:example:i56'('urn:example:i80', 'urn:example:i90'). +'urn:example:i56'('urn:example:i82', 'urn:example:i12'). +'urn:example:i56'('urn:example:i82', 'urn:example:i15'). +'urn:example:i56'('urn:example:i82', 'urn:example:i72'). +'urn:example:i56'('urn:example:i82', 'urn:example:i84'). +'urn:example:i56'('urn:example:i83', 'urn:example:i18'). +'urn:example:i56'('urn:example:i83', 'urn:example:i93'). +'urn:example:i56'('urn:example:i85', 'urn:example:i96'). +'urn:example:i56'('urn:example:i8', 'urn:example:i24'). +'urn:example:i56'('urn:example:i8', 'urn:example:i33'). +'urn:example:i56'('urn:example:i91', 'urn:example:i45'). +'urn:example:i56'('urn:example:i93', 'urn:example:i42'). +'urn:example:i56'('urn:example:i94', 'urn:example:i0'). +'urn:example:i56'('urn:example:i94', 'urn:example:i36'). +'urn:example:i56'('urn:example:i94', 'urn:example:i39'). +'urn:example:i56'('urn:example:i96', 'urn:example:i30'). +'urn:example:i56'('urn:example:i97', 'urn:example:i39'). +'urn:example:i56'('urn:example:i98', 'urn:example:i81'). +'urn:example:i56'('urn:example:i99', 'urn:example:i45'). +'urn:example:i56'('urn:example:i9', 'urn:example:i9'). +'urn:example:i57'('urn:example:i0', 'urn:example:i69'). +'urn:example:i57'('urn:example:i11', 'urn:example:i48'). +'urn:example:i57'('urn:example:i11', 'urn:example:i96'). +'urn:example:i57'('urn:example:i12', 'urn:example:i33'). +'urn:example:i57'('urn:example:i12', 'urn:example:i81'). +'urn:example:i57'('urn:example:i13', 'urn:example:i45'). +'urn:example:i57'('urn:example:i14', 'urn:example:i51'). +'urn:example:i57'('urn:example:i16', 'urn:example:i69'). +'urn:example:i57'('urn:example:i17', 'urn:example:i33'). +'urn:example:i57'('urn:example:i17', 'urn:example:i90'). +'urn:example:i57'('urn:example:i18', 'urn:example:i0'). +'urn:example:i57'('urn:example:i18', 'urn:example:i24'). +'urn:example:i57'('urn:example:i1', 'urn:example:i72'). +'urn:example:i57'('urn:example:i23', 'urn:example:i15'). +'urn:example:i57'('urn:example:i25', 'urn:example:i0'). +'urn:example:i57'('urn:example:i25', 'urn:example:i12'). +'urn:example:i57'('urn:example:i25', 'urn:example:i42'). +'urn:example:i57'('urn:example:i27', 'urn:example:i12'). +'urn:example:i57'('urn:example:i27', 'urn:example:i48'). +'urn:example:i57'('urn:example:i28', 'urn:example:i81'). +'urn:example:i57'('urn:example:i29', 'urn:example:i54'). +'urn:example:i57'('urn:example:i29', 'urn:example:i84'). +'urn:example:i57'('urn:example:i2', 'urn:example:i0'). +'urn:example:i57'('urn:example:i30', 'urn:example:i93'). +'urn:example:i57'('urn:example:i32', 'urn:example:i60'). +'urn:example:i57'('urn:example:i32', 'urn:example:i93'). +'urn:example:i57'('urn:example:i34', 'urn:example:i63'). +'urn:example:i57'('urn:example:i35', 'urn:example:i15'). +'urn:example:i57'('urn:example:i35', 'urn:example:i57'). +'urn:example:i57'('urn:example:i37', 'urn:example:i3'). +'urn:example:i57'('urn:example:i37', 'urn:example:i42'). +'urn:example:i57'('urn:example:i38', 'urn:example:i30'). +'urn:example:i57'('urn:example:i38', 'urn:example:i78'). +'urn:example:i57'('urn:example:i38', 'urn:example:i96'). +'urn:example:i57'('urn:example:i40', 'urn:example:i30'). +'urn:example:i57'('urn:example:i40', 'urn:example:i60'). +'urn:example:i57'('urn:example:i44', 'urn:example:i87'). +'urn:example:i57'('urn:example:i44', 'urn:example:i9'). +'urn:example:i57'('urn:example:i45', 'urn:example:i93'). +'urn:example:i57'('urn:example:i46', 'urn:example:i0'). +'urn:example:i57'('urn:example:i48', 'urn:example:i39'). +'urn:example:i57'('urn:example:i48', 'urn:example:i54'). +'urn:example:i57'('urn:example:i48', 'urn:example:i69'). +'urn:example:i57'('urn:example:i48', 'urn:example:i99'). +'urn:example:i57'('urn:example:i49', 'urn:example:i84'). +'urn:example:i57'('urn:example:i4', 'urn:example:i33'). +'urn:example:i57'('urn:example:i4', 'urn:example:i93'). +'urn:example:i57'('urn:example:i50', 'urn:example:i81'). +'urn:example:i57'('urn:example:i51', 'urn:example:i84'). +'urn:example:i57'('urn:example:i53', 'urn:example:i33'). +'urn:example:i57'('urn:example:i53', 'urn:example:i63'). +'urn:example:i57'('urn:example:i54', 'urn:example:i39'). +'urn:example:i57'('urn:example:i54', 'urn:example:i72'). +'urn:example:i57'('urn:example:i56', 'urn:example:i12'). +'urn:example:i57'('urn:example:i57', 'urn:example:i30'). +'urn:example:i57'('urn:example:i58', 'urn:example:i57'). +'urn:example:i57'('urn:example:i58', 'urn:example:i66'). +'urn:example:i57'('urn:example:i59', 'urn:example:i6'). +'urn:example:i57'('urn:example:i61', 'urn:example:i81'). +'urn:example:i57'('urn:example:i62', 'urn:example:i93'). +'urn:example:i57'('urn:example:i63', 'urn:example:i33'). +'urn:example:i57'('urn:example:i67', 'urn:example:i3'). +'urn:example:i57'('urn:example:i68', 'urn:example:i69'). +'urn:example:i57'('urn:example:i69', 'urn:example:i45'). +'urn:example:i57'('urn:example:i69', 'urn:example:i48'). +'urn:example:i57'('urn:example:i69', 'urn:example:i51'). +'urn:example:i57'('urn:example:i6', 'urn:example:i75'). +'urn:example:i57'('urn:example:i6', 'urn:example:i87'). +'urn:example:i57'('urn:example:i70', 'urn:example:i30'). +'urn:example:i57'('urn:example:i70', 'urn:example:i72'). +'urn:example:i57'('urn:example:i71', 'urn:example:i69'). +'urn:example:i57'('urn:example:i71', 'urn:example:i93'). +'urn:example:i57'('urn:example:i72', 'urn:example:i90'). +'urn:example:i57'('urn:example:i76', 'urn:example:i36'). +'urn:example:i57'('urn:example:i76', 'urn:example:i78'). +'urn:example:i57'('urn:example:i79', 'urn:example:i12'). +'urn:example:i57'('urn:example:i79', 'urn:example:i48'). +'urn:example:i57'('urn:example:i79', 'urn:example:i9'). +'urn:example:i57'('urn:example:i7', 'urn:example:i66'). +'urn:example:i57'('urn:example:i7', 'urn:example:i9'). +'urn:example:i57'('urn:example:i81', 'urn:example:i24'). +'urn:example:i57'('urn:example:i82', 'urn:example:i15'). +'urn:example:i57'('urn:example:i84', 'urn:example:i51'). +'urn:example:i57'('urn:example:i84', 'urn:example:i60'). +'urn:example:i57'('urn:example:i86', 'urn:example:i75'). +'urn:example:i57'('urn:example:i87', 'urn:example:i78'). +'urn:example:i57'('urn:example:i88', 'urn:example:i12'). +'urn:example:i57'('urn:example:i88', 'urn:example:i48'). +'urn:example:i57'('urn:example:i8', 'urn:example:i72'). +'urn:example:i57'('urn:example:i91', 'urn:example:i75'). +'urn:example:i57'('urn:example:i92', 'urn:example:i69'). +'urn:example:i57'('urn:example:i93', 'urn:example:i51'). +'urn:example:i57'('urn:example:i93', 'urn:example:i87'). +'urn:example:i57'('urn:example:i93', 'urn:example:i99'). +'urn:example:i57'('urn:example:i94', 'urn:example:i51'). +'urn:example:i57'('urn:example:i94', 'urn:example:i60'). +'urn:example:i57'('urn:example:i95', 'urn:example:i21'). +'urn:example:i57'('urn:example:i95', 'urn:example:i33'). +'urn:example:i57'('urn:example:i96', 'urn:example:i57'). +'urn:example:i57'('urn:example:i97', 'urn:example:i0'). +'urn:example:i57'('urn:example:i97', 'urn:example:i63'). +'urn:example:i57'('urn:example:i98', 'urn:example:i66'). +'urn:example:i57'('urn:example:i99', 'urn:example:i81'). +'urn:example:i57'('urn:example:i9', 'urn:example:i87'). +'urn:example:i58'('urn:example:i0', 'urn:example:i90'). +'urn:example:i58'('urn:example:i10', 'urn:example:i48'). +'urn:example:i58'('urn:example:i10', 'urn:example:i9'). +'urn:example:i58'('urn:example:i11', 'urn:example:i66'). +'urn:example:i58'('urn:example:i11', 'urn:example:i96'). +'urn:example:i58'('urn:example:i13', 'urn:example:i12'). +'urn:example:i58'('urn:example:i13', 'urn:example:i42'). +'urn:example:i58'('urn:example:i14', 'urn:example:i0'). +'urn:example:i58'('urn:example:i14', 'urn:example:i66'). +'urn:example:i58'('urn:example:i14', 'urn:example:i78'). +'urn:example:i58'('urn:example:i15', 'urn:example:i0'). +'urn:example:i58'('urn:example:i16', 'urn:example:i3'). +'urn:example:i58'('urn:example:i18', 'urn:example:i18'). +'urn:example:i58'('urn:example:i1', 'urn:example:i63'). +'urn:example:i58'('urn:example:i1', 'urn:example:i96'). +'urn:example:i58'('urn:example:i20', 'urn:example:i78'). +'urn:example:i58'('urn:example:i20', 'urn:example:i99'). +'urn:example:i58'('urn:example:i23', 'urn:example:i36'). +'urn:example:i58'('urn:example:i27', 'urn:example:i39'). +'urn:example:i58'('urn:example:i28', 'urn:example:i21'). +'urn:example:i58'('urn:example:i28', 'urn:example:i75'). +'urn:example:i58'('urn:example:i2', 'urn:example:i72'). +'urn:example:i58'('urn:example:i30', 'urn:example:i12'). +'urn:example:i58'('urn:example:i32', 'urn:example:i36'). +'urn:example:i58'('urn:example:i32', 'urn:example:i39'). +'urn:example:i58'('urn:example:i32', 'urn:example:i84'). +'urn:example:i58'('urn:example:i33', 'urn:example:i75'). +'urn:example:i58'('urn:example:i34', 'urn:example:i42'). +'urn:example:i58'('urn:example:i35', 'urn:example:i63'). +'urn:example:i58'('urn:example:i38', 'urn:example:i81'). +'urn:example:i58'('urn:example:i39', 'urn:example:i3'). +'urn:example:i58'('urn:example:i41', 'urn:example:i9'). +'urn:example:i58'('urn:example:i42', 'urn:example:i33'). +'urn:example:i58'('urn:example:i42', 'urn:example:i36'). +'urn:example:i58'('urn:example:i42', 'urn:example:i63'). +'urn:example:i58'('urn:example:i44', 'urn:example:i66'). +'urn:example:i58'('urn:example:i44', 'urn:example:i75'). +'urn:example:i58'('urn:example:i45', 'urn:example:i12'). +'urn:example:i58'('urn:example:i46', 'urn:example:i66'). +'urn:example:i58'('urn:example:i46', 'urn:example:i90'). +'urn:example:i58'('urn:example:i47', 'urn:example:i27'). +'urn:example:i58'('urn:example:i47', 'urn:example:i60'). +'urn:example:i58'('urn:example:i49', 'urn:example:i69'). +'urn:example:i58'('urn:example:i4', 'urn:example:i9'). +'urn:example:i58'('urn:example:i50', 'urn:example:i30'). +'urn:example:i58'('urn:example:i50', 'urn:example:i39'). +'urn:example:i58'('urn:example:i50', 'urn:example:i78'). +'urn:example:i58'('urn:example:i50', 'urn:example:i78'). +'urn:example:i58'('urn:example:i51', 'urn:example:i84'). +'urn:example:i58'('urn:example:i53', 'urn:example:i63'). +'urn:example:i58'('urn:example:i54', 'urn:example:i33'). +'urn:example:i58'('urn:example:i54', 'urn:example:i54'). +'urn:example:i58'('urn:example:i56', 'urn:example:i63'). +'urn:example:i58'('urn:example:i56', 'urn:example:i87'). +'urn:example:i58'('urn:example:i59', 'urn:example:i12'). +'urn:example:i58'('urn:example:i59', 'urn:example:i36'). +'urn:example:i58'('urn:example:i5', 'urn:example:i24'). +'urn:example:i58'('urn:example:i60', 'urn:example:i30'). +'urn:example:i58'('urn:example:i60', 'urn:example:i96'). +'urn:example:i58'('urn:example:i61', 'urn:example:i12'). +'urn:example:i58'('urn:example:i61', 'urn:example:i45'). +'urn:example:i58'('urn:example:i62', 'urn:example:i36'). +'urn:example:i58'('urn:example:i66', 'urn:example:i24'). +'urn:example:i58'('urn:example:i66', 'urn:example:i63'). +'urn:example:i58'('urn:example:i67', 'urn:example:i18'). +'urn:example:i58'('urn:example:i67', 'urn:example:i27'). +'urn:example:i58'('urn:example:i67', 'urn:example:i3'). +'urn:example:i58'('urn:example:i67', 'urn:example:i6'). +'urn:example:i58'('urn:example:i69', 'urn:example:i63'). +'urn:example:i58'('urn:example:i6', 'urn:example:i45'). +'urn:example:i58'('urn:example:i70', 'urn:example:i60'). +'urn:example:i58'('urn:example:i71', 'urn:example:i45'). +'urn:example:i58'('urn:example:i71', 'urn:example:i60'). +'urn:example:i58'('urn:example:i71', 'urn:example:i6'). +'urn:example:i58'('urn:example:i71', 'urn:example:i72'). +'urn:example:i58'('urn:example:i72', 'urn:example:i84'). +'urn:example:i58'('urn:example:i74', 'urn:example:i93'). +'urn:example:i58'('urn:example:i78', 'urn:example:i90'). +'urn:example:i58'('urn:example:i78', 'urn:example:i9'). +'urn:example:i58'('urn:example:i79', 'urn:example:i51'). +'urn:example:i58'('urn:example:i79', 'urn:example:i57'). +'urn:example:i58'('urn:example:i81', 'urn:example:i15'). +'urn:example:i58'('urn:example:i81', 'urn:example:i90'). +'urn:example:i58'('urn:example:i81', 'urn:example:i90'). +'urn:example:i58'('urn:example:i82', 'urn:example:i66'). +'urn:example:i58'('urn:example:i84', 'urn:example:i87'). +'urn:example:i58'('urn:example:i87', 'urn:example:i12'). +'urn:example:i58'('urn:example:i87', 'urn:example:i3'). +'urn:example:i58'('urn:example:i87', 'urn:example:i9'). +'urn:example:i58'('urn:example:i88', 'urn:example:i0'). +'urn:example:i58'('urn:example:i88', 'urn:example:i27'). +'urn:example:i58'('urn:example:i89', 'urn:example:i75'). +'urn:example:i58'('urn:example:i8', 'urn:example:i36'). +'urn:example:i58'('urn:example:i8', 'urn:example:i78'). +'urn:example:i58'('urn:example:i90', 'urn:example:i33'). +'urn:example:i58'('urn:example:i91', 'urn:example:i6'). +'urn:example:i58'('urn:example:i93', 'urn:example:i72'). +'urn:example:i58'('urn:example:i95', 'urn:example:i3'). +'urn:example:i58'('urn:example:i96', 'urn:example:i12'). +'urn:example:i58'('urn:example:i96', 'urn:example:i63'). +'urn:example:i58'('urn:example:i97', 'urn:example:i21'). +'urn:example:i58'('urn:example:i97', 'urn:example:i84'). +'urn:example:i58'('urn:example:i98', 'urn:example:i75'). +'urn:example:i58'('urn:example:i99', 'urn:example:i42'). +'urn:example:i58'('urn:example:i99', 'urn:example:i93'). +'urn:example:i58'('urn:example:i9', 'urn:example:i57'). +'urn:example:i59'('urn:example:i10', 'urn:example:i45'). +'urn:example:i59'('urn:example:i11', 'urn:example:i42'). +'urn:example:i59'('urn:example:i12', 'urn:example:i39'). +'urn:example:i59'('urn:example:i12', 'urn:example:i42'). +'urn:example:i59'('urn:example:i15', 'urn:example:i66'). +'urn:example:i59'('urn:example:i16', 'urn:example:i6'). +'urn:example:i59'('urn:example:i17', 'urn:example:i63'). +'urn:example:i59'('urn:example:i17', 'urn:example:i6'). +'urn:example:i59'('urn:example:i19', 'urn:example:i39'). +'urn:example:i59'('urn:example:i1', 'urn:example:i87'). +'urn:example:i59'('urn:example:i21', 'urn:example:i90'). +'urn:example:i59'('urn:example:i23', 'urn:example:i3'). +'urn:example:i59'('urn:example:i25', 'urn:example:i81'). +'urn:example:i59'('urn:example:i26', 'urn:example:i6'). +'urn:example:i59'('urn:example:i28', 'urn:example:i15'). +'urn:example:i59'('urn:example:i28', 'urn:example:i57'). +'urn:example:i59'('urn:example:i29', 'urn:example:i3'). +'urn:example:i59'('urn:example:i29', 'urn:example:i84'). +'urn:example:i59'('urn:example:i2', 'urn:example:i33'). +'urn:example:i59'('urn:example:i30', 'urn:example:i84'). +'urn:example:i59'('urn:example:i31', 'urn:example:i12'). +'urn:example:i59'('urn:example:i32', 'urn:example:i30'). +'urn:example:i59'('urn:example:i33', 'urn:example:i96'). +'urn:example:i59'('urn:example:i35', 'urn:example:i27'). +'urn:example:i59'('urn:example:i35', 'urn:example:i84'). +'urn:example:i59'('urn:example:i36', 'urn:example:i0'). +'urn:example:i59'('urn:example:i36', 'urn:example:i18'). +'urn:example:i59'('urn:example:i37', 'urn:example:i69'). +'urn:example:i59'('urn:example:i38', 'urn:example:i15'). +'urn:example:i59'('urn:example:i38', 'urn:example:i18'). +'urn:example:i59'('urn:example:i3', 'urn:example:i39'). +'urn:example:i59'('urn:example:i42', 'urn:example:i18'). +'urn:example:i59'('urn:example:i42', 'urn:example:i24'). +'urn:example:i59'('urn:example:i44', 'urn:example:i90'). +'urn:example:i59'('urn:example:i45', 'urn:example:i57'). +'urn:example:i59'('urn:example:i47', 'urn:example:i15'). +'urn:example:i59'('urn:example:i48', 'urn:example:i48'). +'urn:example:i59'('urn:example:i4', 'urn:example:i39'). +'urn:example:i59'('urn:example:i50', 'urn:example:i66'). +'urn:example:i59'('urn:example:i51', 'urn:example:i84'). +'urn:example:i59'('urn:example:i54', 'urn:example:i27'). +'urn:example:i59'('urn:example:i54', 'urn:example:i3'). +'urn:example:i59'('urn:example:i54', 'urn:example:i93'). +'urn:example:i59'('urn:example:i5', 'urn:example:i45'). +'urn:example:i59'('urn:example:i5', 'urn:example:i87'). +'urn:example:i59'('urn:example:i60', 'urn:example:i81'). +'urn:example:i59'('urn:example:i61', 'urn:example:i42'). +'urn:example:i59'('urn:example:i61', 'urn:example:i48'). +'urn:example:i59'('urn:example:i64', 'urn:example:i6'). +'urn:example:i59'('urn:example:i67', 'urn:example:i45'). +'urn:example:i59'('urn:example:i68', 'urn:example:i63'). +'urn:example:i59'('urn:example:i70', 'urn:example:i57'). +'urn:example:i59'('urn:example:i71', 'urn:example:i45'). +'urn:example:i59'('urn:example:i72', 'urn:example:i6'). +'urn:example:i59'('urn:example:i72', 'urn:example:i78'). +'urn:example:i59'('urn:example:i74', 'urn:example:i33'). +'urn:example:i59'('urn:example:i74', 'urn:example:i3'). +'urn:example:i59'('urn:example:i75', 'urn:example:i60'). +'urn:example:i59'('urn:example:i76', 'urn:example:i24'). +'urn:example:i59'('urn:example:i76', 'urn:example:i48'). +'urn:example:i59'('urn:example:i78', 'urn:example:i30'). +'urn:example:i59'('urn:example:i78', 'urn:example:i33'). +'urn:example:i59'('urn:example:i79', 'urn:example:i30'). +'urn:example:i59'('urn:example:i7', 'urn:example:i6'). +'urn:example:i59'('urn:example:i80', 'urn:example:i75'). +'urn:example:i59'('urn:example:i81', 'urn:example:i33'). +'urn:example:i59'('urn:example:i81', 'urn:example:i36'). +'urn:example:i59'('urn:example:i85', 'urn:example:i36'). +'urn:example:i59'('urn:example:i86', 'urn:example:i93'). +'urn:example:i59'('urn:example:i87', 'urn:example:i24'). +'urn:example:i59'('urn:example:i87', 'urn:example:i27'). +'urn:example:i59'('urn:example:i88', 'urn:example:i57'). +'urn:example:i59'('urn:example:i89', 'urn:example:i27'). +'urn:example:i59'('urn:example:i8', 'urn:example:i57'). +'urn:example:i59'('urn:example:i8', 'urn:example:i90'). +'urn:example:i59'('urn:example:i8', 'urn:example:i96'). +'urn:example:i59'('urn:example:i91', 'urn:example:i90'). +'urn:example:i59'('urn:example:i94', 'urn:example:i21'). +'urn:example:i59'('urn:example:i96', 'urn:example:i18'). +'urn:example:i59'('urn:example:i96', 'urn:example:i84'). +'urn:example:i59'('urn:example:i96', 'urn:example:i87'). +'urn:example:i59'('urn:example:i98', 'urn:example:i12'). +'urn:example:i59'('urn:example:i99', 'urn:example:i87'). +'urn:example:i59'('urn:example:i9', 'urn:example:i27'). +'urn:example:i59'('urn:example:i9', 'urn:example:i54'). +'urn:example:i5'('urn:example:i0', 'urn:example:i51'). +'urn:example:i5'('urn:example:i0', 'urn:example:i63'). +'urn:example:i5'('urn:example:i0', 'urn:example:i81'). +'urn:example:i5'('urn:example:i11', 'urn:example:i75'). +'urn:example:i5'('urn:example:i11', 'urn:example:i75'). +'urn:example:i5'('urn:example:i12', 'urn:example:i57'). +'urn:example:i5'('urn:example:i15', 'urn:example:i60'). +'urn:example:i5'('urn:example:i15', 'urn:example:i81'). +'urn:example:i5'('urn:example:i16', 'urn:example:i57'). +'urn:example:i5'('urn:example:i17', 'urn:example:i42'). +'urn:example:i5'('urn:example:i18', 'urn:example:i21'). +'urn:example:i5'('urn:example:i18', 'urn:example:i75'). +'urn:example:i5'('urn:example:i18', 'urn:example:i90'). +'urn:example:i5'('urn:example:i21', 'urn:example:i57'). +'urn:example:i5'('urn:example:i21', 'urn:example:i63'). +'urn:example:i5'('urn:example:i22', 'urn:example:i57'). +'urn:example:i5'('urn:example:i23', 'urn:example:i21'). +'urn:example:i5'('urn:example:i23', 'urn:example:i9'). +'urn:example:i5'('urn:example:i26', 'urn:example:i12'). +'urn:example:i5'('urn:example:i26', 'urn:example:i12'). +'urn:example:i5'('urn:example:i27', 'urn:example:i0'). +'urn:example:i5'('urn:example:i27', 'urn:example:i24'). +'urn:example:i5'('urn:example:i27', 'urn:example:i96'). +'urn:example:i5'('urn:example:i28', 'urn:example:i12'). +'urn:example:i5'('urn:example:i28', 'urn:example:i75'). +'urn:example:i5'('urn:example:i29', 'urn:example:i45'). +'urn:example:i5'('urn:example:i31', 'urn:example:i30'). +'urn:example:i5'('urn:example:i31', 'urn:example:i42'). +'urn:example:i5'('urn:example:i32', 'urn:example:i72'). +'urn:example:i5'('urn:example:i33', 'urn:example:i12'). +'urn:example:i5'('urn:example:i33', 'urn:example:i60'). +'urn:example:i5'('urn:example:i33', 'urn:example:i96'). +'urn:example:i5'('urn:example:i33', 'urn:example:i99'). +'urn:example:i5'('urn:example:i34', 'urn:example:i45'). +'urn:example:i5'('urn:example:i34', 'urn:example:i72'). +'urn:example:i5'('urn:example:i35', 'urn:example:i48'). +'urn:example:i5'('urn:example:i36', 'urn:example:i78'). +'urn:example:i5'('urn:example:i38', 'urn:example:i60'). +'urn:example:i5'('urn:example:i39', 'urn:example:i96'). +'urn:example:i5'('urn:example:i3', 'urn:example:i30'). +'urn:example:i5'('urn:example:i40', 'urn:example:i15'). +'urn:example:i5'('urn:example:i40', 'urn:example:i36'). +'urn:example:i5'('urn:example:i40', 'urn:example:i45'). +'urn:example:i5'('urn:example:i41', 'urn:example:i12'). +'urn:example:i5'('urn:example:i41', 'urn:example:i75'). +'urn:example:i5'('urn:example:i42', 'urn:example:i18'). +'urn:example:i5'('urn:example:i44', 'urn:example:i0'). +'urn:example:i5'('urn:example:i44', 'urn:example:i30'). +'urn:example:i5'('urn:example:i45', 'urn:example:i69'). +'urn:example:i5'('urn:example:i47', 'urn:example:i87'). +'urn:example:i5'('urn:example:i48', 'urn:example:i0'). +'urn:example:i5'('urn:example:i49', 'urn:example:i12'). +'urn:example:i5'('urn:example:i50', 'urn:example:i39'). +'urn:example:i5'('urn:example:i50', 'urn:example:i45'). +'urn:example:i5'('urn:example:i50', 'urn:example:i9'). +'urn:example:i5'('urn:example:i51', 'urn:example:i75'). +'urn:example:i5'('urn:example:i52', 'urn:example:i63'). +'urn:example:i5'('urn:example:i54', 'urn:example:i51'). +'urn:example:i5'('urn:example:i54', 'urn:example:i96'). +'urn:example:i5'('urn:example:i56', 'urn:example:i66'). +'urn:example:i5'('urn:example:i57', 'urn:example:i39'). +'urn:example:i5'('urn:example:i58', 'urn:example:i0'). +'urn:example:i5'('urn:example:i58', 'urn:example:i12'). +'urn:example:i5'('urn:example:i5', 'urn:example:i60'). +'urn:example:i5'('urn:example:i5', 'urn:example:i87'). +'urn:example:i5'('urn:example:i60', 'urn:example:i15'). +'urn:example:i5'('urn:example:i60', 'urn:example:i39'). +'urn:example:i5'('urn:example:i60', 'urn:example:i48'). +'urn:example:i5'('urn:example:i62', 'urn:example:i57'). +'urn:example:i5'('urn:example:i63', 'urn:example:i36'). +'urn:example:i5'('urn:example:i63', 'urn:example:i81'). +'urn:example:i5'('urn:example:i63', 'urn:example:i9'). +'urn:example:i5'('urn:example:i65', 'urn:example:i0'). +'urn:example:i5'('urn:example:i68', 'urn:example:i21'). +'urn:example:i5'('urn:example:i69', 'urn:example:i48'). +'urn:example:i5'('urn:example:i6', 'urn:example:i18'). +'urn:example:i5'('urn:example:i6', 'urn:example:i66'). +'urn:example:i5'('urn:example:i70', 'urn:example:i78'). +'urn:example:i5'('urn:example:i71', 'urn:example:i27'). +'urn:example:i5'('urn:example:i71', 'urn:example:i33'). +'urn:example:i5'('urn:example:i72', 'urn:example:i90'). +'urn:example:i5'('urn:example:i73', 'urn:example:i27'). +'urn:example:i5'('urn:example:i74', 'urn:example:i18'). +'urn:example:i5'('urn:example:i74', 'urn:example:i30'). +'urn:example:i5'('urn:example:i74', 'urn:example:i48'). +'urn:example:i5'('urn:example:i74', 'urn:example:i75'). +'urn:example:i5'('urn:example:i76', 'urn:example:i0'). +'urn:example:i5'('urn:example:i76', 'urn:example:i51'). +'urn:example:i5'('urn:example:i76', 'urn:example:i78'). +'urn:example:i5'('urn:example:i76', 'urn:example:i87'). +'urn:example:i5'('urn:example:i77', 'urn:example:i18'). +'urn:example:i5'('urn:example:i77', 'urn:example:i87'). +'urn:example:i5'('urn:example:i78', 'urn:example:i42'). +'urn:example:i5'('urn:example:i78', 'urn:example:i90'). +'urn:example:i5'('urn:example:i79', 'urn:example:i0'). +'urn:example:i5'('urn:example:i79', 'urn:example:i75'). +'urn:example:i5'('urn:example:i80', 'urn:example:i69'). +'urn:example:i5'('urn:example:i80', 'urn:example:i69'). +'urn:example:i5'('urn:example:i81', 'urn:example:i15'). +'urn:example:i5'('urn:example:i83', 'urn:example:i36'). +'urn:example:i5'('urn:example:i84', 'urn:example:i30'). +'urn:example:i5'('urn:example:i84', 'urn:example:i48'). +'urn:example:i5'('urn:example:i85', 'urn:example:i12'). +'urn:example:i5'('urn:example:i86', 'urn:example:i48'). +'urn:example:i5'('urn:example:i86', 'urn:example:i84'). +'urn:example:i5'('urn:example:i88', 'urn:example:i48'). +'urn:example:i5'('urn:example:i89', 'urn:example:i12'). +'urn:example:i5'('urn:example:i8', 'urn:example:i18'). +'urn:example:i5'('urn:example:i8', 'urn:example:i81'). +'urn:example:i5'('urn:example:i8', 'urn:example:i90'). +'urn:example:i5'('urn:example:i92', 'urn:example:i69'). +'urn:example:i5'('urn:example:i93', 'urn:example:i81'). +'urn:example:i5'('urn:example:i93', 'urn:example:i9'). +'urn:example:i5'('urn:example:i95', 'urn:example:i57'). +'urn:example:i5'('urn:example:i95', 'urn:example:i96'). +'urn:example:i5'('urn:example:i96', 'urn:example:i87'). +'urn:example:i5'('urn:example:i97', 'urn:example:i27'). +'urn:example:i5'('urn:example:i97', 'urn:example:i36'). +'urn:example:i5'('urn:example:i9', 'urn:example:i0'). +'urn:example:i5'('urn:example:i9', 'urn:example:i39'). +'urn:example:i5'('urn:example:i9', 'urn:example:i93'). +'urn:example:i60'('urn:example:i0', 'urn:example:i18'). +'urn:example:i60'('urn:example:i0', 'urn:example:i54'). +'urn:example:i60'('urn:example:i0', 'urn:example:i75'). +'urn:example:i60'('urn:example:i10', 'urn:example:i66'). +'urn:example:i60'('urn:example:i12', 'urn:example:i63'). +'urn:example:i60'('urn:example:i14', 'urn:example:i6'). +'urn:example:i60'('urn:example:i18', 'urn:example:i72'). +'urn:example:i60'('urn:example:i19', 'urn:example:i15'). +'urn:example:i60'('urn:example:i20', 'urn:example:i90'). +'urn:example:i60'('urn:example:i22', 'urn:example:i9'). +'urn:example:i60'('urn:example:i23', 'urn:example:i0'). +'urn:example:i60'('urn:example:i24', 'urn:example:i12'). +'urn:example:i60'('urn:example:i25', 'urn:example:i42'). +'urn:example:i60'('urn:example:i27', 'urn:example:i39'). +'urn:example:i60'('urn:example:i27', 'urn:example:i81'). +'urn:example:i60'('urn:example:i29', 'urn:example:i9'). +'urn:example:i60'('urn:example:i30', 'urn:example:i24'). +'urn:example:i60'('urn:example:i30', 'urn:example:i9'). +'urn:example:i60'('urn:example:i33', 'urn:example:i12'). +'urn:example:i60'('urn:example:i34', 'urn:example:i27'). +'urn:example:i60'('urn:example:i34', 'urn:example:i84'). +'urn:example:i60'('urn:example:i35', 'urn:example:i12'). +'urn:example:i60'('urn:example:i35', 'urn:example:i12'). +'urn:example:i60'('urn:example:i35', 'urn:example:i84'). +'urn:example:i60'('urn:example:i35', 'urn:example:i87'). +'urn:example:i60'('urn:example:i36', 'urn:example:i39'). +'urn:example:i60'('urn:example:i36', 'urn:example:i60'). +'urn:example:i60'('urn:example:i37', 'urn:example:i15'). +'urn:example:i60'('urn:example:i37', 'urn:example:i54'). +'urn:example:i60'('urn:example:i37', 'urn:example:i63'). +'urn:example:i60'('urn:example:i37', 'urn:example:i81'). +'urn:example:i60'('urn:example:i39', 'urn:example:i48'). +'urn:example:i60'('urn:example:i39', 'urn:example:i78'). +'urn:example:i60'('urn:example:i40', 'urn:example:i78'). +'urn:example:i60'('urn:example:i41', 'urn:example:i39'). +'urn:example:i60'('urn:example:i41', 'urn:example:i3'). +'urn:example:i60'('urn:example:i42', 'urn:example:i45'). +'urn:example:i60'('urn:example:i43', 'urn:example:i63'). +'urn:example:i60'('urn:example:i44', 'urn:example:i69'). +'urn:example:i60'('urn:example:i45', 'urn:example:i99'). +'urn:example:i60'('urn:example:i48', 'urn:example:i42'). +'urn:example:i60'('urn:example:i4', 'urn:example:i21'). +'urn:example:i60'('urn:example:i4', 'urn:example:i30'). +'urn:example:i60'('urn:example:i52', 'urn:example:i54'). +'urn:example:i60'('urn:example:i53', 'urn:example:i24'). +'urn:example:i60'('urn:example:i54', 'urn:example:i63'). +'urn:example:i60'('urn:example:i54', 'urn:example:i81'). +'urn:example:i60'('urn:example:i55', 'urn:example:i87'). +'urn:example:i60'('urn:example:i58', 'urn:example:i75'). +'urn:example:i60'('urn:example:i58', 'urn:example:i81'). +'urn:example:i60'('urn:example:i59', 'urn:example:i66'). +'urn:example:i60'('urn:example:i59', 'urn:example:i66'). +'urn:example:i60'('urn:example:i62', 'urn:example:i87'). +'urn:example:i60'('urn:example:i63', 'urn:example:i93'). +'urn:example:i60'('urn:example:i64', 'urn:example:i21'). +'urn:example:i60'('urn:example:i64', 'urn:example:i90'). +'urn:example:i60'('urn:example:i68', 'urn:example:i78'). +'urn:example:i60'('urn:example:i6', 'urn:example:i21'). +'urn:example:i60'('urn:example:i6', 'urn:example:i3'). +'urn:example:i60'('urn:example:i6', 'urn:example:i63'). +'urn:example:i60'('urn:example:i70', 'urn:example:i12'). +'urn:example:i60'('urn:example:i70', 'urn:example:i33'). +'urn:example:i60'('urn:example:i70', 'urn:example:i66'). +'urn:example:i60'('urn:example:i71', 'urn:example:i51'). +'urn:example:i60'('urn:example:i72', 'urn:example:i57'). +'urn:example:i60'('urn:example:i73', 'urn:example:i45'). +'urn:example:i60'('urn:example:i76', 'urn:example:i18'). +'urn:example:i60'('urn:example:i76', 'urn:example:i63'). +'urn:example:i60'('urn:example:i77', 'urn:example:i57'). +'urn:example:i60'('urn:example:i78', 'urn:example:i6'). +'urn:example:i60'('urn:example:i80', 'urn:example:i75'). +'urn:example:i60'('urn:example:i82', 'urn:example:i42'). +'urn:example:i60'('urn:example:i83', 'urn:example:i81'). +'urn:example:i60'('urn:example:i84', 'urn:example:i30'). +'urn:example:i60'('urn:example:i84', 'urn:example:i6'). +'urn:example:i60'('urn:example:i86', 'urn:example:i12'). +'urn:example:i60'('urn:example:i87', 'urn:example:i60'). +'urn:example:i60'('urn:example:i88', 'urn:example:i3'). +'urn:example:i60'('urn:example:i88', 'urn:example:i81'). +'urn:example:i60'('urn:example:i89', 'urn:example:i87'). +'urn:example:i60'('urn:example:i90', 'urn:example:i0'). +'urn:example:i60'('urn:example:i90', 'urn:example:i51'). +'urn:example:i60'('urn:example:i92', 'urn:example:i0'). +'urn:example:i60'('urn:example:i93', 'urn:example:i27'). +'urn:example:i60'('urn:example:i96', 'urn:example:i78'). +'urn:example:i60'('urn:example:i96', 'urn:example:i90'). +'urn:example:i60'('urn:example:i99', 'urn:example:i33'). +'urn:example:i60'('urn:example:i9', 'urn:example:i72'). +'urn:example:i61'('urn:example:i0', 'urn:example:i30'). +'urn:example:i61'('urn:example:i0', 'urn:example:i72'). +'urn:example:i61'('urn:example:i0', 'urn:example:i93'). +'urn:example:i61'('urn:example:i10', 'urn:example:i24'). +'urn:example:i61'('urn:example:i10', 'urn:example:i51'). +'urn:example:i61'('urn:example:i11', 'urn:example:i84'). +'urn:example:i61'('urn:example:i13', 'urn:example:i75'). +'urn:example:i61'('urn:example:i14', 'urn:example:i57'). +'urn:example:i61'('urn:example:i15', 'urn:example:i45'). +'urn:example:i61'('urn:example:i1', 'urn:example:i15'). +'urn:example:i61'('urn:example:i22', 'urn:example:i72'). +'urn:example:i61'('urn:example:i23', 'urn:example:i18'). +'urn:example:i61'('urn:example:i26', 'urn:example:i36'). +'urn:example:i61'('urn:example:i2', 'urn:example:i78'). +'urn:example:i61'('urn:example:i30', 'urn:example:i96'). +'urn:example:i61'('urn:example:i30', 'urn:example:i9'). +'urn:example:i61'('urn:example:i31', 'urn:example:i9'). +'urn:example:i61'('urn:example:i34', 'urn:example:i57'). +'urn:example:i61'('urn:example:i35', 'urn:example:i12'). +'urn:example:i61'('urn:example:i39', 'urn:example:i27'). +'urn:example:i61'('urn:example:i3', 'urn:example:i9'). +'urn:example:i61'('urn:example:i40', 'urn:example:i42'). +'urn:example:i61'('urn:example:i40', 'urn:example:i87'). +'urn:example:i61'('urn:example:i41', 'urn:example:i69'). +'urn:example:i61'('urn:example:i42', 'urn:example:i15'). +'urn:example:i61'('urn:example:i44', 'urn:example:i12'). +'urn:example:i61'('urn:example:i48', 'urn:example:i66'). +'urn:example:i61'('urn:example:i49', 'urn:example:i30'). +'urn:example:i61'('urn:example:i49', 'urn:example:i54'). +'urn:example:i61'('urn:example:i49', 'urn:example:i63'). +'urn:example:i61'('urn:example:i50', 'urn:example:i48'). +'urn:example:i61'('urn:example:i52', 'urn:example:i36'). +'urn:example:i61'('urn:example:i54', 'urn:example:i3'). +'urn:example:i61'('urn:example:i56', 'urn:example:i45'). +'urn:example:i61'('urn:example:i59', 'urn:example:i90'). +'urn:example:i61'('urn:example:i60', 'urn:example:i12'). +'urn:example:i61'('urn:example:i60', 'urn:example:i51'). +'urn:example:i61'('urn:example:i60', 'urn:example:i99'). +'urn:example:i61'('urn:example:i61', 'urn:example:i3'). +'urn:example:i61'('urn:example:i61', 'urn:example:i81'). +'urn:example:i61'('urn:example:i62', 'urn:example:i0'). +'urn:example:i61'('urn:example:i63', 'urn:example:i30'). +'urn:example:i61'('urn:example:i68', 'urn:example:i93'). +'urn:example:i61'('urn:example:i6', 'urn:example:i81'). +'urn:example:i61'('urn:example:i70', 'urn:example:i51'). +'urn:example:i61'('urn:example:i72', 'urn:example:i60'). +'urn:example:i61'('urn:example:i74', 'urn:example:i6'). +'urn:example:i61'('urn:example:i7', 'urn:example:i27'). +'urn:example:i61'('urn:example:i7', 'urn:example:i3'). +'urn:example:i61'('urn:example:i80', 'urn:example:i66'). +'urn:example:i61'('urn:example:i81', 'urn:example:i51'). +'urn:example:i61'('urn:example:i83', 'urn:example:i63'). +'urn:example:i61'('urn:example:i85', 'urn:example:i3'). +'urn:example:i61'('urn:example:i85', 'urn:example:i45'). +'urn:example:i61'('urn:example:i86', 'urn:example:i33'). +'urn:example:i61'('urn:example:i87', 'urn:example:i12'). +'urn:example:i61'('urn:example:i87', 'urn:example:i72'). +'urn:example:i61'('urn:example:i87', 'urn:example:i84'). +'urn:example:i61'('urn:example:i88', 'urn:example:i57'). +'urn:example:i61'('urn:example:i89', 'urn:example:i60'). +'urn:example:i61'('urn:example:i8', 'urn:example:i90'). +'urn:example:i61'('urn:example:i8', 'urn:example:i93'). +'urn:example:i61'('urn:example:i90', 'urn:example:i60'). +'urn:example:i61'('urn:example:i91', 'urn:example:i63'). +'urn:example:i61'('urn:example:i91', 'urn:example:i96'). +'urn:example:i61'('urn:example:i92', 'urn:example:i60'). +'urn:example:i61'('urn:example:i94', 'urn:example:i36'). +'urn:example:i61'('urn:example:i94', 'urn:example:i42'). +'urn:example:i61'('urn:example:i95', 'urn:example:i96'). +'urn:example:i61'('urn:example:i96', 'urn:example:i45'). +'urn:example:i61'('urn:example:i97', 'urn:example:i12'). +'urn:example:i61'('urn:example:i98', 'urn:example:i69'). +'urn:example:i61'('urn:example:i99', 'urn:example:i15'). +'urn:example:i62'('urn:example:i10', 'urn:example:i15'). +'urn:example:i62'('urn:example:i11', 'urn:example:i30'). +'urn:example:i62'('urn:example:i17', 'urn:example:i45'). +'urn:example:i62'('urn:example:i19', 'urn:example:i96'). +'urn:example:i62'('urn:example:i1', 'urn:example:i78'). +'urn:example:i62'('urn:example:i20', 'urn:example:i63'). +'urn:example:i62'('urn:example:i24', 'urn:example:i45'). +'urn:example:i62'('urn:example:i24', 'urn:example:i81'). +'urn:example:i62'('urn:example:i26', 'urn:example:i0'). +'urn:example:i62'('urn:example:i26', 'urn:example:i87'). +'urn:example:i62'('urn:example:i27', 'urn:example:i33'). +'urn:example:i62'('urn:example:i28', 'urn:example:i12'). +'urn:example:i62'('urn:example:i28', 'urn:example:i60'). +'urn:example:i62'('urn:example:i28', 'urn:example:i66'). +'urn:example:i62'('urn:example:i30', 'urn:example:i0'). +'urn:example:i62'('urn:example:i30', 'urn:example:i87'). +'urn:example:i62'('urn:example:i32', 'urn:example:i6'). +'urn:example:i62'('urn:example:i33', 'urn:example:i84'). +'urn:example:i62'('urn:example:i34', 'urn:example:i42'). +'urn:example:i62'('urn:example:i35', 'urn:example:i27'). +'urn:example:i62'('urn:example:i35', 'urn:example:i69'). +'urn:example:i62'('urn:example:i36', 'urn:example:i12'). +'urn:example:i62'('urn:example:i36', 'urn:example:i72'). +'urn:example:i62'('urn:example:i36', 'urn:example:i90'). +'urn:example:i62'('urn:example:i37', 'urn:example:i27'). +'urn:example:i62'('urn:example:i38', 'urn:example:i0'). +'urn:example:i62'('urn:example:i38', 'urn:example:i78'). +'urn:example:i62'('urn:example:i41', 'urn:example:i81'). +'urn:example:i62'('urn:example:i42', 'urn:example:i39'). +'urn:example:i62'('urn:example:i42', 'urn:example:i51'). +'urn:example:i62'('urn:example:i43', 'urn:example:i27'). +'urn:example:i62'('urn:example:i43', 'urn:example:i39'). +'urn:example:i62'('urn:example:i46', 'urn:example:i84'). +'urn:example:i62'('urn:example:i47', 'urn:example:i3'). +'urn:example:i62'('urn:example:i52', 'urn:example:i63'). +'urn:example:i62'('urn:example:i54', 'urn:example:i12'). +'urn:example:i62'('urn:example:i54', 'urn:example:i33'). +'urn:example:i62'('urn:example:i54', 'urn:example:i72'). +'urn:example:i62'('urn:example:i55', 'urn:example:i18'). +'urn:example:i62'('urn:example:i55', 'urn:example:i72'). +'urn:example:i62'('urn:example:i56', 'urn:example:i39'). +'urn:example:i62'('urn:example:i58', 'urn:example:i66'). +'urn:example:i62'('urn:example:i58', 'urn:example:i90'). +'urn:example:i62'('urn:example:i59', 'urn:example:i0'). +'urn:example:i62'('urn:example:i59', 'urn:example:i54'). +'urn:example:i62'('urn:example:i5', 'urn:example:i18'). +'urn:example:i62'('urn:example:i60', 'urn:example:i66'). +'urn:example:i62'('urn:example:i62', 'urn:example:i96'). +'urn:example:i62'('urn:example:i63', 'urn:example:i63'). +'urn:example:i62'('urn:example:i63', 'urn:example:i6'). +'urn:example:i62'('urn:example:i65', 'urn:example:i87'). +'urn:example:i62'('urn:example:i66', 'urn:example:i96'). +'urn:example:i62'('urn:example:i69', 'urn:example:i30'). +'urn:example:i62'('urn:example:i69', 'urn:example:i33'). +'urn:example:i62'('urn:example:i69', 'urn:example:i63'). +'urn:example:i62'('urn:example:i69', 'urn:example:i72'). +'urn:example:i62'('urn:example:i71', 'urn:example:i36'). +'urn:example:i62'('urn:example:i72', 'urn:example:i0'). +'urn:example:i62'('urn:example:i72', 'urn:example:i45'). +'urn:example:i62'('urn:example:i73', 'urn:example:i33'). +'urn:example:i62'('urn:example:i76', 'urn:example:i51'). +'urn:example:i62'('urn:example:i77', 'urn:example:i3'). +'urn:example:i62'('urn:example:i79', 'urn:example:i78'). +'urn:example:i62'('urn:example:i7', 'urn:example:i18'). +'urn:example:i62'('urn:example:i7', 'urn:example:i3'). +'urn:example:i62'('urn:example:i7', 'urn:example:i45'). +'urn:example:i62'('urn:example:i7', 'urn:example:i54'). +'urn:example:i62'('urn:example:i7', 'urn:example:i54'). +'urn:example:i62'('urn:example:i80', 'urn:example:i12'). +'urn:example:i62'('urn:example:i80', 'urn:example:i36'). +'urn:example:i62'('urn:example:i80', 'urn:example:i54'). +'urn:example:i62'('urn:example:i81', 'urn:example:i24'). +'urn:example:i62'('urn:example:i81', 'urn:example:i81'). +'urn:example:i62'('urn:example:i84', 'urn:example:i36'). +'urn:example:i62'('urn:example:i85', 'urn:example:i72'). +'urn:example:i62'('urn:example:i86', 'urn:example:i30'). +'urn:example:i62'('urn:example:i86', 'urn:example:i87'). +'urn:example:i62'('urn:example:i88', 'urn:example:i93'). +'urn:example:i62'('urn:example:i88', 'urn:example:i99'). +'urn:example:i62'('urn:example:i89', 'urn:example:i30'). +'urn:example:i62'('urn:example:i89', 'urn:example:i3'). +'urn:example:i62'('urn:example:i90', 'urn:example:i24'). +'urn:example:i62'('urn:example:i91', 'urn:example:i78'). +'urn:example:i62'('urn:example:i92', 'urn:example:i33'). +'urn:example:i62'('urn:example:i92', 'urn:example:i81'). +'urn:example:i62'('urn:example:i93', 'urn:example:i18'). +'urn:example:i62'('urn:example:i93', 'urn:example:i63'). +'urn:example:i62'('urn:example:i94', 'urn:example:i72'). +'urn:example:i62'('urn:example:i95', 'urn:example:i84'). +'urn:example:i62'('urn:example:i98', 'urn:example:i78'). +'urn:example:i62'('urn:example:i99', 'urn:example:i72'). +'urn:example:i63'('urn:example:i0', 'urn:example:i63'). +'urn:example:i63'('urn:example:i12', 'urn:example:i24'). +'urn:example:i63'('urn:example:i12', 'urn:example:i48'). +'urn:example:i63'('urn:example:i12', 'urn:example:i90'). +'urn:example:i63'('urn:example:i13', 'urn:example:i3'). +'urn:example:i63'('urn:example:i16', 'urn:example:i12'). +'urn:example:i63'('urn:example:i16', 'urn:example:i48'). +'urn:example:i63'('urn:example:i17', 'urn:example:i33'). +'urn:example:i63'('urn:example:i17', 'urn:example:i90'). +'urn:example:i63'('urn:example:i18', 'urn:example:i57'). +'urn:example:i63'('urn:example:i18', 'urn:example:i96'). +'urn:example:i63'('urn:example:i19', 'urn:example:i33'). +'urn:example:i63'('urn:example:i19', 'urn:example:i93'). +'urn:example:i63'('urn:example:i1', 'urn:example:i33'). +'urn:example:i63'('urn:example:i20', 'urn:example:i45'). +'urn:example:i63'('urn:example:i20', 'urn:example:i63'). +'urn:example:i63'('urn:example:i20', 'urn:example:i69'). +'urn:example:i63'('urn:example:i21', 'urn:example:i87'). +'urn:example:i63'('urn:example:i22', 'urn:example:i36'). +'urn:example:i63'('urn:example:i23', 'urn:example:i75'). +'urn:example:i63'('urn:example:i24', 'urn:example:i57'). +'urn:example:i63'('urn:example:i25', 'urn:example:i69'). +'urn:example:i63'('urn:example:i25', 'urn:example:i84'). +'urn:example:i63'('urn:example:i26', 'urn:example:i12'). +'urn:example:i63'('urn:example:i26', 'urn:example:i12'). +'urn:example:i63'('urn:example:i27', 'urn:example:i78'). +'urn:example:i63'('urn:example:i29', 'urn:example:i54'). +'urn:example:i63'('urn:example:i30', 'urn:example:i90'). +'urn:example:i63'('urn:example:i32', 'urn:example:i60'). +'urn:example:i63'('urn:example:i32', 'urn:example:i60'). +'urn:example:i63'('urn:example:i34', 'urn:example:i93'). +'urn:example:i63'('urn:example:i35', 'urn:example:i24'). +'urn:example:i63'('urn:example:i35', 'urn:example:i24'). +'urn:example:i63'('urn:example:i35', 'urn:example:i51'). +'urn:example:i63'('urn:example:i36', 'urn:example:i48'). +'urn:example:i63'('urn:example:i38', 'urn:example:i0'). +'urn:example:i63'('urn:example:i39', 'urn:example:i48'). +'urn:example:i63'('urn:example:i39', 'urn:example:i57'). +'urn:example:i63'('urn:example:i3', 'urn:example:i84'). +'urn:example:i63'('urn:example:i3', 'urn:example:i87'). +'urn:example:i63'('urn:example:i40', 'urn:example:i51'). +'urn:example:i63'('urn:example:i40', 'urn:example:i60'). +'urn:example:i63'('urn:example:i40', 'urn:example:i63'). +'urn:example:i63'('urn:example:i40', 'urn:example:i84'). +'urn:example:i63'('urn:example:i40', 'urn:example:i99'). +'urn:example:i63'('urn:example:i41', 'urn:example:i57'). +'urn:example:i63'('urn:example:i41', 'urn:example:i72'). +'urn:example:i63'('urn:example:i42', 'urn:example:i9'). +'urn:example:i63'('urn:example:i44', 'urn:example:i57'). +'urn:example:i63'('urn:example:i46', 'urn:example:i39'). +'urn:example:i63'('urn:example:i46', 'urn:example:i39'). +'urn:example:i63'('urn:example:i46', 'urn:example:i42'). +'urn:example:i63'('urn:example:i46', 'urn:example:i66'). +'urn:example:i63'('urn:example:i46', 'urn:example:i6'). +'urn:example:i63'('urn:example:i47', 'urn:example:i27'). +'urn:example:i63'('urn:example:i48', 'urn:example:i63'). +'urn:example:i63'('urn:example:i49', 'urn:example:i21'). +'urn:example:i63'('urn:example:i49', 'urn:example:i78'). +'urn:example:i63'('urn:example:i4', 'urn:example:i0'). +'urn:example:i63'('urn:example:i4', 'urn:example:i27'). +'urn:example:i63'('urn:example:i50', 'urn:example:i30'). +'urn:example:i63'('urn:example:i51', 'urn:example:i12'). +'urn:example:i63'('urn:example:i53', 'urn:example:i21'). +'urn:example:i63'('urn:example:i53', 'urn:example:i84'). +'urn:example:i63'('urn:example:i53', 'urn:example:i90'). +'urn:example:i63'('urn:example:i54', 'urn:example:i96'). +'urn:example:i63'('urn:example:i55', 'urn:example:i12'). +'urn:example:i63'('urn:example:i56', 'urn:example:i18'). +'urn:example:i63'('urn:example:i56', 'urn:example:i18'). +'urn:example:i63'('urn:example:i57', 'urn:example:i96'). +'urn:example:i63'('urn:example:i58', 'urn:example:i12'). +'urn:example:i63'('urn:example:i5', 'urn:example:i60'). +'urn:example:i63'('urn:example:i62', 'urn:example:i78'). +'urn:example:i63'('urn:example:i63', 'urn:example:i18'). +'urn:example:i63'('urn:example:i65', 'urn:example:i66'). +'urn:example:i63'('urn:example:i65', 'urn:example:i87'). +'urn:example:i63'('urn:example:i66', 'urn:example:i60'). +'urn:example:i63'('urn:example:i66', 'urn:example:i78'). +'urn:example:i63'('urn:example:i71', 'urn:example:i84'). +'urn:example:i63'('urn:example:i72', 'urn:example:i72'). +'urn:example:i63'('urn:example:i72', 'urn:example:i72'). +'urn:example:i63'('urn:example:i74', 'urn:example:i84'). +'urn:example:i63'('urn:example:i74', 'urn:example:i90'). +'urn:example:i63'('urn:example:i75', 'urn:example:i39'). +'urn:example:i63'('urn:example:i75', 'urn:example:i90'). +'urn:example:i63'('urn:example:i75', 'urn:example:i9'). +'urn:example:i63'('urn:example:i77', 'urn:example:i42'). +'urn:example:i63'('urn:example:i77', 'urn:example:i57'). +'urn:example:i63'('urn:example:i78', 'urn:example:i57'). +'urn:example:i63'('urn:example:i78', 'urn:example:i60'). +'urn:example:i63'('urn:example:i79', 'urn:example:i0'). +'urn:example:i63'('urn:example:i79', 'urn:example:i6'). +'urn:example:i63'('urn:example:i7', 'urn:example:i63'). +'urn:example:i63'('urn:example:i80', 'urn:example:i60'). +'urn:example:i63'('urn:example:i81', 'urn:example:i78'). +'urn:example:i63'('urn:example:i82', 'urn:example:i96'). +'urn:example:i63'('urn:example:i83', 'urn:example:i39'). +'urn:example:i63'('urn:example:i83', 'urn:example:i75'). +'urn:example:i63'('urn:example:i84', 'urn:example:i96'). +'urn:example:i63'('urn:example:i85', 'urn:example:i18'). +'urn:example:i63'('urn:example:i85', 'urn:example:i90'). +'urn:example:i63'('urn:example:i85', 'urn:example:i96'). +'urn:example:i63'('urn:example:i86', 'urn:example:i21'). +'urn:example:i63'('urn:example:i86', 'urn:example:i27'). +'urn:example:i63'('urn:example:i87', 'urn:example:i84'). +'urn:example:i63'('urn:example:i88', 'urn:example:i60'). +'urn:example:i63'('urn:example:i88', 'urn:example:i9'). +'urn:example:i63'('urn:example:i89', 'urn:example:i12'). +'urn:example:i63'('urn:example:i8', 'urn:example:i15'). +'urn:example:i63'('urn:example:i90', 'urn:example:i84'). +'urn:example:i63'('urn:example:i91', 'urn:example:i15'). +'urn:example:i63'('urn:example:i92', 'urn:example:i81'). +'urn:example:i63'('urn:example:i93', 'urn:example:i75'). +'urn:example:i63'('urn:example:i93', 'urn:example:i93'). +'urn:example:i63'('urn:example:i99', 'urn:example:i69'). +'urn:example:i64'('urn:example:i12', 'urn:example:i30'). +'urn:example:i64'('urn:example:i13', 'urn:example:i63'). +'urn:example:i64'('urn:example:i16', 'urn:example:i18'). +'urn:example:i64'('urn:example:i17', 'urn:example:i27'). +'urn:example:i64'('urn:example:i17', 'urn:example:i39'). +'urn:example:i64'('urn:example:i19', 'urn:example:i36'). +'urn:example:i64'('urn:example:i20', 'urn:example:i87'). +'urn:example:i64'('urn:example:i21', 'urn:example:i54'). +'urn:example:i64'('urn:example:i23', 'urn:example:i96'). +'urn:example:i64'('urn:example:i24', 'urn:example:i12'). +'urn:example:i64'('urn:example:i25', 'urn:example:i69'). +'urn:example:i64'('urn:example:i27', 'urn:example:i54'). +'urn:example:i64'('urn:example:i28', 'urn:example:i39'). +'urn:example:i64'('urn:example:i2', 'urn:example:i12'). +'urn:example:i64'('urn:example:i30', 'urn:example:i21'). +'urn:example:i64'('urn:example:i31', 'urn:example:i21'). +'urn:example:i64'('urn:example:i31', 'urn:example:i6'). +'urn:example:i64'('urn:example:i32', 'urn:example:i27'). +'urn:example:i64'('urn:example:i32', 'urn:example:i51'). +'urn:example:i64'('urn:example:i34', 'urn:example:i54'). +'urn:example:i64'('urn:example:i35', 'urn:example:i78'). +'urn:example:i64'('urn:example:i36', 'urn:example:i87'). +'urn:example:i64'('urn:example:i37', 'urn:example:i3'). +'urn:example:i64'('urn:example:i39', 'urn:example:i18'). +'urn:example:i64'('urn:example:i39', 'urn:example:i57'). +'urn:example:i64'('urn:example:i3', 'urn:example:i18'). +'urn:example:i64'('urn:example:i3', 'urn:example:i9'). +'urn:example:i64'('urn:example:i41', 'urn:example:i24'). +'urn:example:i64'('urn:example:i42', 'urn:example:i42'). +'urn:example:i64'('urn:example:i42', 'urn:example:i60'). +'urn:example:i64'('urn:example:i42', 'urn:example:i93'). +'urn:example:i64'('urn:example:i46', 'urn:example:i30'). +'urn:example:i64'('urn:example:i46', 'urn:example:i69'). +'urn:example:i64'('urn:example:i46', 'urn:example:i84'). +'urn:example:i64'('urn:example:i48', 'urn:example:i18'). +'urn:example:i64'('urn:example:i49', 'urn:example:i27'). +'urn:example:i64'('urn:example:i49', 'urn:example:i48'). +'urn:example:i64'('urn:example:i4', 'urn:example:i27'). +'urn:example:i64'('urn:example:i4', 'urn:example:i36'). +'urn:example:i64'('urn:example:i50', 'urn:example:i48'). +'urn:example:i64'('urn:example:i50', 'urn:example:i75'). +'urn:example:i64'('urn:example:i51', 'urn:example:i72'). +'urn:example:i64'('urn:example:i54', 'urn:example:i15'). +'urn:example:i64'('urn:example:i54', 'urn:example:i54'). +'urn:example:i64'('urn:example:i56', 'urn:example:i6'). +'urn:example:i64'('urn:example:i57', 'urn:example:i15'). +'urn:example:i64'('urn:example:i58', 'urn:example:i87'). +'urn:example:i64'('urn:example:i59', 'urn:example:i12'). +'urn:example:i64'('urn:example:i59', 'urn:example:i69'). +'urn:example:i64'('urn:example:i59', 'urn:example:i87'). +'urn:example:i64'('urn:example:i5', 'urn:example:i66'). +'urn:example:i64'('urn:example:i61', 'urn:example:i48'). +'urn:example:i64'('urn:example:i62', 'urn:example:i54'). +'urn:example:i64'('urn:example:i63', 'urn:example:i93'). +'urn:example:i64'('urn:example:i64', 'urn:example:i21'). +'urn:example:i64'('urn:example:i64', 'urn:example:i33'). +'urn:example:i64'('urn:example:i64', 'urn:example:i84'). +'urn:example:i64'('urn:example:i65', 'urn:example:i48'). +'urn:example:i64'('urn:example:i66', 'urn:example:i33'). +'urn:example:i64'('urn:example:i66', 'urn:example:i9'). +'urn:example:i64'('urn:example:i67', 'urn:example:i33'). +'urn:example:i64'('urn:example:i67', 'urn:example:i63'). +'urn:example:i64'('urn:example:i68', 'urn:example:i0'). +'urn:example:i64'('urn:example:i70', 'urn:example:i54'). +'urn:example:i64'('urn:example:i72', 'urn:example:i30'). +'urn:example:i64'('urn:example:i72', 'urn:example:i36'). +'urn:example:i64'('urn:example:i72', 'urn:example:i3'). +'urn:example:i64'('urn:example:i72', 'urn:example:i81'). +'urn:example:i64'('urn:example:i73', 'urn:example:i33'). +'urn:example:i64'('urn:example:i74', 'urn:example:i0'). +'urn:example:i64'('urn:example:i74', 'urn:example:i24'). +'urn:example:i64'('urn:example:i74', 'urn:example:i30'). +'urn:example:i64'('urn:example:i74', 'urn:example:i93'). +'urn:example:i64'('urn:example:i76', 'urn:example:i72'). +'urn:example:i64'('urn:example:i76', 'urn:example:i78'). +'urn:example:i64'('urn:example:i76', 'urn:example:i90'). +'urn:example:i64'('urn:example:i77', 'urn:example:i93'). +'urn:example:i64'('urn:example:i79', 'urn:example:i45'). +'urn:example:i64'('urn:example:i79', 'urn:example:i60'). +'urn:example:i64'('urn:example:i7', 'urn:example:i6'). +'urn:example:i64'('urn:example:i80', 'urn:example:i69'). +'urn:example:i64'('urn:example:i82', 'urn:example:i54'). +'urn:example:i64'('urn:example:i83', 'urn:example:i6'). +'urn:example:i64'('urn:example:i83', 'urn:example:i96'). +'urn:example:i64'('urn:example:i84', 'urn:example:i69'). +'urn:example:i64'('urn:example:i85', 'urn:example:i27'). +'urn:example:i64'('urn:example:i86', 'urn:example:i36'). +'urn:example:i64'('urn:example:i89', 'urn:example:i6'). +'urn:example:i64'('urn:example:i8', 'urn:example:i90'). +'urn:example:i64'('urn:example:i93', 'urn:example:i9'). +'urn:example:i64'('urn:example:i94', 'urn:example:i36'). +'urn:example:i64'('urn:example:i95', 'urn:example:i39'). +'urn:example:i64'('urn:example:i95', 'urn:example:i48'). +'urn:example:i64'('urn:example:i96', 'urn:example:i27'). +'urn:example:i64'('urn:example:i9', 'urn:example:i3'). +'urn:example:i65'('urn:example:i11', 'urn:example:i0'). +'urn:example:i65'('urn:example:i11', 'urn:example:i18'). +'urn:example:i65'('urn:example:i12', 'urn:example:i12'). +'urn:example:i65'('urn:example:i16', 'urn:example:i24'). +'urn:example:i65'('urn:example:i16', 'urn:example:i81'). +'urn:example:i65'('urn:example:i17', 'urn:example:i33'). +'urn:example:i65'('urn:example:i17', 'urn:example:i9'). +'urn:example:i65'('urn:example:i18', 'urn:example:i57'). +'urn:example:i65'('urn:example:i1', 'urn:example:i15'). +'urn:example:i65'('urn:example:i1', 'urn:example:i48'). +'urn:example:i65'('urn:example:i1', 'urn:example:i60'). +'urn:example:i65'('urn:example:i22', 'urn:example:i57'). +'urn:example:i65'('urn:example:i24', 'urn:example:i39'). +'urn:example:i65'('urn:example:i26', 'urn:example:i0'). +'urn:example:i65'('urn:example:i28', 'urn:example:i3'). +'urn:example:i65'('urn:example:i31', 'urn:example:i54'). +'urn:example:i65'('urn:example:i32', 'urn:example:i42'). +'urn:example:i65'('urn:example:i32', 'urn:example:i6'). +'urn:example:i65'('urn:example:i34', 'urn:example:i24'). +'urn:example:i65'('urn:example:i35', 'urn:example:i18'). +'urn:example:i65'('urn:example:i35', 'urn:example:i93'). +'urn:example:i65'('urn:example:i37', 'urn:example:i3'). +'urn:example:i65'('urn:example:i3', 'urn:example:i84'). +'urn:example:i65'('urn:example:i41', 'urn:example:i51'). +'urn:example:i65'('urn:example:i42', 'urn:example:i12'). +'urn:example:i65'('urn:example:i43', 'urn:example:i45'). +'urn:example:i65'('urn:example:i43', 'urn:example:i63'). +'urn:example:i65'('urn:example:i43', 'urn:example:i90'). +'urn:example:i65'('urn:example:i44', 'urn:example:i21'). +'urn:example:i65'('urn:example:i44', 'urn:example:i63'). +'urn:example:i65'('urn:example:i45', 'urn:example:i9'). +'urn:example:i65'('urn:example:i48', 'urn:example:i30'). +'urn:example:i65'('urn:example:i48', 'urn:example:i51'). +'urn:example:i65'('urn:example:i4', 'urn:example:i24'). +'urn:example:i65'('urn:example:i4', 'urn:example:i93'). +'urn:example:i65'('urn:example:i52', 'urn:example:i0'). +'urn:example:i65'('urn:example:i52', 'urn:example:i18'). +'urn:example:i65'('urn:example:i56', 'urn:example:i84'). +'urn:example:i65'('urn:example:i57', 'urn:example:i72'). +'urn:example:i65'('urn:example:i57', 'urn:example:i78'). +'urn:example:i65'('urn:example:i58', 'urn:example:i57'). +'urn:example:i65'('urn:example:i58', 'urn:example:i90'). +'urn:example:i65'('urn:example:i5', 'urn:example:i27'). +'urn:example:i65'('urn:example:i5', 'urn:example:i57'). +'urn:example:i65'('urn:example:i61', 'urn:example:i63'). +'urn:example:i65'('urn:example:i62', 'urn:example:i90'). +'urn:example:i65'('urn:example:i63', 'urn:example:i12'). +'urn:example:i65'('urn:example:i63', 'urn:example:i54'). +'urn:example:i65'('urn:example:i64', 'urn:example:i66'). +'urn:example:i65'('urn:example:i65', 'urn:example:i66'). +'urn:example:i65'('urn:example:i65', 'urn:example:i9'). +'urn:example:i65'('urn:example:i66', 'urn:example:i15'). +'urn:example:i65'('urn:example:i66', 'urn:example:i75'). +'urn:example:i65'('urn:example:i67', 'urn:example:i12'). +'urn:example:i65'('urn:example:i67', 'urn:example:i6'). +'urn:example:i65'('urn:example:i6', 'urn:example:i39'). +'urn:example:i65'('urn:example:i6', 'urn:example:i51'). +'urn:example:i65'('urn:example:i71', 'urn:example:i48'). +'urn:example:i65'('urn:example:i71', 'urn:example:i51'). +'urn:example:i65'('urn:example:i72', 'urn:example:i6'). +'urn:example:i65'('urn:example:i72', 'urn:example:i9'). +'urn:example:i65'('urn:example:i73', 'urn:example:i15'). +'urn:example:i65'('urn:example:i74', 'urn:example:i69'). +'urn:example:i65'('urn:example:i74', 'urn:example:i72'). +'urn:example:i65'('urn:example:i76', 'urn:example:i42'). +'urn:example:i65'('urn:example:i76', 'urn:example:i51'). +'urn:example:i65'('urn:example:i76', 'urn:example:i78'). +'urn:example:i65'('urn:example:i77', 'urn:example:i99'). +'urn:example:i65'('urn:example:i78', 'urn:example:i0'). +'urn:example:i65'('urn:example:i78', 'urn:example:i78'). +'urn:example:i65'('urn:example:i78', 'urn:example:i9'). +'urn:example:i65'('urn:example:i79', 'urn:example:i42'). +'urn:example:i65'('urn:example:i79', 'urn:example:i9'). +'urn:example:i65'('urn:example:i81', 'urn:example:i12'). +'urn:example:i65'('urn:example:i84', 'urn:example:i45'). +'urn:example:i65'('urn:example:i85', 'urn:example:i63'). +'urn:example:i65'('urn:example:i86', 'urn:example:i51'). +'urn:example:i65'('urn:example:i89', 'urn:example:i21'). +'urn:example:i65'('urn:example:i89', 'urn:example:i96'). +'urn:example:i65'('urn:example:i90', 'urn:example:i45'). +'urn:example:i65'('urn:example:i90', 'urn:example:i60'). +'urn:example:i65'('urn:example:i95', 'urn:example:i24'). +'urn:example:i65'('urn:example:i95', 'urn:example:i33'). +'urn:example:i65'('urn:example:i96', 'urn:example:i18'). +'urn:example:i65'('urn:example:i96', 'urn:example:i60'). +'urn:example:i65'('urn:example:i96', 'urn:example:i6'). +'urn:example:i65'('urn:example:i96', 'urn:example:i93'). +'urn:example:i65'('urn:example:i97', 'urn:example:i42'). +'urn:example:i65'('urn:example:i97', 'urn:example:i63'). +'urn:example:i65'('urn:example:i97', 'urn:example:i63'). +'urn:example:i65'('urn:example:i98', 'urn:example:i78'). +'urn:example:i65'('urn:example:i98', 'urn:example:i87'). +'urn:example:i65'('urn:example:i99', 'urn:example:i6'). +'urn:example:i65'('urn:example:i9', 'urn:example:i3'). +'urn:example:i65'('urn:example:i9', 'urn:example:i96'). +'urn:example:i66'('urn:example:i10', 'urn:example:i84'). +'urn:example:i66'('urn:example:i11', 'urn:example:i24'). +'urn:example:i66'('urn:example:i13', 'urn:example:i75'). +'urn:example:i66'('urn:example:i14', 'urn:example:i18'). +'urn:example:i66'('urn:example:i14', 'urn:example:i51'). +'urn:example:i66'('urn:example:i16', 'urn:example:i84'). +'urn:example:i66'('urn:example:i18', 'urn:example:i78'). +'urn:example:i66'('urn:example:i19', 'urn:example:i15'). +'urn:example:i66'('urn:example:i19', 'urn:example:i27'). +'urn:example:i66'('urn:example:i1', 'urn:example:i36'). +'urn:example:i66'('urn:example:i1', 'urn:example:i78'). +'urn:example:i66'('urn:example:i20', 'urn:example:i42'). +'urn:example:i66'('urn:example:i20', 'urn:example:i81'). +'urn:example:i66'('urn:example:i21', 'urn:example:i69'). +'urn:example:i66'('urn:example:i27', 'urn:example:i21'). +'urn:example:i66'('urn:example:i28', 'urn:example:i66'). +'urn:example:i66'('urn:example:i29', 'urn:example:i0'). +'urn:example:i66'('urn:example:i29', 'urn:example:i69'). +'urn:example:i66'('urn:example:i29', 'urn:example:i9'). +'urn:example:i66'('urn:example:i2', 'urn:example:i21'). +'urn:example:i66'('urn:example:i2', 'urn:example:i63'). +'urn:example:i66'('urn:example:i30', 'urn:example:i84'). +'urn:example:i66'('urn:example:i32', 'urn:example:i21'). +'urn:example:i66'('urn:example:i33', 'urn:example:i93'). +'urn:example:i66'('urn:example:i35', 'urn:example:i18'). +'urn:example:i66'('urn:example:i35', 'urn:example:i72'). +'urn:example:i66'('urn:example:i35', 'urn:example:i81'). +'urn:example:i66'('urn:example:i37', 'urn:example:i12'). +'urn:example:i66'('urn:example:i38', 'urn:example:i84'). +'urn:example:i66'('urn:example:i38', 'urn:example:i96'). +'urn:example:i66'('urn:example:i40', 'urn:example:i63'). +'urn:example:i66'('urn:example:i41', 'urn:example:i24'). +'urn:example:i66'('urn:example:i41', 'urn:example:i33'). +'urn:example:i66'('urn:example:i44', 'urn:example:i6'). +'urn:example:i66'('urn:example:i46', 'urn:example:i45'). +'urn:example:i66'('urn:example:i49', 'urn:example:i18'). +'urn:example:i66'('urn:example:i49', 'urn:example:i51'). +'urn:example:i66'('urn:example:i51', 'urn:example:i12'). +'urn:example:i66'('urn:example:i52', 'urn:example:i24'). +'urn:example:i66'('urn:example:i52', 'urn:example:i51'). +'urn:example:i66'('urn:example:i52', 'urn:example:i84'). +'urn:example:i66'('urn:example:i53', 'urn:example:i3'). +'urn:example:i66'('urn:example:i54', 'urn:example:i51'). +'urn:example:i66'('urn:example:i54', 'urn:example:i75'). +'urn:example:i66'('urn:example:i55', 'urn:example:i75'). +'urn:example:i66'('urn:example:i56', 'urn:example:i42'). +'urn:example:i66'('urn:example:i56', 'urn:example:i78'). +'urn:example:i66'('urn:example:i56', 'urn:example:i87'). +'urn:example:i66'('urn:example:i57', 'urn:example:i54'). +'urn:example:i66'('urn:example:i58', 'urn:example:i15'). +'urn:example:i66'('urn:example:i59', 'urn:example:i36'). +'urn:example:i66'('urn:example:i60', 'urn:example:i39'). +'urn:example:i66'('urn:example:i60', 'urn:example:i75'). +'urn:example:i66'('urn:example:i61', 'urn:example:i81'). +'urn:example:i66'('urn:example:i62', 'urn:example:i54'). +'urn:example:i66'('urn:example:i67', 'urn:example:i93'). +'urn:example:i66'('urn:example:i68', 'urn:example:i12'). +'urn:example:i66'('urn:example:i68', 'urn:example:i45'). +'urn:example:i66'('urn:example:i69', 'urn:example:i87'). +'urn:example:i66'('urn:example:i6', 'urn:example:i6'). +'urn:example:i66'('urn:example:i71', 'urn:example:i0'). +'urn:example:i66'('urn:example:i71', 'urn:example:i39'). +'urn:example:i66'('urn:example:i72', 'urn:example:i39'). +'urn:example:i66'('urn:example:i72', 'urn:example:i45'). +'urn:example:i66'('urn:example:i72', 'urn:example:i66'). +'urn:example:i66'('urn:example:i74', 'urn:example:i18'). +'urn:example:i66'('urn:example:i74', 'urn:example:i33'). +'urn:example:i66'('urn:example:i74', 'urn:example:i93'). +'urn:example:i66'('urn:example:i76', 'urn:example:i18'). +'urn:example:i66'('urn:example:i79', 'urn:example:i57'). +'urn:example:i66'('urn:example:i7', 'urn:example:i3'). +'urn:example:i66'('urn:example:i83', 'urn:example:i27'). +'urn:example:i66'('urn:example:i84', 'urn:example:i75'). +'urn:example:i66'('urn:example:i85', 'urn:example:i63'). +'urn:example:i66'('urn:example:i86', 'urn:example:i36'). +'urn:example:i66'('urn:example:i86', 'urn:example:i57'). +'urn:example:i66'('urn:example:i86', 'urn:example:i66'). +'urn:example:i66'('urn:example:i88', 'urn:example:i48'). +'urn:example:i66'('urn:example:i88', 'urn:example:i69'). +'urn:example:i66'('urn:example:i8', 'urn:example:i93'). +'urn:example:i66'('urn:example:i90', 'urn:example:i45'). +'urn:example:i66'('urn:example:i90', 'urn:example:i57'). +'urn:example:i66'('urn:example:i91', 'urn:example:i60'). +'urn:example:i66'('urn:example:i92', 'urn:example:i48'). +'urn:example:i66'('urn:example:i93', 'urn:example:i0'). +'urn:example:i66'('urn:example:i93', 'urn:example:i9'). +'urn:example:i66'('urn:example:i95', 'urn:example:i15'). +'urn:example:i66'('urn:example:i95', 'urn:example:i24'). +'urn:example:i66'('urn:example:i95', 'urn:example:i24'). +'urn:example:i66'('urn:example:i95', 'urn:example:i30'). +'urn:example:i66'('urn:example:i96', 'urn:example:i57'). +'urn:example:i66'('urn:example:i97', 'urn:example:i33'). +'urn:example:i66'('urn:example:i98', 'urn:example:i21'). +'urn:example:i66'('urn:example:i98', 'urn:example:i6'). +'urn:example:i66'('urn:example:i99', 'urn:example:i54'). +'urn:example:i66'('urn:example:i9', 'urn:example:i78'). +'urn:example:i66'('urn:example:i9', 'urn:example:i90'). +'urn:example:i67'('urn:example:i10', 'urn:example:i21'). +'urn:example:i67'('urn:example:i10', 'urn:example:i66'). +'urn:example:i67'('urn:example:i12', 'urn:example:i96'). +'urn:example:i67'('urn:example:i13', 'urn:example:i90'). +'urn:example:i67'('urn:example:i14', 'urn:example:i39'). +'urn:example:i67'('urn:example:i15', 'urn:example:i15'). +'urn:example:i67'('urn:example:i15', 'urn:example:i51'). +'urn:example:i67'('urn:example:i15', 'urn:example:i54'). +'urn:example:i67'('urn:example:i16', 'urn:example:i42'). +'urn:example:i67'('urn:example:i16', 'urn:example:i9'). +'urn:example:i67'('urn:example:i17', 'urn:example:i66'). +'urn:example:i67'('urn:example:i17', 'urn:example:i96'). +'urn:example:i67'('urn:example:i18', 'urn:example:i42'). +'urn:example:i67'('urn:example:i20', 'urn:example:i42'). +'urn:example:i67'('urn:example:i23', 'urn:example:i21'). +'urn:example:i67'('urn:example:i23', 'urn:example:i33'). +'urn:example:i67'('urn:example:i24', 'urn:example:i27'). +'urn:example:i67'('urn:example:i24', 'urn:example:i42'). +'urn:example:i67'('urn:example:i26', 'urn:example:i84'). +'urn:example:i67'('urn:example:i26', 'urn:example:i87'). +'urn:example:i67'('urn:example:i26', 'urn:example:i93'). +'urn:example:i67'('urn:example:i26', 'urn:example:i99'). +'urn:example:i67'('urn:example:i2', 'urn:example:i3'). +'urn:example:i67'('urn:example:i33', 'urn:example:i42'). +'urn:example:i67'('urn:example:i33', 'urn:example:i93'). +'urn:example:i67'('urn:example:i34', 'urn:example:i60'). +'urn:example:i67'('urn:example:i35', 'urn:example:i0'). +'urn:example:i67'('urn:example:i36', 'urn:example:i24'). +'urn:example:i67'('urn:example:i38', 'urn:example:i57'). +'urn:example:i67'('urn:example:i38', 'urn:example:i75'). +'urn:example:i67'('urn:example:i3', 'urn:example:i93'). +'urn:example:i67'('urn:example:i40', 'urn:example:i0'). +'urn:example:i67'('urn:example:i41', 'urn:example:i3'). +'urn:example:i67'('urn:example:i43', 'urn:example:i21'). +'urn:example:i67'('urn:example:i49', 'urn:example:i0'). +'urn:example:i67'('urn:example:i49', 'urn:example:i42'). +'urn:example:i67'('urn:example:i49', 'urn:example:i60'). +'urn:example:i67'('urn:example:i50', 'urn:example:i45'). +'urn:example:i67'('urn:example:i50', 'urn:example:i54'). +'urn:example:i67'('urn:example:i52', 'urn:example:i3'). +'urn:example:i67'('urn:example:i52', 'urn:example:i96'). +'urn:example:i67'('urn:example:i54', 'urn:example:i9'). +'urn:example:i67'('urn:example:i55', 'urn:example:i96'). +'urn:example:i67'('urn:example:i56', 'urn:example:i57'). +'urn:example:i67'('urn:example:i57', 'urn:example:i69'). +'urn:example:i67'('urn:example:i59', 'urn:example:i0'). +'urn:example:i67'('urn:example:i5', 'urn:example:i9'). +'urn:example:i67'('urn:example:i61', 'urn:example:i54'). +'urn:example:i67'('urn:example:i63', 'urn:example:i69'). +'urn:example:i67'('urn:example:i64', 'urn:example:i24'). +'urn:example:i67'('urn:example:i66', 'urn:example:i0'). +'urn:example:i67'('urn:example:i67', 'urn:example:i60'). +'urn:example:i67'('urn:example:i68', 'urn:example:i9'). +'urn:example:i67'('urn:example:i69', 'urn:example:i42'). +'urn:example:i67'('urn:example:i72', 'urn:example:i15'). +'urn:example:i67'('urn:example:i72', 'urn:example:i9'). +'urn:example:i67'('urn:example:i73', 'urn:example:i66'). +'urn:example:i67'('urn:example:i73', 'urn:example:i6'). +'urn:example:i67'('urn:example:i75', 'urn:example:i15'). +'urn:example:i67'('urn:example:i77', 'urn:example:i12'). +'urn:example:i67'('urn:example:i77', 'urn:example:i81'). +'urn:example:i67'('urn:example:i80', 'urn:example:i51'). +'urn:example:i67'('urn:example:i80', 'urn:example:i78'). +'urn:example:i67'('urn:example:i81', 'urn:example:i90'). +'urn:example:i67'('urn:example:i82', 'urn:example:i0'). +'urn:example:i67'('urn:example:i82', 'urn:example:i33'). +'urn:example:i67'('urn:example:i82', 'urn:example:i72'). +'urn:example:i67'('urn:example:i86', 'urn:example:i33'). +'urn:example:i67'('urn:example:i87', 'urn:example:i24'). +'urn:example:i67'('urn:example:i87', 'urn:example:i27'). +'urn:example:i67'('urn:example:i88', 'urn:example:i57'). +'urn:example:i67'('urn:example:i89', 'urn:example:i75'). +'urn:example:i67'('urn:example:i8', 'urn:example:i96'). +'urn:example:i67'('urn:example:i93', 'urn:example:i0'). +'urn:example:i67'('urn:example:i93', 'urn:example:i75'). +'urn:example:i67'('urn:example:i94', 'urn:example:i57'). +'urn:example:i67'('urn:example:i94', 'urn:example:i78'). +'urn:example:i67'('urn:example:i95', 'urn:example:i18'). +'urn:example:i67'('urn:example:i96', 'urn:example:i81'). +'urn:example:i67'('urn:example:i97', 'urn:example:i39'). +'urn:example:i67'('urn:example:i97', 'urn:example:i66'). +'urn:example:i67'('urn:example:i97', 'urn:example:i75'). +'urn:example:i67'('urn:example:i98', 'urn:example:i51'). +'urn:example:i67'('urn:example:i99', 'urn:example:i27'). +'urn:example:i67'('urn:example:i99', 'urn:example:i39'). +'urn:example:i67'('urn:example:i99', 'urn:example:i57'). +'urn:example:i67'('urn:example:i99', 'urn:example:i81'). +'urn:example:i67'('urn:example:i99', 'urn:example:i90'). +'urn:example:i67'('urn:example:i9', 'urn:example:i15'). +'urn:example:i67'('urn:example:i9', 'urn:example:i30'). +'urn:example:i68'('urn:example:i0', 'urn:example:i27'). +'urn:example:i68'('urn:example:i11', 'urn:example:i72'). +'urn:example:i68'('urn:example:i12', 'urn:example:i96'). +'urn:example:i68'('urn:example:i14', 'urn:example:i57'). +'urn:example:i68'('urn:example:i14', 'urn:example:i78'). +'urn:example:i68'('urn:example:i14', 'urn:example:i93'). +'urn:example:i68'('urn:example:i15', 'urn:example:i3'). +'urn:example:i68'('urn:example:i16', 'urn:example:i39'). +'urn:example:i68'('urn:example:i16', 'urn:example:i75'). +'urn:example:i68'('urn:example:i16', 'urn:example:i99'). +'urn:example:i68'('urn:example:i17', 'urn:example:i45'). +'urn:example:i68'('urn:example:i17', 'urn:example:i69'). +'urn:example:i68'('urn:example:i18', 'urn:example:i60'). +'urn:example:i68'('urn:example:i19', 'urn:example:i27'). +'urn:example:i68'('urn:example:i19', 'urn:example:i87'). +'urn:example:i68'('urn:example:i1', 'urn:example:i51'). +'urn:example:i68'('urn:example:i20', 'urn:example:i36'). +'urn:example:i68'('urn:example:i20', 'urn:example:i66'). +'urn:example:i68'('urn:example:i20', 'urn:example:i96'). +'urn:example:i68'('urn:example:i21', 'urn:example:i18'). +'urn:example:i68'('urn:example:i21', 'urn:example:i75'). +'urn:example:i68'('urn:example:i25', 'urn:example:i48'). +'urn:example:i68'('urn:example:i25', 'urn:example:i99'). +'urn:example:i68'('urn:example:i26', 'urn:example:i63'). +'urn:example:i68'('urn:example:i27', 'urn:example:i33'). +'urn:example:i68'('urn:example:i27', 'urn:example:i84'). +'urn:example:i68'('urn:example:i28', 'urn:example:i21'). +'urn:example:i68'('urn:example:i29', 'urn:example:i54'). +'urn:example:i68'('urn:example:i29', 'urn:example:i6'). +'urn:example:i68'('urn:example:i29', 'urn:example:i90'). +'urn:example:i68'('urn:example:i2', 'urn:example:i75'). +'urn:example:i68'('urn:example:i32', 'urn:example:i48'). +'urn:example:i68'('urn:example:i34', 'urn:example:i60'). +'urn:example:i68'('urn:example:i35', 'urn:example:i0'). +'urn:example:i68'('urn:example:i35', 'urn:example:i54'). +'urn:example:i68'('urn:example:i36', 'urn:example:i45'). +'urn:example:i68'('urn:example:i36', 'urn:example:i45'). +'urn:example:i68'('urn:example:i37', 'urn:example:i6'). +'urn:example:i68'('urn:example:i39', 'urn:example:i81'). +'urn:example:i68'('urn:example:i40', 'urn:example:i36'). +'urn:example:i68'('urn:example:i43', 'urn:example:i39'). +'urn:example:i68'('urn:example:i44', 'urn:example:i12'). +'urn:example:i68'('urn:example:i44', 'urn:example:i81'). +'urn:example:i68'('urn:example:i46', 'urn:example:i0'). +'urn:example:i68'('urn:example:i47', 'urn:example:i9'). +'urn:example:i68'('urn:example:i48', 'urn:example:i12'). +'urn:example:i68'('urn:example:i48', 'urn:example:i96'). +'urn:example:i68'('urn:example:i49', 'urn:example:i39'). +'urn:example:i68'('urn:example:i49', 'urn:example:i84'). +'urn:example:i68'('urn:example:i50', 'urn:example:i24'). +'urn:example:i68'('urn:example:i51', 'urn:example:i54'). +'urn:example:i68'('urn:example:i53', 'urn:example:i24'). +'urn:example:i68'('urn:example:i54', 'urn:example:i72'). +'urn:example:i68'('urn:example:i56', 'urn:example:i0'). +'urn:example:i68'('urn:example:i57', 'urn:example:i6'). +'urn:example:i68'('urn:example:i58', 'urn:example:i33'). +'urn:example:i68'('urn:example:i59', 'urn:example:i15'). +'urn:example:i68'('urn:example:i60', 'urn:example:i78'). +'urn:example:i68'('urn:example:i61', 'urn:example:i78'). +'urn:example:i68'('urn:example:i65', 'urn:example:i39'). +'urn:example:i68'('urn:example:i65', 'urn:example:i75'). +'urn:example:i68'('urn:example:i68', 'urn:example:i24'). +'urn:example:i68'('urn:example:i68', 'urn:example:i54'). +'urn:example:i68'('urn:example:i69', 'urn:example:i66'). +'urn:example:i68'('urn:example:i69', 'urn:example:i78'). +'urn:example:i68'('urn:example:i70', 'urn:example:i48'). +'urn:example:i68'('urn:example:i70', 'urn:example:i93'). +'urn:example:i68'('urn:example:i71', 'urn:example:i3'). +'urn:example:i68'('urn:example:i72', 'urn:example:i24'). +'urn:example:i68'('urn:example:i72', 'urn:example:i66'). +'urn:example:i68'('urn:example:i80', 'urn:example:i54'). +'urn:example:i68'('urn:example:i80', 'urn:example:i57'). +'urn:example:i68'('urn:example:i82', 'urn:example:i51'). +'urn:example:i68'('urn:example:i83', 'urn:example:i3'). +'urn:example:i68'('urn:example:i83', 'urn:example:i54'). +'urn:example:i68'('urn:example:i83', 'urn:example:i66'). +'urn:example:i68'('urn:example:i84', 'urn:example:i15'). +'urn:example:i68'('urn:example:i84', 'urn:example:i3'). +'urn:example:i68'('urn:example:i85', 'urn:example:i48'). +'urn:example:i68'('urn:example:i87', 'urn:example:i27'). +'urn:example:i68'('urn:example:i88', 'urn:example:i12'). +'urn:example:i68'('urn:example:i88', 'urn:example:i33'). +'urn:example:i68'('urn:example:i89', 'urn:example:i45'). +'urn:example:i68'('urn:example:i89', 'urn:example:i63'). +'urn:example:i68'('urn:example:i90', 'urn:example:i21'). +'urn:example:i68'('urn:example:i90', 'urn:example:i33'). +'urn:example:i68'('urn:example:i93', 'urn:example:i69'). +'urn:example:i68'('urn:example:i93', 'urn:example:i84'). +'urn:example:i68'('urn:example:i94', 'urn:example:i12'). +'urn:example:i68'('urn:example:i94', 'urn:example:i39'). +'urn:example:i68'('urn:example:i94', 'urn:example:i39'). +'urn:example:i68'('urn:example:i95', 'urn:example:i90'). +'urn:example:i68'('urn:example:i96', 'urn:example:i78'). +'urn:example:i69'('urn:example:i0', 'urn:example:i33'). +'urn:example:i69'('urn:example:i10', 'urn:example:i9'). +'urn:example:i69'('urn:example:i12', 'urn:example:i15'). +'urn:example:i69'('urn:example:i13', 'urn:example:i15'). +'urn:example:i69'('urn:example:i13', 'urn:example:i33'). +'urn:example:i69'('urn:example:i13', 'urn:example:i39'). +'urn:example:i69'('urn:example:i14', 'urn:example:i24'). +'urn:example:i69'('urn:example:i16', 'urn:example:i12'). +'urn:example:i69'('urn:example:i16', 'urn:example:i87'). +'urn:example:i69'('urn:example:i16', 'urn:example:i96'). +'urn:example:i69'('urn:example:i17', 'urn:example:i54'). +'urn:example:i69'('urn:example:i17', 'urn:example:i90'). +'urn:example:i69'('urn:example:i19', 'urn:example:i81'). +'urn:example:i69'('urn:example:i1', 'urn:example:i0'). +'urn:example:i69'('urn:example:i1', 'urn:example:i66'). +'urn:example:i69'('urn:example:i20', 'urn:example:i0'). +'urn:example:i69'('urn:example:i20', 'urn:example:i27'). +'urn:example:i69'('urn:example:i22', 'urn:example:i54'). +'urn:example:i69'('urn:example:i23', 'urn:example:i12'). +'urn:example:i69'('urn:example:i23', 'urn:example:i48'). +'urn:example:i69'('urn:example:i24', 'urn:example:i24'). +'urn:example:i69'('urn:example:i25', 'urn:example:i60'). +'urn:example:i69'('urn:example:i26', 'urn:example:i66'). +'urn:example:i69'('urn:example:i27', 'urn:example:i30'). +'urn:example:i69'('urn:example:i28', 'urn:example:i18'). +'urn:example:i69'('urn:example:i28', 'urn:example:i18'). +'urn:example:i69'('urn:example:i28', 'urn:example:i30'). +'urn:example:i69'('urn:example:i28', 'urn:example:i60'). +'urn:example:i69'('urn:example:i29', 'urn:example:i21'). +'urn:example:i69'('urn:example:i29', 'urn:example:i63'). +'urn:example:i69'('urn:example:i32', 'urn:example:i12'). +'urn:example:i69'('urn:example:i32', 'urn:example:i27'). +'urn:example:i69'('urn:example:i33', 'urn:example:i30'). +'urn:example:i69'('urn:example:i35', 'urn:example:i6'). +'urn:example:i69'('urn:example:i38', 'urn:example:i27'). +'urn:example:i69'('urn:example:i38', 'urn:example:i33'). +'urn:example:i69'('urn:example:i38', 'urn:example:i36'). +'urn:example:i69'('urn:example:i38', 'urn:example:i81'). +'urn:example:i69'('urn:example:i3', 'urn:example:i3'). +'urn:example:i69'('urn:example:i3', 'urn:example:i3'). +'urn:example:i69'('urn:example:i42', 'urn:example:i24'). +'urn:example:i69'('urn:example:i42', 'urn:example:i90'). +'urn:example:i69'('urn:example:i49', 'urn:example:i45'). +'urn:example:i69'('urn:example:i4', 'urn:example:i3'). +'urn:example:i69'('urn:example:i50', 'urn:example:i33'). +'urn:example:i69'('urn:example:i50', 'urn:example:i66'). +'urn:example:i69'('urn:example:i51', 'urn:example:i63'). +'urn:example:i69'('urn:example:i52', 'urn:example:i18'). +'urn:example:i69'('urn:example:i52', 'urn:example:i33'). +'urn:example:i69'('urn:example:i54', 'urn:example:i51'). +'urn:example:i69'('urn:example:i56', 'urn:example:i0'). +'urn:example:i69'('urn:example:i56', 'urn:example:i84'). +'urn:example:i69'('urn:example:i57', 'urn:example:i30'). +'urn:example:i69'('urn:example:i57', 'urn:example:i6'). +'urn:example:i69'('urn:example:i58', 'urn:example:i21'). +'urn:example:i69'('urn:example:i58', 'urn:example:i24'). +'urn:example:i69'('urn:example:i58', 'urn:example:i66'). +'urn:example:i69'('urn:example:i59', 'urn:example:i15'). +'urn:example:i69'('urn:example:i60', 'urn:example:i0'). +'urn:example:i69'('urn:example:i60', 'urn:example:i48'). +'urn:example:i69'('urn:example:i61', 'urn:example:i21'). +'urn:example:i69'('urn:example:i61', 'urn:example:i75'). +'urn:example:i69'('urn:example:i62', 'urn:example:i60'). +'urn:example:i69'('urn:example:i63', 'urn:example:i48'). +'urn:example:i69'('urn:example:i63', 'urn:example:i81'). +'urn:example:i69'('urn:example:i65', 'urn:example:i87'). +'urn:example:i69'('urn:example:i65', 'urn:example:i90'). +'urn:example:i69'('urn:example:i67', 'urn:example:i81'). +'urn:example:i69'('urn:example:i6', 'urn:example:i18'). +'urn:example:i69'('urn:example:i70', 'urn:example:i45'). +'urn:example:i69'('urn:example:i70', 'urn:example:i63'). +'urn:example:i69'('urn:example:i73', 'urn:example:i21'). +'urn:example:i69'('urn:example:i73', 'urn:example:i24'). +'urn:example:i69'('urn:example:i73', 'urn:example:i48'). +'urn:example:i69'('urn:example:i74', 'urn:example:i96'). +'urn:example:i69'('urn:example:i76', 'urn:example:i69'). +'urn:example:i69'('urn:example:i80', 'urn:example:i24'). +'urn:example:i69'('urn:example:i81', 'urn:example:i96'). +'urn:example:i69'('urn:example:i85', 'urn:example:i48'). +'urn:example:i69'('urn:example:i85', 'urn:example:i63'). +'urn:example:i69'('urn:example:i86', 'urn:example:i75'). +'urn:example:i69'('urn:example:i89', 'urn:example:i27'). +'urn:example:i69'('urn:example:i91', 'urn:example:i36'). +'urn:example:i69'('urn:example:i91', 'urn:example:i66'). +'urn:example:i69'('urn:example:i92', 'urn:example:i24'). +'urn:example:i69'('urn:example:i92', 'urn:example:i60'). +'urn:example:i69'('urn:example:i94', 'urn:example:i57'). +'urn:example:i69'('urn:example:i95', 'urn:example:i96'). +'urn:example:i69'('urn:example:i96', 'urn:example:i15'). +'urn:example:i69'('urn:example:i96', 'urn:example:i75'). +'urn:example:i69'('urn:example:i96', 'urn:example:i87'). +'urn:example:i69'('urn:example:i96', 'urn:example:i93'). +'urn:example:i69'('urn:example:i98', 'urn:example:i12'). +'urn:example:i69'('urn:example:i99', 'urn:example:i60'). +'urn:example:i69'('urn:example:i99', 'urn:example:i75'). +'urn:example:i69'('urn:example:i9', 'urn:example:i27'). +'urn:example:i69'('urn:example:i9', 'urn:example:i90'). +'urn:example:i6'('urn:example:i10', 'urn:example:i21'). +'urn:example:i6'('urn:example:i11', 'urn:example:i75'). +'urn:example:i6'('urn:example:i11', 'urn:example:i96'). +'urn:example:i6'('urn:example:i12', 'urn:example:i72'). +'urn:example:i6'('urn:example:i14', 'urn:example:i36'). +'urn:example:i6'('urn:example:i14', 'urn:example:i84'). +'urn:example:i6'('urn:example:i14', 'urn:example:i87'). +'urn:example:i6'('urn:example:i15', 'urn:example:i99'). +'urn:example:i6'('urn:example:i16', 'urn:example:i6'). +'urn:example:i6'('urn:example:i18', 'urn:example:i63'). +'urn:example:i6'('urn:example:i19', 'urn:example:i30'). +'urn:example:i6'('urn:example:i21', 'urn:example:i24'). +'urn:example:i6'('urn:example:i22', 'urn:example:i87'). +'urn:example:i6'('urn:example:i23', 'urn:example:i27'). +'urn:example:i6'('urn:example:i23', 'urn:example:i39'). +'urn:example:i6'('urn:example:i23', 'urn:example:i57'). +'urn:example:i6'('urn:example:i25', 'urn:example:i54'). +'urn:example:i6'('urn:example:i25', 'urn:example:i9'). +'urn:example:i6'('urn:example:i28', 'urn:example:i18'). +'urn:example:i6'('urn:example:i29', 'urn:example:i24'). +'urn:example:i6'('urn:example:i29', 'urn:example:i84'). +'urn:example:i6'('urn:example:i29', 'urn:example:i93'). +'urn:example:i6'('urn:example:i30', 'urn:example:i45'). +'urn:example:i6'('urn:example:i32', 'urn:example:i66'). +'urn:example:i6'('urn:example:i32', 'urn:example:i96'). +'urn:example:i6'('urn:example:i33', 'urn:example:i21'). +'urn:example:i6'('urn:example:i33', 'urn:example:i84'). +'urn:example:i6'('urn:example:i35', 'urn:example:i6'). +'urn:example:i6'('urn:example:i36', 'urn:example:i12'). +'urn:example:i6'('urn:example:i36', 'urn:example:i33'). +'urn:example:i6'('urn:example:i36', 'urn:example:i69'). +'urn:example:i6'('urn:example:i37', 'urn:example:i66'). +'urn:example:i6'('urn:example:i37', 'urn:example:i6'). +'urn:example:i6'('urn:example:i37', 'urn:example:i75'). +'urn:example:i6'('urn:example:i38', 'urn:example:i0'). +'urn:example:i6'('urn:example:i38', 'urn:example:i0'). +'urn:example:i6'('urn:example:i38', 'urn:example:i39'). +'urn:example:i6'('urn:example:i3', 'urn:example:i21'). +'urn:example:i6'('urn:example:i3', 'urn:example:i3'). +'urn:example:i6'('urn:example:i41', 'urn:example:i60'). +'urn:example:i6'('urn:example:i42', 'urn:example:i66'). +'urn:example:i6'('urn:example:i44', 'urn:example:i3'). +'urn:example:i6'('urn:example:i47', 'urn:example:i21'). +'urn:example:i6'('urn:example:i47', 'urn:example:i42'). +'urn:example:i6'('urn:example:i49', 'urn:example:i3'). +'urn:example:i6'('urn:example:i4', 'urn:example:i54'). +'urn:example:i6'('urn:example:i50', 'urn:example:i9'). +'urn:example:i6'('urn:example:i51', 'urn:example:i36'). +'urn:example:i6'('urn:example:i53', 'urn:example:i30'). +'urn:example:i6'('urn:example:i55', 'urn:example:i93'). +'urn:example:i6'('urn:example:i55', 'urn:example:i96'). +'urn:example:i6'('urn:example:i56', 'urn:example:i39'). +'urn:example:i6'('urn:example:i56', 'urn:example:i60'). +'urn:example:i6'('urn:example:i56', 'urn:example:i99'). +'urn:example:i6'('urn:example:i59', 'urn:example:i0'). +'urn:example:i6'('urn:example:i60', 'urn:example:i69'). +'urn:example:i6'('urn:example:i61', 'urn:example:i3'). +'urn:example:i6'('urn:example:i62', 'urn:example:i84'). +'urn:example:i6'('urn:example:i63', 'urn:example:i3'). +'urn:example:i6'('urn:example:i65', 'urn:example:i21'). +'urn:example:i6'('urn:example:i65', 'urn:example:i24'). +'urn:example:i6'('urn:example:i66', 'urn:example:i33'). +'urn:example:i6'('urn:example:i68', 'urn:example:i6'). +'urn:example:i6'('urn:example:i69', 'urn:example:i78'). +'urn:example:i6'('urn:example:i69', 'urn:example:i87'). +'urn:example:i6'('urn:example:i6', 'urn:example:i12'). +'urn:example:i6'('urn:example:i6', 'urn:example:i69'). +'urn:example:i6'('urn:example:i6', 'urn:example:i9'). +'urn:example:i6'('urn:example:i70', 'urn:example:i69'). +'urn:example:i6'('urn:example:i71', 'urn:example:i0'). +'urn:example:i6'('urn:example:i71', 'urn:example:i12'). +'urn:example:i6'('urn:example:i71', 'urn:example:i75'). +'urn:example:i6'('urn:example:i72', 'urn:example:i69'). +'urn:example:i6'('urn:example:i72', 'urn:example:i6'). +'urn:example:i6'('urn:example:i75', 'urn:example:i12'). +'urn:example:i6'('urn:example:i75', 'urn:example:i75'). +'urn:example:i6'('urn:example:i75', 'urn:example:i84'). +'urn:example:i6'('urn:example:i77', 'urn:example:i81'). +'urn:example:i6'('urn:example:i79', 'urn:example:i21'). +'urn:example:i6'('urn:example:i79', 'urn:example:i57'). +'urn:example:i6'('urn:example:i79', 'urn:example:i6'). +'urn:example:i6'('urn:example:i7', 'urn:example:i54'). +'urn:example:i6'('urn:example:i7', 'urn:example:i66'). +'urn:example:i6'('urn:example:i82', 'urn:example:i33'). +'urn:example:i6'('urn:example:i83', 'urn:example:i36'). +'urn:example:i6'('urn:example:i83', 'urn:example:i78'). +'urn:example:i6'('urn:example:i83', 'urn:example:i90'). +'urn:example:i6'('urn:example:i84', 'urn:example:i0'). +'urn:example:i6'('urn:example:i87', 'urn:example:i48'). +'urn:example:i6'('urn:example:i88', 'urn:example:i3'). +'urn:example:i6'('urn:example:i88', 'urn:example:i54'). +'urn:example:i6'('urn:example:i89', 'urn:example:i57'). +'urn:example:i6'('urn:example:i90', 'urn:example:i21'). +'urn:example:i6'('urn:example:i90', 'urn:example:i78'). +'urn:example:i6'('urn:example:i91', 'urn:example:i18'). +'urn:example:i6'('urn:example:i91', 'urn:example:i39'). +'urn:example:i6'('urn:example:i91', 'urn:example:i84'). +'urn:example:i6'('urn:example:i91', 'urn:example:i96'). +'urn:example:i6'('urn:example:i95', 'urn:example:i66'). +'urn:example:i6'('urn:example:i97', 'urn:example:i27'). +'urn:example:i6'('urn:example:i97', 'urn:example:i39'). +'urn:example:i6'('urn:example:i98', 'urn:example:i93'). +'urn:example:i6'('urn:example:i99', 'urn:example:i12'). +'urn:example:i6'('urn:example:i99', 'urn:example:i24'). +'urn:example:i6'('urn:example:i99', 'urn:example:i6'). +'urn:example:i6'('urn:example:i99', 'urn:example:i72'). +'urn:example:i6'('urn:example:i99', 'urn:example:i93'). +'urn:example:i6'('urn:example:i9', 'urn:example:i81'). +'urn:example:i70'('urn:example:i0', 'urn:example:i18'). +'urn:example:i70'('urn:example:i10', 'urn:example:i18'). +'urn:example:i70'('urn:example:i10', 'urn:example:i39'). +'urn:example:i70'('urn:example:i10', 'urn:example:i99'). +'urn:example:i70'('urn:example:i12', 'urn:example:i48'). +'urn:example:i70'('urn:example:i12', 'urn:example:i6'). +'urn:example:i70'('urn:example:i14', 'urn:example:i63'). +'urn:example:i70'('urn:example:i15', 'urn:example:i3'). +'urn:example:i70'('urn:example:i15', 'urn:example:i42'). +'urn:example:i70'('urn:example:i16', 'urn:example:i51'). +'urn:example:i70'('urn:example:i16', 'urn:example:i72'). +'urn:example:i70'('urn:example:i17', 'urn:example:i12'). +'urn:example:i70'('urn:example:i18', 'urn:example:i0'). +'urn:example:i70'('urn:example:i1', 'urn:example:i93'). +'urn:example:i70'('urn:example:i1', 'urn:example:i9'). +'urn:example:i70'('urn:example:i20', 'urn:example:i9'). +'urn:example:i70'('urn:example:i22', 'urn:example:i78'). +'urn:example:i70'('urn:example:i23', 'urn:example:i63'). +'urn:example:i70'('urn:example:i23', 'urn:example:i93'). +'urn:example:i70'('urn:example:i24', 'urn:example:i6'). +'urn:example:i70'('urn:example:i25', 'urn:example:i0'). +'urn:example:i70'('urn:example:i25', 'urn:example:i60'). +'urn:example:i70'('urn:example:i27', 'urn:example:i0'). +'urn:example:i70'('urn:example:i27', 'urn:example:i0'). +'urn:example:i70'('urn:example:i27', 'urn:example:i84'). +'urn:example:i70'('urn:example:i27', 'urn:example:i90'). +'urn:example:i70'('urn:example:i29', 'urn:example:i78'). +'urn:example:i70'('urn:example:i2', 'urn:example:i3'). +'urn:example:i70'('urn:example:i2', 'urn:example:i48'). +'urn:example:i70'('urn:example:i31', 'urn:example:i33'). +'urn:example:i70'('urn:example:i31', 'urn:example:i45'). +'urn:example:i70'('urn:example:i31', 'urn:example:i87'). +'urn:example:i70'('urn:example:i32', 'urn:example:i36'). +'urn:example:i70'('urn:example:i32', 'urn:example:i42'). +'urn:example:i70'('urn:example:i32', 'urn:example:i60'). +'urn:example:i70'('urn:example:i33', 'urn:example:i45'). +'urn:example:i70'('urn:example:i34', 'urn:example:i36'). +'urn:example:i70'('urn:example:i34', 'urn:example:i45'). +'urn:example:i70'('urn:example:i37', 'urn:example:i24'). +'urn:example:i70'('urn:example:i39', 'urn:example:i48'). +'urn:example:i70'('urn:example:i41', 'urn:example:i24'). +'urn:example:i70'('urn:example:i41', 'urn:example:i27'). +'urn:example:i70'('urn:example:i41', 'urn:example:i90'). +'urn:example:i70'('urn:example:i42', 'urn:example:i6'). +'urn:example:i70'('urn:example:i43', 'urn:example:i6'). +'urn:example:i70'('urn:example:i44', 'urn:example:i39'). +'urn:example:i70'('urn:example:i46', 'urn:example:i15'). +'urn:example:i70'('urn:example:i46', 'urn:example:i39'). +'urn:example:i70'('urn:example:i46', 'urn:example:i54'). +'urn:example:i70'('urn:example:i48', 'urn:example:i69'). +'urn:example:i70'('urn:example:i48', 'urn:example:i6'). +'urn:example:i70'('urn:example:i49', 'urn:example:i36'). +'urn:example:i70'('urn:example:i4', 'urn:example:i69'). +'urn:example:i70'('urn:example:i51', 'urn:example:i39'). +'urn:example:i70'('urn:example:i52', 'urn:example:i60'). +'urn:example:i70'('urn:example:i55', 'urn:example:i3'). +'urn:example:i70'('urn:example:i55', 'urn:example:i60'). +'urn:example:i70'('urn:example:i56', 'urn:example:i33'). +'urn:example:i70'('urn:example:i57', 'urn:example:i78'). +'urn:example:i70'('urn:example:i58', 'urn:example:i27'). +'urn:example:i70'('urn:example:i5', 'urn:example:i12'). +'urn:example:i70'('urn:example:i5', 'urn:example:i42'). +'urn:example:i70'('urn:example:i62', 'urn:example:i36'). +'urn:example:i70'('urn:example:i64', 'urn:example:i45'). +'urn:example:i70'('urn:example:i64', 'urn:example:i48'). +'urn:example:i70'('urn:example:i65', 'urn:example:i0'). +'urn:example:i70'('urn:example:i65', 'urn:example:i18'). +'urn:example:i70'('urn:example:i65', 'urn:example:i63'). +'urn:example:i70'('urn:example:i67', 'urn:example:i87'). +'urn:example:i70'('urn:example:i68', 'urn:example:i63'). +'urn:example:i70'('urn:example:i69', 'urn:example:i84'). +'urn:example:i70'('urn:example:i69', 'urn:example:i90'). +'urn:example:i70'('urn:example:i70', 'urn:example:i24'). +'urn:example:i70'('urn:example:i71', 'urn:example:i33'). +'urn:example:i70'('urn:example:i72', 'urn:example:i60'). +'urn:example:i70'('urn:example:i72', 'urn:example:i84'). +'urn:example:i70'('urn:example:i73', 'urn:example:i87'). +'urn:example:i70'('urn:example:i75', 'urn:example:i15'). +'urn:example:i70'('urn:example:i75', 'urn:example:i60'). +'urn:example:i70'('urn:example:i75', 'urn:example:i63'). +'urn:example:i70'('urn:example:i75', 'urn:example:i69'). +'urn:example:i70'('urn:example:i77', 'urn:example:i12'). +'urn:example:i70'('urn:example:i7', 'urn:example:i90'). +'urn:example:i70'('urn:example:i81', 'urn:example:i30'). +'urn:example:i70'('urn:example:i83', 'urn:example:i84'). +'urn:example:i70'('urn:example:i84', 'urn:example:i30'). +'urn:example:i70'('urn:example:i84', 'urn:example:i45'). +'urn:example:i70'('urn:example:i84', 'urn:example:i75'). +'urn:example:i70'('urn:example:i84', 'urn:example:i87'). +'urn:example:i70'('urn:example:i85', 'urn:example:i39'). +'urn:example:i70'('urn:example:i87', 'urn:example:i33'). +'urn:example:i70'('urn:example:i87', 'urn:example:i33'). +'urn:example:i70'('urn:example:i87', 'urn:example:i3'). +'urn:example:i70'('urn:example:i87', 'urn:example:i45'). +'urn:example:i70'('urn:example:i87', 'urn:example:i69'). +'urn:example:i70'('urn:example:i87', 'urn:example:i6'). +'urn:example:i70'('urn:example:i88', 'urn:example:i90'). +'urn:example:i70'('urn:example:i8', 'urn:example:i75'). +'urn:example:i70'('urn:example:i90', 'urn:example:i39'). +'urn:example:i70'('urn:example:i93', 'urn:example:i24'). +'urn:example:i70'('urn:example:i93', 'urn:example:i75'). +'urn:example:i70'('urn:example:i94', 'urn:example:i24'). +'urn:example:i70'('urn:example:i96', 'urn:example:i48'). +'urn:example:i70'('urn:example:i96', 'urn:example:i93'). +'urn:example:i70'('urn:example:i97', 'urn:example:i42'). +'urn:example:i70'('urn:example:i97', 'urn:example:i78'). +'urn:example:i71'('urn:example:i0', 'urn:example:i18'). +'urn:example:i71'('urn:example:i0', 'urn:example:i21'). +'urn:example:i71'('urn:example:i0', 'urn:example:i45'). +'urn:example:i71'('urn:example:i11', 'urn:example:i21'). +'urn:example:i71'('urn:example:i11', 'urn:example:i60'). +'urn:example:i71'('urn:example:i11', 'urn:example:i63'). +'urn:example:i71'('urn:example:i11', 'urn:example:i66'). +'urn:example:i71'('urn:example:i13', 'urn:example:i63'). +'urn:example:i71'('urn:example:i14', 'urn:example:i21'). +'urn:example:i71'('urn:example:i14', 'urn:example:i21'). +'urn:example:i71'('urn:example:i15', 'urn:example:i66'). +'urn:example:i71'('urn:example:i16', 'urn:example:i93'). +'urn:example:i71'('urn:example:i19', 'urn:example:i0'). +'urn:example:i71'('urn:example:i1', 'urn:example:i21'). +'urn:example:i71'('urn:example:i20', 'urn:example:i66'). +'urn:example:i71'('urn:example:i21', 'urn:example:i0'). +'urn:example:i71'('urn:example:i21', 'urn:example:i9'). +'urn:example:i71'('urn:example:i22', 'urn:example:i33'). +'urn:example:i71'('urn:example:i22', 'urn:example:i6'). +'urn:example:i71'('urn:example:i23', 'urn:example:i36'). +'urn:example:i71'('urn:example:i23', 'urn:example:i48'). +'urn:example:i71'('urn:example:i23', 'urn:example:i54'). +'urn:example:i71'('urn:example:i24', 'urn:example:i3'). +'urn:example:i71'('urn:example:i24', 'urn:example:i57'). +'urn:example:i71'('urn:example:i25', 'urn:example:i42'). +'urn:example:i71'('urn:example:i26', 'urn:example:i24'). +'urn:example:i71'('urn:example:i2', 'urn:example:i24'). +'urn:example:i71'('urn:example:i30', 'urn:example:i69'). +'urn:example:i71'('urn:example:i35', 'urn:example:i9'). +'urn:example:i71'('urn:example:i38', 'urn:example:i12'). +'urn:example:i71'('urn:example:i38', 'urn:example:i27'). +'urn:example:i71'('urn:example:i40', 'urn:example:i69'). +'urn:example:i71'('urn:example:i41', 'urn:example:i45'). +'urn:example:i71'('urn:example:i41', 'urn:example:i51'). +'urn:example:i71'('urn:example:i43', 'urn:example:i12'). +'urn:example:i71'('urn:example:i43', 'urn:example:i30'). +'urn:example:i71'('urn:example:i44', 'urn:example:i57'). +'urn:example:i71'('urn:example:i45', 'urn:example:i21'). +'urn:example:i71'('urn:example:i45', 'urn:example:i30'). +'urn:example:i71'('urn:example:i45', 'urn:example:i3'). +'urn:example:i71'('urn:example:i45', 'urn:example:i42'). +'urn:example:i71'('urn:example:i45', 'urn:example:i90'). +'urn:example:i71'('urn:example:i46', 'urn:example:i75'). +'urn:example:i71'('urn:example:i46', 'urn:example:i78'). +'urn:example:i71'('urn:example:i47', 'urn:example:i27'). +'urn:example:i71'('urn:example:i49', 'urn:example:i36'). +'urn:example:i71'('urn:example:i4', 'urn:example:i54'). +'urn:example:i71'('urn:example:i4', 'urn:example:i9'). +'urn:example:i71'('urn:example:i50', 'urn:example:i6'). +'urn:example:i71'('urn:example:i51', 'urn:example:i27'). +'urn:example:i71'('urn:example:i51', 'urn:example:i3'). +'urn:example:i71'('urn:example:i51', 'urn:example:i42'). +'urn:example:i71'('urn:example:i52', 'urn:example:i48'). +'urn:example:i71'('urn:example:i53', 'urn:example:i15'). +'urn:example:i71'('urn:example:i53', 'urn:example:i45'). +'urn:example:i71'('urn:example:i59', 'urn:example:i0'). +'urn:example:i71'('urn:example:i61', 'urn:example:i0'). +'urn:example:i71'('urn:example:i61', 'urn:example:i75'). +'urn:example:i71'('urn:example:i61', 'urn:example:i9'). +'urn:example:i71'('urn:example:i63', 'urn:example:i54'). +'urn:example:i71'('urn:example:i64', 'urn:example:i21'). +'urn:example:i71'('urn:example:i64', 'urn:example:i93'). +'urn:example:i71'('urn:example:i65', 'urn:example:i90'). +'urn:example:i71'('urn:example:i67', 'urn:example:i18'). +'urn:example:i71'('urn:example:i67', 'urn:example:i99'). +'urn:example:i71'('urn:example:i68', 'urn:example:i45'). +'urn:example:i71'('urn:example:i68', 'urn:example:i57'). +'urn:example:i71'('urn:example:i69', 'urn:example:i75'). +'urn:example:i71'('urn:example:i70', 'urn:example:i21'). +'urn:example:i71'('urn:example:i70', 'urn:example:i21'). +'urn:example:i71'('urn:example:i71', 'urn:example:i60'). +'urn:example:i71'('urn:example:i73', 'urn:example:i96'). +'urn:example:i71'('urn:example:i74', 'urn:example:i0'). +'urn:example:i71'('urn:example:i75', 'urn:example:i42'). +'urn:example:i71'('urn:example:i77', 'urn:example:i48'). +'urn:example:i71'('urn:example:i78', 'urn:example:i81'). +'urn:example:i71'('urn:example:i79', 'urn:example:i24'). +'urn:example:i71'('urn:example:i7', 'urn:example:i9'). +'urn:example:i71'('urn:example:i80', 'urn:example:i42'). +'urn:example:i71'('urn:example:i80', 'urn:example:i90'). +'urn:example:i71'('urn:example:i80', 'urn:example:i9'). +'urn:example:i71'('urn:example:i82', 'urn:example:i51'). +'urn:example:i71'('urn:example:i82', 'urn:example:i57'). +'urn:example:i71'('urn:example:i83', 'urn:example:i30'). +'urn:example:i71'('urn:example:i87', 'urn:example:i21'). +'urn:example:i71'('urn:example:i88', 'urn:example:i36'). +'urn:example:i71'('urn:example:i88', 'urn:example:i51'). +'urn:example:i71'('urn:example:i88', 'urn:example:i75'). +'urn:example:i71'('urn:example:i89', 'urn:example:i81'). +'urn:example:i71'('urn:example:i8', 'urn:example:i48'). +'urn:example:i71'('urn:example:i8', 'urn:example:i57'). +'urn:example:i71'('urn:example:i90', 'urn:example:i75'). +'urn:example:i71'('urn:example:i90', 'urn:example:i9'). +'urn:example:i71'('urn:example:i92', 'urn:example:i66'). +'urn:example:i71'('urn:example:i93', 'urn:example:i6'). +'urn:example:i71'('urn:example:i94', 'urn:example:i0'). +'urn:example:i71'('urn:example:i95', 'urn:example:i15'). +'urn:example:i71'('urn:example:i95', 'urn:example:i93'). +'urn:example:i71'('urn:example:i96', 'urn:example:i45'). +'urn:example:i71'('urn:example:i97', 'urn:example:i69'). +'urn:example:i71'('urn:example:i98', 'urn:example:i33'). +'urn:example:i71'('urn:example:i98', 'urn:example:i96'). +'urn:example:i71'('urn:example:i99', 'urn:example:i87'). +'urn:example:i72'('urn:example:i11', 'urn:example:i15'). +'urn:example:i72'('urn:example:i16', 'urn:example:i18'). +'urn:example:i72'('urn:example:i18', 'urn:example:i45'). +'urn:example:i72'('urn:example:i1', 'urn:example:i90'). +'urn:example:i72'('urn:example:i21', 'urn:example:i18'). +'urn:example:i72'('urn:example:i21', 'urn:example:i36'). +'urn:example:i72'('urn:example:i21', 'urn:example:i93'). +'urn:example:i72'('urn:example:i22', 'urn:example:i3'). +'urn:example:i72'('urn:example:i22', 'urn:example:i63'). +'urn:example:i72'('urn:example:i22', 'urn:example:i69'). +'urn:example:i72'('urn:example:i23', 'urn:example:i18'). +'urn:example:i72'('urn:example:i24', 'urn:example:i81'). +'urn:example:i72'('urn:example:i25', 'urn:example:i60'). +'urn:example:i72'('urn:example:i26', 'urn:example:i45'). +'urn:example:i72'('urn:example:i27', 'urn:example:i90'). +'urn:example:i72'('urn:example:i28', 'urn:example:i45'). +'urn:example:i72'('urn:example:i28', 'urn:example:i75'). +'urn:example:i72'('urn:example:i29', 'urn:example:i18'). +'urn:example:i72'('urn:example:i29', 'urn:example:i33'). +'urn:example:i72'('urn:example:i29', 'urn:example:i54'). +'urn:example:i72'('urn:example:i2', 'urn:example:i39'). +'urn:example:i72'('urn:example:i33', 'urn:example:i27'). +'urn:example:i72'('urn:example:i33', 'urn:example:i72'). +'urn:example:i72'('urn:example:i34', 'urn:example:i27'). +'urn:example:i72'('urn:example:i37', 'urn:example:i24'). +'urn:example:i72'('urn:example:i37', 'urn:example:i51'). +'urn:example:i72'('urn:example:i38', 'urn:example:i18'). +'urn:example:i72'('urn:example:i40', 'urn:example:i30'). +'urn:example:i72'('urn:example:i41', 'urn:example:i81'). +'urn:example:i72'('urn:example:i42', 'urn:example:i90'). +'urn:example:i72'('urn:example:i43', 'urn:example:i36'). +'urn:example:i72'('urn:example:i44', 'urn:example:i33'). +'urn:example:i72'('urn:example:i44', 'urn:example:i3'). +'urn:example:i72'('urn:example:i46', 'urn:example:i30'). +'urn:example:i72'('urn:example:i47', 'urn:example:i66'). +'urn:example:i72'('urn:example:i47', 'urn:example:i66'). +'urn:example:i72'('urn:example:i48', 'urn:example:i0'). +'urn:example:i72'('urn:example:i52', 'urn:example:i87'). +'urn:example:i72'('urn:example:i54', 'urn:example:i87'). +'urn:example:i72'('urn:example:i55', 'urn:example:i81'). +'urn:example:i72'('urn:example:i56', 'urn:example:i45'). +'urn:example:i72'('urn:example:i56', 'urn:example:i96'). +'urn:example:i72'('urn:example:i57', 'urn:example:i84'). +'urn:example:i72'('urn:example:i57', 'urn:example:i96'). +'urn:example:i72'('urn:example:i57', 'urn:example:i99'). +'urn:example:i72'('urn:example:i5', 'urn:example:i30'). +'urn:example:i72'('urn:example:i5', 'urn:example:i96'). +'urn:example:i72'('urn:example:i60', 'urn:example:i60'). +'urn:example:i72'('urn:example:i61', 'urn:example:i9'). +'urn:example:i72'('urn:example:i62', 'urn:example:i57'). +'urn:example:i72'('urn:example:i64', 'urn:example:i42'). +'urn:example:i72'('urn:example:i67', 'urn:example:i33'). +'urn:example:i72'('urn:example:i67', 'urn:example:i54'). +'urn:example:i72'('urn:example:i67', 'urn:example:i63'). +'urn:example:i72'('urn:example:i68', 'urn:example:i24'). +'urn:example:i72'('urn:example:i68', 'urn:example:i90'). +'urn:example:i72'('urn:example:i68', 'urn:example:i93'). +'urn:example:i72'('urn:example:i6', 'urn:example:i12'). +'urn:example:i72'('urn:example:i73', 'urn:example:i57'). +'urn:example:i72'('urn:example:i73', 'urn:example:i60'). +'urn:example:i72'('urn:example:i74', 'urn:example:i27'). +'urn:example:i72'('urn:example:i74', 'urn:example:i6'). +'urn:example:i72'('urn:example:i74', 'urn:example:i9'). +'urn:example:i72'('urn:example:i75', 'urn:example:i66'). +'urn:example:i72'('urn:example:i7', 'urn:example:i63'). +'urn:example:i72'('urn:example:i80', 'urn:example:i75'). +'urn:example:i72'('urn:example:i82', 'urn:example:i15'). +'urn:example:i72'('urn:example:i82', 'urn:example:i3'). +'urn:example:i72'('urn:example:i83', 'urn:example:i87'). +'urn:example:i72'('urn:example:i84', 'urn:example:i39'). +'urn:example:i72'('urn:example:i86', 'urn:example:i12'). +'urn:example:i72'('urn:example:i86', 'urn:example:i24'). +'urn:example:i72'('urn:example:i86', 'urn:example:i9'). +'urn:example:i72'('urn:example:i89', 'urn:example:i12'). +'urn:example:i72'('urn:example:i89', 'urn:example:i78'). +'urn:example:i72'('urn:example:i91', 'urn:example:i18'). +'urn:example:i72'('urn:example:i91', 'urn:example:i81'). +'urn:example:i72'('urn:example:i94', 'urn:example:i6'). +'urn:example:i72'('urn:example:i95', 'urn:example:i33'). +'urn:example:i72'('urn:example:i97', 'urn:example:i24'). +'urn:example:i73'('urn:example:i11', 'urn:example:i36'). +'urn:example:i73'('urn:example:i11', 'urn:example:i54'). +'urn:example:i73'('urn:example:i12', 'urn:example:i72'). +'urn:example:i73'('urn:example:i13', 'urn:example:i21'). +'urn:example:i73'('urn:example:i13', 'urn:example:i93'). +'urn:example:i73'('urn:example:i15', 'urn:example:i39'). +'urn:example:i73'('urn:example:i15', 'urn:example:i45'). +'urn:example:i73'('urn:example:i18', 'urn:example:i24'). +'urn:example:i73'('urn:example:i18', 'urn:example:i27'). +'urn:example:i73'('urn:example:i18', 'urn:example:i45'). +'urn:example:i73'('urn:example:i18', 'urn:example:i54'). +'urn:example:i73'('urn:example:i18', 'urn:example:i78'). +'urn:example:i73'('urn:example:i19', 'urn:example:i75'). +'urn:example:i73'('urn:example:i22', 'urn:example:i30'). +'urn:example:i73'('urn:example:i22', 'urn:example:i96'). +'urn:example:i73'('urn:example:i25', 'urn:example:i18'). +'urn:example:i73'('urn:example:i25', 'urn:example:i60'). +'urn:example:i73'('urn:example:i25', 'urn:example:i93'). +'urn:example:i73'('urn:example:i26', 'urn:example:i42'). +'urn:example:i73'('urn:example:i27', 'urn:example:i75'). +'urn:example:i73'('urn:example:i28', 'urn:example:i48'). +'urn:example:i73'('urn:example:i28', 'urn:example:i57'). +'urn:example:i73'('urn:example:i28', 'urn:example:i66'). +'urn:example:i73'('urn:example:i28', 'urn:example:i69'). +'urn:example:i73'('urn:example:i29', 'urn:example:i90'). +'urn:example:i73'('urn:example:i2', 'urn:example:i75'). +'urn:example:i73'('urn:example:i30', 'urn:example:i57'). +'urn:example:i73'('urn:example:i31', 'urn:example:i24'). +'urn:example:i73'('urn:example:i35', 'urn:example:i0'). +'urn:example:i73'('urn:example:i35', 'urn:example:i3'). +'urn:example:i73'('urn:example:i35', 'urn:example:i9'). +'urn:example:i73'('urn:example:i36', 'urn:example:i21'). +'urn:example:i73'('urn:example:i36', 'urn:example:i81'). +'urn:example:i73'('urn:example:i37', 'urn:example:i0'). +'urn:example:i73'('urn:example:i38', 'urn:example:i39'). +'urn:example:i73'('urn:example:i39', 'urn:example:i33'). +'urn:example:i73'('urn:example:i40', 'urn:example:i24'). +'urn:example:i73'('urn:example:i40', 'urn:example:i45'). +'urn:example:i73'('urn:example:i41', 'urn:example:i48'). +'urn:example:i73'('urn:example:i42', 'urn:example:i30'). +'urn:example:i73'('urn:example:i42', 'urn:example:i48'). +'urn:example:i73'('urn:example:i42', 'urn:example:i9'). +'urn:example:i73'('urn:example:i43', 'urn:example:i24'). +'urn:example:i73'('urn:example:i43', 'urn:example:i30'). +'urn:example:i73'('urn:example:i44', 'urn:example:i12'). +'urn:example:i73'('urn:example:i46', 'urn:example:i6'). +'urn:example:i73'('urn:example:i47', 'urn:example:i15'). +'urn:example:i73'('urn:example:i48', 'urn:example:i6'). +'urn:example:i73'('urn:example:i49', 'urn:example:i3'). +'urn:example:i73'('urn:example:i50', 'urn:example:i42'). +'urn:example:i73'('urn:example:i51', 'urn:example:i30'). +'urn:example:i73'('urn:example:i51', 'urn:example:i33'). +'urn:example:i73'('urn:example:i52', 'urn:example:i0'). +'urn:example:i73'('urn:example:i52', 'urn:example:i99'). +'urn:example:i73'('urn:example:i54', 'urn:example:i78'). +'urn:example:i73'('urn:example:i55', 'urn:example:i66'). +'urn:example:i73'('urn:example:i56', 'urn:example:i27'). +'urn:example:i73'('urn:example:i57', 'urn:example:i24'). +'urn:example:i73'('urn:example:i58', 'urn:example:i51'). +'urn:example:i73'('urn:example:i58', 'urn:example:i90'). +'urn:example:i73'('urn:example:i59', 'urn:example:i36'). +'urn:example:i73'('urn:example:i59', 'urn:example:i54'). +'urn:example:i73'('urn:example:i59', 'urn:example:i93'). +'urn:example:i73'('urn:example:i5', 'urn:example:i69'). +'urn:example:i73'('urn:example:i60', 'urn:example:i36'). +'urn:example:i73'('urn:example:i60', 'urn:example:i69'). +'urn:example:i73'('urn:example:i61', 'urn:example:i69'). +'urn:example:i73'('urn:example:i61', 'urn:example:i72'). +'urn:example:i73'('urn:example:i62', 'urn:example:i3'). +'urn:example:i73'('urn:example:i62', 'urn:example:i87'). +'urn:example:i73'('urn:example:i63', 'urn:example:i57'). +'urn:example:i73'('urn:example:i65', 'urn:example:i57'). +'urn:example:i73'('urn:example:i66', 'urn:example:i6'). +'urn:example:i73'('urn:example:i67', 'urn:example:i63'). +'urn:example:i73'('urn:example:i68', 'urn:example:i15'). +'urn:example:i73'('urn:example:i68', 'urn:example:i51'). +'urn:example:i73'('urn:example:i68', 'urn:example:i54'). +'urn:example:i73'('urn:example:i68', 'urn:example:i87'). +'urn:example:i73'('urn:example:i68', 'urn:example:i90'). +'urn:example:i73'('urn:example:i69', 'urn:example:i63'). +'urn:example:i73'('urn:example:i6', 'urn:example:i90'). +'urn:example:i73'('urn:example:i70', 'urn:example:i33'). +'urn:example:i73'('urn:example:i71', 'urn:example:i0'). +'urn:example:i73'('urn:example:i72', 'urn:example:i33'). +'urn:example:i73'('urn:example:i74', 'urn:example:i60'). +'urn:example:i73'('urn:example:i74', 'urn:example:i99'). +'urn:example:i73'('urn:example:i75', 'urn:example:i90'). +'urn:example:i73'('urn:example:i76', 'urn:example:i57'). +'urn:example:i73'('urn:example:i76', 'urn:example:i87'). +'urn:example:i73'('urn:example:i77', 'urn:example:i3'). +'urn:example:i73'('urn:example:i78', 'urn:example:i96'). +'urn:example:i73'('urn:example:i79', 'urn:example:i3'). +'urn:example:i73'('urn:example:i79', 'urn:example:i9'). +'urn:example:i73'('urn:example:i81', 'urn:example:i57'). +'urn:example:i73'('urn:example:i82', 'urn:example:i27'). +'urn:example:i73'('urn:example:i83', 'urn:example:i48'). +'urn:example:i73'('urn:example:i84', 'urn:example:i45'). +'urn:example:i73'('urn:example:i86', 'urn:example:i63'). +'urn:example:i73'('urn:example:i86', 'urn:example:i84'). +'urn:example:i73'('urn:example:i87', 'urn:example:i15'). +'urn:example:i73'('urn:example:i87', 'urn:example:i63'). +'urn:example:i73'('urn:example:i88', 'urn:example:i39'). +'urn:example:i73'('urn:example:i89', 'urn:example:i36'). +'urn:example:i73'('urn:example:i89', 'urn:example:i51'). +'urn:example:i73'('urn:example:i8', 'urn:example:i51'). +'urn:example:i73'('urn:example:i8', 'urn:example:i75'). +'urn:example:i73'('urn:example:i92', 'urn:example:i24'). +'urn:example:i73'('urn:example:i92', 'urn:example:i60'). +'urn:example:i73'('urn:example:i94', 'urn:example:i24'). +'urn:example:i73'('urn:example:i95', 'urn:example:i12'). +'urn:example:i73'('urn:example:i95', 'urn:example:i54'). +'urn:example:i73'('urn:example:i97', 'urn:example:i18'). +'urn:example:i73'('urn:example:i99', 'urn:example:i48'). +'urn:example:i73'('urn:example:i9', 'urn:example:i27'). +'urn:example:i74'('urn:example:i0', 'urn:example:i3'). +'urn:example:i74'('urn:example:i0', 'urn:example:i75'). +'urn:example:i74'('urn:example:i10', 'urn:example:i51'). +'urn:example:i74'('urn:example:i15', 'urn:example:i75'). +'urn:example:i74'('urn:example:i16', 'urn:example:i0'). +'urn:example:i74'('urn:example:i16', 'urn:example:i39'). +'urn:example:i74'('urn:example:i16', 'urn:example:i90'). +'urn:example:i74'('urn:example:i18', 'urn:example:i36'). +'urn:example:i74'('urn:example:i21', 'urn:example:i27'). +'urn:example:i74'('urn:example:i21', 'urn:example:i54'). +'urn:example:i74'('urn:example:i24', 'urn:example:i12'). +'urn:example:i74'('urn:example:i25', 'urn:example:i15'). +'urn:example:i74'('urn:example:i26', 'urn:example:i54'). +'urn:example:i74'('urn:example:i27', 'urn:example:i36'). +'urn:example:i74'('urn:example:i27', 'urn:example:i57'). +'urn:example:i74'('urn:example:i30', 'urn:example:i87'). +'urn:example:i74'('urn:example:i32', 'urn:example:i36'). +'urn:example:i74'('urn:example:i33', 'urn:example:i60'). +'urn:example:i74'('urn:example:i34', 'urn:example:i30'). +'urn:example:i74'('urn:example:i34', 'urn:example:i9'). +'urn:example:i74'('urn:example:i35', 'urn:example:i45'). +'urn:example:i74'('urn:example:i36', 'urn:example:i81'). +'urn:example:i74'('urn:example:i37', 'urn:example:i0'). +'urn:example:i74'('urn:example:i39', 'urn:example:i84'). +'urn:example:i74'('urn:example:i39', 'urn:example:i90'). +'urn:example:i74'('urn:example:i3', 'urn:example:i45'). +'urn:example:i74'('urn:example:i41', 'urn:example:i36'). +'urn:example:i74'('urn:example:i41', 'urn:example:i90'). +'urn:example:i74'('urn:example:i42', 'urn:example:i48'). +'urn:example:i74'('urn:example:i43', 'urn:example:i75'). +'urn:example:i74'('urn:example:i43', 'urn:example:i96'). +'urn:example:i74'('urn:example:i44', 'urn:example:i15'). +'urn:example:i74'('urn:example:i44', 'urn:example:i63'). +'urn:example:i74'('urn:example:i45', 'urn:example:i33'). +'urn:example:i74'('urn:example:i46', 'urn:example:i60'). +'urn:example:i74'('urn:example:i47', 'urn:example:i21'). +'urn:example:i74'('urn:example:i47', 'urn:example:i48'). +'urn:example:i74'('urn:example:i48', 'urn:example:i3'). +'urn:example:i74'('urn:example:i48', 'urn:example:i93'). +'urn:example:i74'('urn:example:i4', 'urn:example:i12'). +'urn:example:i74'('urn:example:i4', 'urn:example:i21'). +'urn:example:i74'('urn:example:i52', 'urn:example:i12'). +'urn:example:i74'('urn:example:i54', 'urn:example:i0'). +'urn:example:i74'('urn:example:i55', 'urn:example:i96'). +'urn:example:i74'('urn:example:i57', 'urn:example:i27'). +'urn:example:i74'('urn:example:i58', 'urn:example:i96'). +'urn:example:i74'('urn:example:i59', 'urn:example:i36'). +'urn:example:i74'('urn:example:i5', 'urn:example:i0'). +'urn:example:i74'('urn:example:i60', 'urn:example:i33'). +'urn:example:i74'('urn:example:i61', 'urn:example:i12'). +'urn:example:i74'('urn:example:i61', 'urn:example:i93'). +'urn:example:i74'('urn:example:i62', 'urn:example:i30'). +'urn:example:i74'('urn:example:i63', 'urn:example:i18'). +'urn:example:i74'('urn:example:i63', 'urn:example:i33'). +'urn:example:i74'('urn:example:i64', 'urn:example:i63'). +'urn:example:i74'('urn:example:i64', 'urn:example:i87'). +'urn:example:i74'('urn:example:i65', 'urn:example:i39'). +'urn:example:i74'('urn:example:i67', 'urn:example:i12'). +'urn:example:i74'('urn:example:i70', 'urn:example:i0'). +'urn:example:i74'('urn:example:i70', 'urn:example:i78'). +'urn:example:i74'('urn:example:i72', 'urn:example:i54'). +'urn:example:i74'('urn:example:i74', 'urn:example:i54'). +'urn:example:i74'('urn:example:i74', 'urn:example:i72'). +'urn:example:i74'('urn:example:i74', 'urn:example:i87'). +'urn:example:i74'('urn:example:i77', 'urn:example:i45'). +'urn:example:i74'('urn:example:i79', 'urn:example:i30'). +'urn:example:i74'('urn:example:i7', 'urn:example:i18'). +'urn:example:i74'('urn:example:i81', 'urn:example:i15'). +'urn:example:i74'('urn:example:i81', 'urn:example:i24'). +'urn:example:i74'('urn:example:i81', 'urn:example:i75'). +'urn:example:i74'('urn:example:i82', 'urn:example:i36'). +'urn:example:i74'('urn:example:i82', 'urn:example:i63'). +'urn:example:i74'('urn:example:i83', 'urn:example:i24'). +'urn:example:i74'('urn:example:i84', 'urn:example:i48'). +'urn:example:i74'('urn:example:i85', 'urn:example:i15'). +'urn:example:i74'('urn:example:i85', 'urn:example:i21'). +'urn:example:i74'('urn:example:i87', 'urn:example:i18'). +'urn:example:i74'('urn:example:i87', 'urn:example:i33'). +'urn:example:i74'('urn:example:i88', 'urn:example:i87'). +'urn:example:i74'('urn:example:i89', 'urn:example:i27'). +'urn:example:i74'('urn:example:i90', 'urn:example:i90'). +'urn:example:i74'('urn:example:i91', 'urn:example:i15'). +'urn:example:i74'('urn:example:i91', 'urn:example:i27'). +'urn:example:i74'('urn:example:i93', 'urn:example:i27'). +'urn:example:i74'('urn:example:i95', 'urn:example:i57'). +'urn:example:i74'('urn:example:i97', 'urn:example:i54'). +'urn:example:i74'('urn:example:i97', 'urn:example:i9'). +'urn:example:i74'('urn:example:i9', 'urn:example:i84'). +'urn:example:i75'('urn:example:i0', 'urn:example:i0'). +'urn:example:i75'('urn:example:i0', 'urn:example:i30'). +'urn:example:i75'('urn:example:i0', 'urn:example:i39'). +'urn:example:i75'('urn:example:i10', 'urn:example:i87'). +'urn:example:i75'('urn:example:i12', 'urn:example:i21'). +'urn:example:i75'('urn:example:i12', 'urn:example:i45'). +'urn:example:i75'('urn:example:i13', 'urn:example:i57'). +'urn:example:i75'('urn:example:i15', 'urn:example:i0'). +'urn:example:i75'('urn:example:i15', 'urn:example:i18'). +'urn:example:i75'('urn:example:i15', 'urn:example:i21'). +'urn:example:i75'('urn:example:i15', 'urn:example:i96'). +'urn:example:i75'('urn:example:i15', 'urn:example:i96'). +'urn:example:i75'('urn:example:i16', 'urn:example:i15'). +'urn:example:i75'('urn:example:i17', 'urn:example:i90'). +'urn:example:i75'('urn:example:i18', 'urn:example:i36'). +'urn:example:i75'('urn:example:i19', 'urn:example:i57'). +'urn:example:i75'('urn:example:i1', 'urn:example:i9'). +'urn:example:i75'('urn:example:i20', 'urn:example:i42'). +'urn:example:i75'('urn:example:i20', 'urn:example:i66'). +'urn:example:i75'('urn:example:i23', 'urn:example:i36'). +'urn:example:i75'('urn:example:i25', 'urn:example:i84'). +'urn:example:i75'('urn:example:i26', 'urn:example:i78'). +'urn:example:i75'('urn:example:i27', 'urn:example:i69'). +'urn:example:i75'('urn:example:i27', 'urn:example:i81'). +'urn:example:i75'('urn:example:i28', 'urn:example:i72'). +'urn:example:i75'('urn:example:i28', 'urn:example:i75'). +'urn:example:i75'('urn:example:i29', 'urn:example:i27'). +'urn:example:i75'('urn:example:i29', 'urn:example:i66'). +'urn:example:i75'('urn:example:i2', 'urn:example:i15'). +'urn:example:i75'('urn:example:i2', 'urn:example:i18'). +'urn:example:i75'('urn:example:i2', 'urn:example:i75'). +'urn:example:i75'('urn:example:i30', 'urn:example:i0'). +'urn:example:i75'('urn:example:i31', 'urn:example:i87'). +'urn:example:i75'('urn:example:i31', 'urn:example:i96'). +'urn:example:i75'('urn:example:i32', 'urn:example:i39'). +'urn:example:i75'('urn:example:i32', 'urn:example:i87'). +'urn:example:i75'('urn:example:i33', 'urn:example:i60'). +'urn:example:i75'('urn:example:i34', 'urn:example:i42'). +'urn:example:i75'('urn:example:i37', 'urn:example:i60'). +'urn:example:i75'('urn:example:i3', 'urn:example:i48'). +'urn:example:i75'('urn:example:i40', 'urn:example:i63'). +'urn:example:i75'('urn:example:i41', 'urn:example:i51'). +'urn:example:i75'('urn:example:i43', 'urn:example:i21'). +'urn:example:i75'('urn:example:i44', 'urn:example:i9'). +'urn:example:i75'('urn:example:i45', 'urn:example:i3'). +'urn:example:i75'('urn:example:i46', 'urn:example:i0'). +'urn:example:i75'('urn:example:i46', 'urn:example:i96'). +'urn:example:i75'('urn:example:i47', 'urn:example:i51'). +'urn:example:i75'('urn:example:i48', 'urn:example:i12'). +'urn:example:i75'('urn:example:i48', 'urn:example:i69'). +'urn:example:i75'('urn:example:i48', 'urn:example:i96'). +'urn:example:i75'('urn:example:i49', 'urn:example:i63'). +'urn:example:i75'('urn:example:i49', 'urn:example:i90'). +'urn:example:i75'('urn:example:i4', 'urn:example:i96'). +'urn:example:i75'('urn:example:i50', 'urn:example:i45'). +'urn:example:i75'('urn:example:i50', 'urn:example:i69'). +'urn:example:i75'('urn:example:i50', 'urn:example:i81'). +'urn:example:i75'('urn:example:i54', 'urn:example:i42'). +'urn:example:i75'('urn:example:i54', 'urn:example:i72'). +'urn:example:i75'('urn:example:i55', 'urn:example:i78'). +'urn:example:i75'('urn:example:i57', 'urn:example:i75'). +'urn:example:i75'('urn:example:i58', 'urn:example:i18'). +'urn:example:i75'('urn:example:i59', 'urn:example:i0'). +'urn:example:i75'('urn:example:i59', 'urn:example:i66'). +'urn:example:i75'('urn:example:i59', 'urn:example:i66'). +'urn:example:i75'('urn:example:i59', 'urn:example:i96'). +'urn:example:i75'('urn:example:i60', 'urn:example:i45'). +'urn:example:i75'('urn:example:i60', 'urn:example:i75'). +'urn:example:i75'('urn:example:i62', 'urn:example:i36'). +'urn:example:i75'('urn:example:i62', 'urn:example:i57'). +'urn:example:i75'('urn:example:i62', 'urn:example:i99'). +'urn:example:i75'('urn:example:i64', 'urn:example:i57'). +'urn:example:i75'('urn:example:i65', 'urn:example:i42'). +'urn:example:i75'('urn:example:i65', 'urn:example:i75'). +'urn:example:i75'('urn:example:i65', 'urn:example:i78'). +'urn:example:i75'('urn:example:i66', 'urn:example:i48'). +'urn:example:i75'('urn:example:i66', 'urn:example:i6'). +'urn:example:i75'('urn:example:i67', 'urn:example:i42'). +'urn:example:i75'('urn:example:i6', 'urn:example:i27'). +'urn:example:i75'('urn:example:i70', 'urn:example:i18'). +'urn:example:i75'('urn:example:i70', 'urn:example:i72'). +'urn:example:i75'('urn:example:i71', 'urn:example:i3'). +'urn:example:i75'('urn:example:i72', 'urn:example:i96'). +'urn:example:i75'('urn:example:i73', 'urn:example:i27'). +'urn:example:i75'('urn:example:i74', 'urn:example:i87'). +'urn:example:i75'('urn:example:i75', 'urn:example:i69'). +'urn:example:i75'('urn:example:i76', 'urn:example:i66'). +'urn:example:i75'('urn:example:i76', 'urn:example:i9'). +'urn:example:i75'('urn:example:i77', 'urn:example:i87'). +'urn:example:i75'('urn:example:i78', 'urn:example:i21'). +'urn:example:i75'('urn:example:i79', 'urn:example:i57'). +'urn:example:i75'('urn:example:i79', 'urn:example:i81'). +'urn:example:i75'('urn:example:i79', 'urn:example:i87'). +'urn:example:i75'('urn:example:i81', 'urn:example:i96'). +'urn:example:i75'('urn:example:i82', 'urn:example:i39'). +'urn:example:i75'('urn:example:i82', 'urn:example:i63'). +'urn:example:i75'('urn:example:i82', 'urn:example:i6'). +'urn:example:i75'('urn:example:i83', 'urn:example:i90'). +'urn:example:i75'('urn:example:i84', 'urn:example:i36'). +'urn:example:i75'('urn:example:i84', 'urn:example:i93'). +'urn:example:i75'('urn:example:i85', 'urn:example:i42'). +'urn:example:i75'('urn:example:i86', 'urn:example:i48'). +'urn:example:i75'('urn:example:i87', 'urn:example:i48'). +'urn:example:i75'('urn:example:i8', 'urn:example:i18'). +'urn:example:i75'('urn:example:i8', 'urn:example:i75'). +'urn:example:i75'('urn:example:i8', 'urn:example:i96'). +'urn:example:i75'('urn:example:i91', 'urn:example:i87'). +'urn:example:i75'('urn:example:i93', 'urn:example:i78'). +'urn:example:i75'('urn:example:i97', 'urn:example:i60'). +'urn:example:i75'('urn:example:i99', 'urn:example:i33'). +'urn:example:i75'('urn:example:i99', 'urn:example:i78'). +'urn:example:i76'('urn:example:i0', 'urn:example:i30'). +'urn:example:i76'('urn:example:i10', 'urn:example:i15'). +'urn:example:i76'('urn:example:i12', 'urn:example:i66'). +'urn:example:i76'('urn:example:i12', 'urn:example:i66'). +'urn:example:i76'('urn:example:i14', 'urn:example:i60'). +'urn:example:i76'('urn:example:i14', 'urn:example:i72'). +'urn:example:i76'('urn:example:i15', 'urn:example:i33'). +'urn:example:i76'('urn:example:i17', 'urn:example:i21'). +'urn:example:i76'('urn:example:i17', 'urn:example:i27'). +'urn:example:i76'('urn:example:i18', 'urn:example:i27'). +'urn:example:i76'('urn:example:i1', 'urn:example:i48'). +'urn:example:i76'('urn:example:i20', 'urn:example:i60'). +'urn:example:i76'('urn:example:i21', 'urn:example:i84'). +'urn:example:i76'('urn:example:i26', 'urn:example:i57'). +'urn:example:i76'('urn:example:i28', 'urn:example:i12'). +'urn:example:i76'('urn:example:i29', 'urn:example:i21'). +'urn:example:i76'('urn:example:i29', 'urn:example:i33'). +'urn:example:i76'('urn:example:i29', 'urn:example:i48'). +'urn:example:i76'('urn:example:i2', 'urn:example:i42'). +'urn:example:i76'('urn:example:i2', 'urn:example:i9'). +'urn:example:i76'('urn:example:i31', 'urn:example:i12'). +'urn:example:i76'('urn:example:i32', 'urn:example:i63'). +'urn:example:i76'('urn:example:i32', 'urn:example:i96'). +'urn:example:i76'('urn:example:i35', 'urn:example:i30'). +'urn:example:i76'('urn:example:i35', 'urn:example:i72'). +'urn:example:i76'('urn:example:i35', 'urn:example:i75'). +'urn:example:i76'('urn:example:i38', 'urn:example:i42'). +'urn:example:i76'('urn:example:i38', 'urn:example:i93'). +'urn:example:i76'('urn:example:i3', 'urn:example:i51'). +'urn:example:i76'('urn:example:i3', 'urn:example:i96'). +'urn:example:i76'('urn:example:i42', 'urn:example:i12'). +'urn:example:i76'('urn:example:i43', 'urn:example:i78'). +'urn:example:i76'('urn:example:i44', 'urn:example:i39'). +'urn:example:i76'('urn:example:i44', 'urn:example:i69'). +'urn:example:i76'('urn:example:i45', 'urn:example:i57'). +'urn:example:i76'('urn:example:i47', 'urn:example:i66'). +'urn:example:i76'('urn:example:i48', 'urn:example:i18'). +'urn:example:i76'('urn:example:i49', 'urn:example:i54'). +'urn:example:i76'('urn:example:i4', 'urn:example:i48'). +'urn:example:i76'('urn:example:i4', 'urn:example:i51'). +'urn:example:i76'('urn:example:i50', 'urn:example:i93'). +'urn:example:i76'('urn:example:i50', 'urn:example:i9'). +'urn:example:i76'('urn:example:i52', 'urn:example:i78'). +'urn:example:i76'('urn:example:i53', 'urn:example:i12'). +'urn:example:i76'('urn:example:i53', 'urn:example:i90'). +'urn:example:i76'('urn:example:i53', 'urn:example:i9'). +'urn:example:i76'('urn:example:i55', 'urn:example:i51'). +'urn:example:i76'('urn:example:i58', 'urn:example:i75'). +'urn:example:i76'('urn:example:i59', 'urn:example:i15'). +'urn:example:i76'('urn:example:i59', 'urn:example:i75'). +'urn:example:i76'('urn:example:i5', 'urn:example:i45'). +'urn:example:i76'('urn:example:i60', 'urn:example:i21'). +'urn:example:i76'('urn:example:i60', 'urn:example:i78'). +'urn:example:i76'('urn:example:i61', 'urn:example:i66'). +'urn:example:i76'('urn:example:i62', 'urn:example:i69'). +'urn:example:i76'('urn:example:i62', 'urn:example:i81'). +'urn:example:i76'('urn:example:i67', 'urn:example:i9'). +'urn:example:i76'('urn:example:i67', 'urn:example:i9'). +'urn:example:i76'('urn:example:i68', 'urn:example:i75'). +'urn:example:i76'('urn:example:i70', 'urn:example:i27'). +'urn:example:i76'('urn:example:i72', 'urn:example:i90'). +'urn:example:i76'('urn:example:i73', 'urn:example:i21'). +'urn:example:i76'('urn:example:i74', 'urn:example:i27'). +'urn:example:i76'('urn:example:i75', 'urn:example:i51'). +'urn:example:i76'('urn:example:i75', 'urn:example:i78'). +'urn:example:i76'('urn:example:i76', 'urn:example:i63'). +'urn:example:i76'('urn:example:i76', 'urn:example:i84'). +'urn:example:i76'('urn:example:i78', 'urn:example:i60'). +'urn:example:i76'('urn:example:i78', 'urn:example:i60'). +'urn:example:i76'('urn:example:i7', 'urn:example:i15'). +'urn:example:i76'('urn:example:i81', 'urn:example:i24'). +'urn:example:i76'('urn:example:i81', 'urn:example:i48'). +'urn:example:i76'('urn:example:i81', 'urn:example:i60'). +'urn:example:i76'('urn:example:i82', 'urn:example:i3'). +'urn:example:i76'('urn:example:i82', 'urn:example:i81'). +'urn:example:i76'('urn:example:i83', 'urn:example:i12'). +'urn:example:i76'('urn:example:i83', 'urn:example:i57'). +'urn:example:i76'('urn:example:i83', 'urn:example:i87'). +'urn:example:i76'('urn:example:i86', 'urn:example:i63'). +'urn:example:i76'('urn:example:i87', 'urn:example:i3'). +'urn:example:i76'('urn:example:i87', 'urn:example:i63'). +'urn:example:i76'('urn:example:i89', 'urn:example:i27'). +'urn:example:i76'('urn:example:i91', 'urn:example:i30'). +'urn:example:i76'('urn:example:i91', 'urn:example:i99'). +'urn:example:i76'('urn:example:i92', 'urn:example:i0'). +'urn:example:i76'('urn:example:i93', 'urn:example:i3'). +'urn:example:i76'('urn:example:i93', 'urn:example:i75'). +'urn:example:i76'('urn:example:i94', 'urn:example:i66'). +'urn:example:i76'('urn:example:i94', 'urn:example:i69'). +'urn:example:i76'('urn:example:i94', 'urn:example:i93'). +'urn:example:i76'('urn:example:i95', 'urn:example:i78'). +'urn:example:i76'('urn:example:i98', 'urn:example:i63'). +'urn:example:i76'('urn:example:i98', 'urn:example:i72'). +'urn:example:i76'('urn:example:i99', 'urn:example:i0'). +'urn:example:i76'('urn:example:i99', 'urn:example:i12'). +'urn:example:i76'('urn:example:i9', 'urn:example:i57'). +'urn:example:i77'('urn:example:i11', 'urn:example:i96'). +'urn:example:i77'('urn:example:i12', 'urn:example:i39'). +'urn:example:i77'('urn:example:i12', 'urn:example:i57'). +'urn:example:i77'('urn:example:i1', 'urn:example:i57'). +'urn:example:i77'('urn:example:i1', 'urn:example:i84'). +'urn:example:i77'('urn:example:i20', 'urn:example:i36'). +'urn:example:i77'('urn:example:i20', 'urn:example:i9'). +'urn:example:i77'('urn:example:i22', 'urn:example:i6'). +'urn:example:i77'('urn:example:i23', 'urn:example:i33'). +'urn:example:i77'('urn:example:i23', 'urn:example:i87'). +'urn:example:i77'('urn:example:i24', 'urn:example:i24'). +'urn:example:i77'('urn:example:i24', 'urn:example:i6'). +'urn:example:i77'('urn:example:i24', 'urn:example:i72'). +'urn:example:i77'('urn:example:i29', 'urn:example:i84'). +'urn:example:i77'('urn:example:i30', 'urn:example:i87'). +'urn:example:i77'('urn:example:i33', 'urn:example:i0'). +'urn:example:i77'('urn:example:i33', 'urn:example:i60'). +'urn:example:i77'('urn:example:i33', 'urn:example:i96'). +'urn:example:i77'('urn:example:i34', 'urn:example:i60'). +'urn:example:i77'('urn:example:i34', 'urn:example:i72'). +'urn:example:i77'('urn:example:i35', 'urn:example:i0'). +'urn:example:i77'('urn:example:i36', 'urn:example:i24'). +'urn:example:i77'('urn:example:i36', 'urn:example:i90'). +'urn:example:i77'('urn:example:i37', 'urn:example:i24'). +'urn:example:i77'('urn:example:i37', 'urn:example:i9'). +'urn:example:i77'('urn:example:i38', 'urn:example:i15'). +'urn:example:i77'('urn:example:i38', 'urn:example:i90'). +'urn:example:i77'('urn:example:i40', 'urn:example:i30'). +'urn:example:i77'('urn:example:i41', 'urn:example:i48'). +'urn:example:i77'('urn:example:i42', 'urn:example:i72'). +'urn:example:i77'('urn:example:i44', 'urn:example:i48'). +'urn:example:i77'('urn:example:i45', 'urn:example:i21'). +'urn:example:i77'('urn:example:i47', 'urn:example:i33'). +'urn:example:i77'('urn:example:i47', 'urn:example:i75'). +'urn:example:i77'('urn:example:i48', 'urn:example:i57'). +'urn:example:i77'('urn:example:i49', 'urn:example:i21'). +'urn:example:i77'('urn:example:i4', 'urn:example:i66'). +'urn:example:i77'('urn:example:i50', 'urn:example:i27'). +'urn:example:i77'('urn:example:i52', 'urn:example:i60'). +'urn:example:i77'('urn:example:i53', 'urn:example:i21'). +'urn:example:i77'('urn:example:i55', 'urn:example:i75'). +'urn:example:i77'('urn:example:i57', 'urn:example:i18'). +'urn:example:i77'('urn:example:i59', 'urn:example:i21'). +'urn:example:i77'('urn:example:i5', 'urn:example:i57'). +'urn:example:i77'('urn:example:i64', 'urn:example:i36'). +'urn:example:i77'('urn:example:i64', 'urn:example:i60'). +'urn:example:i77'('urn:example:i65', 'urn:example:i96'). +'urn:example:i77'('urn:example:i65', 'urn:example:i9'). +'urn:example:i77'('urn:example:i66', 'urn:example:i24'). +'urn:example:i77'('urn:example:i66', 'urn:example:i42'). +'urn:example:i77'('urn:example:i66', 'urn:example:i75'). +'urn:example:i77'('urn:example:i66', 'urn:example:i99'). +'urn:example:i77'('urn:example:i67', 'urn:example:i12'). +'urn:example:i77'('urn:example:i67', 'urn:example:i99'). +'urn:example:i77'('urn:example:i69', 'urn:example:i24'). +'urn:example:i77'('urn:example:i69', 'urn:example:i96'). +'urn:example:i77'('urn:example:i71', 'urn:example:i39'). +'urn:example:i77'('urn:example:i71', 'urn:example:i78'). +'urn:example:i77'('urn:example:i71', 'urn:example:i84'). +'urn:example:i77'('urn:example:i71', 'urn:example:i90'). +'urn:example:i77'('urn:example:i71', 'urn:example:i90'). +'urn:example:i77'('urn:example:i72', 'urn:example:i72'). +'urn:example:i77'('urn:example:i73', 'urn:example:i48'). +'urn:example:i77'('urn:example:i77', 'urn:example:i78'). +'urn:example:i77'('urn:example:i78', 'urn:example:i63'). +'urn:example:i77'('urn:example:i80', 'urn:example:i0'). +'urn:example:i77'('urn:example:i81', 'urn:example:i0'). +'urn:example:i77'('urn:example:i82', 'urn:example:i66'). +'urn:example:i77'('urn:example:i82', 'urn:example:i93'). +'urn:example:i77'('urn:example:i82', 'urn:example:i96'). +'urn:example:i77'('urn:example:i86', 'urn:example:i3'). +'urn:example:i77'('urn:example:i87', 'urn:example:i57'). +'urn:example:i77'('urn:example:i88', 'urn:example:i63'). +'urn:example:i77'('urn:example:i89', 'urn:example:i54'). +'urn:example:i77'('urn:example:i90', 'urn:example:i93'). +'urn:example:i77'('urn:example:i91', 'urn:example:i12'). +'urn:example:i77'('urn:example:i91', 'urn:example:i15'). +'urn:example:i77'('urn:example:i91', 'urn:example:i9'). +'urn:example:i77'('urn:example:i92', 'urn:example:i21'). +'urn:example:i77'('urn:example:i92', 'urn:example:i90'). +'urn:example:i77'('urn:example:i93', 'urn:example:i51'). +'urn:example:i77'('urn:example:i93', 'urn:example:i51'). +'urn:example:i77'('urn:example:i94', 'urn:example:i54'). +'urn:example:i77'('urn:example:i95', 'urn:example:i36'). +'urn:example:i77'('urn:example:i96', 'urn:example:i69'). +'urn:example:i77'('urn:example:i97', 'urn:example:i30'). +'urn:example:i77'('urn:example:i97', 'urn:example:i87'). +'urn:example:i77'('urn:example:i98', 'urn:example:i54'). +'urn:example:i78'('urn:example:i11', 'urn:example:i96'). +'urn:example:i78'('urn:example:i14', 'urn:example:i78'). +'urn:example:i78'('urn:example:i16', 'urn:example:i39'). +'urn:example:i78'('urn:example:i17', 'urn:example:i15'). +'urn:example:i78'('urn:example:i18', 'urn:example:i24'). +'urn:example:i78'('urn:example:i1', 'urn:example:i78'). +'urn:example:i78'('urn:example:i20', 'urn:example:i60'). +'urn:example:i78'('urn:example:i23', 'urn:example:i9'). +'urn:example:i78'('urn:example:i24', 'urn:example:i0'). +'urn:example:i78'('urn:example:i24', 'urn:example:i48'). +'urn:example:i78'('urn:example:i24', 'urn:example:i81'). +'urn:example:i78'('urn:example:i25', 'urn:example:i39'). +'urn:example:i78'('urn:example:i26', 'urn:example:i60'). +'urn:example:i78'('urn:example:i26', 'urn:example:i81'). +'urn:example:i78'('urn:example:i27', 'urn:example:i6'). +'urn:example:i78'('urn:example:i27', 'urn:example:i78'). +'urn:example:i78'('urn:example:i28', 'urn:example:i45'). +'urn:example:i78'('urn:example:i30', 'urn:example:i81'). +'urn:example:i78'('urn:example:i31', 'urn:example:i69'). +'urn:example:i78'('urn:example:i31', 'urn:example:i6'). +'urn:example:i78'('urn:example:i33', 'urn:example:i15'). +'urn:example:i78'('urn:example:i33', 'urn:example:i57'). +'urn:example:i78'('urn:example:i34', 'urn:example:i87'). +'urn:example:i78'('urn:example:i35', 'urn:example:i27'). +'urn:example:i78'('urn:example:i36', 'urn:example:i0'). +'urn:example:i78'('urn:example:i37', 'urn:example:i51'). +'urn:example:i78'('urn:example:i37', 'urn:example:i6'). +'urn:example:i78'('urn:example:i3', 'urn:example:i0'). +'urn:example:i78'('urn:example:i3', 'urn:example:i36'). +'urn:example:i78'('urn:example:i3', 'urn:example:i57'). +'urn:example:i78'('urn:example:i3', 'urn:example:i81'). +'urn:example:i78'('urn:example:i41', 'urn:example:i36'). +'urn:example:i78'('urn:example:i41', 'urn:example:i66'). +'urn:example:i78'('urn:example:i43', 'urn:example:i87'). +'urn:example:i78'('urn:example:i45', 'urn:example:i90'). +'urn:example:i78'('urn:example:i46', 'urn:example:i42'). +'urn:example:i78'('urn:example:i47', 'urn:example:i15'). +'urn:example:i78'('urn:example:i47', 'urn:example:i9'). +'urn:example:i78'('urn:example:i48', 'urn:example:i57'). +'urn:example:i78'('urn:example:i49', 'urn:example:i24'). +'urn:example:i78'('urn:example:i4', 'urn:example:i81'). +'urn:example:i78'('urn:example:i51', 'urn:example:i42'). +'urn:example:i78'('urn:example:i51', 'urn:example:i69'). +'urn:example:i78'('urn:example:i52', 'urn:example:i15'). +'urn:example:i78'('urn:example:i53', 'urn:example:i0'). +'urn:example:i78'('urn:example:i54', 'urn:example:i30'). +'urn:example:i78'('urn:example:i57', 'urn:example:i39'). +'urn:example:i78'('urn:example:i58', 'urn:example:i57'). +'urn:example:i78'('urn:example:i59', 'urn:example:i27'). +'urn:example:i78'('urn:example:i59', 'urn:example:i81'). +'urn:example:i78'('urn:example:i5', 'urn:example:i66'). +'urn:example:i78'('urn:example:i60', 'urn:example:i96'). +'urn:example:i78'('urn:example:i62', 'urn:example:i84'). +'urn:example:i78'('urn:example:i64', 'urn:example:i45'). +'urn:example:i78'('urn:example:i64', 'urn:example:i60'). +'urn:example:i78'('urn:example:i66', 'urn:example:i51'). +'urn:example:i78'('urn:example:i66', 'urn:example:i78'). +'urn:example:i78'('urn:example:i67', 'urn:example:i24'). +'urn:example:i78'('urn:example:i69', 'urn:example:i21'). +'urn:example:i78'('urn:example:i69', 'urn:example:i78'). +'urn:example:i78'('urn:example:i6', 'urn:example:i33'). +'urn:example:i78'('urn:example:i6', 'urn:example:i54'). +'urn:example:i78'('urn:example:i6', 'urn:example:i6'). +'urn:example:i78'('urn:example:i70', 'urn:example:i42'). +'urn:example:i78'('urn:example:i71', 'urn:example:i15'). +'urn:example:i78'('urn:example:i71', 'urn:example:i87'). +'urn:example:i78'('urn:example:i72', 'urn:example:i24'). +'urn:example:i78'('urn:example:i72', 'urn:example:i66'). +'urn:example:i78'('urn:example:i72', 'urn:example:i78'). +'urn:example:i78'('urn:example:i74', 'urn:example:i81'). +'urn:example:i78'('urn:example:i74', 'urn:example:i84'). +'urn:example:i78'('urn:example:i76', 'urn:example:i42'). +'urn:example:i78'('urn:example:i76', 'urn:example:i60'). +'urn:example:i78'('urn:example:i76', 'urn:example:i66'). +'urn:example:i78'('urn:example:i7', 'urn:example:i15'). +'urn:example:i78'('urn:example:i7', 'urn:example:i72'). +'urn:example:i78'('urn:example:i80', 'urn:example:i54'). +'urn:example:i78'('urn:example:i80', 'urn:example:i60'). +'urn:example:i78'('urn:example:i81', 'urn:example:i54'). +'urn:example:i78'('urn:example:i81', 'urn:example:i9'). +'urn:example:i78'('urn:example:i83', 'urn:example:i24'). +'urn:example:i78'('urn:example:i83', 'urn:example:i57'). +'urn:example:i78'('urn:example:i84', 'urn:example:i6'). +'urn:example:i78'('urn:example:i84', 'urn:example:i75'). +'urn:example:i78'('urn:example:i85', 'urn:example:i27'). +'urn:example:i78'('urn:example:i85', 'urn:example:i27'). +'urn:example:i78'('urn:example:i85', 'urn:example:i48'). +'urn:example:i78'('urn:example:i86', 'urn:example:i30'). +'urn:example:i78'('urn:example:i86', 'urn:example:i93'). +'urn:example:i78'('urn:example:i88', 'urn:example:i33'). +'urn:example:i78'('urn:example:i89', 'urn:example:i3'). +'urn:example:i78'('urn:example:i90', 'urn:example:i87'). +'urn:example:i78'('urn:example:i91', 'urn:example:i72'). +'urn:example:i78'('urn:example:i91', 'urn:example:i72'). +'urn:example:i78'('urn:example:i94', 'urn:example:i39'). +'urn:example:i78'('urn:example:i94', 'urn:example:i39'). +'urn:example:i78'('urn:example:i96', 'urn:example:i48'). +'urn:example:i78'('urn:example:i97', 'urn:example:i30'). +'urn:example:i78'('urn:example:i97', 'urn:example:i54'). +'urn:example:i78'('urn:example:i98', 'urn:example:i30'). +'urn:example:i78'('urn:example:i98', 'urn:example:i57'). +'urn:example:i78'('urn:example:i98', 'urn:example:i81'). +'urn:example:i78'('urn:example:i99', 'urn:example:i27'). +'urn:example:i78'('urn:example:i99', 'urn:example:i30'). +'urn:example:i78'('urn:example:i9', 'urn:example:i45'). +'urn:example:i79'('urn:example:i12', 'urn:example:i51'). +'urn:example:i79'('urn:example:i14', 'urn:example:i54'). +'urn:example:i79'('urn:example:i15', 'urn:example:i36'). +'urn:example:i79'('urn:example:i15', 'urn:example:i87'). +'urn:example:i79'('urn:example:i15', 'urn:example:i96'). +'urn:example:i79'('urn:example:i15', 'urn:example:i9'). +'urn:example:i79'('urn:example:i17', 'urn:example:i69'). +'urn:example:i79'('urn:example:i17', 'urn:example:i6'). +'urn:example:i79'('urn:example:i18', 'urn:example:i3'). +'urn:example:i79'('urn:example:i19', 'urn:example:i33'). +'urn:example:i79'('urn:example:i19', 'urn:example:i57'). +'urn:example:i79'('urn:example:i22', 'urn:example:i33'). +'urn:example:i79'('urn:example:i23', 'urn:example:i0'). +'urn:example:i79'('urn:example:i23', 'urn:example:i45'). +'urn:example:i79'('urn:example:i25', 'urn:example:i99'). +'urn:example:i79'('urn:example:i26', 'urn:example:i69'). +'urn:example:i79'('urn:example:i27', 'urn:example:i93'). +'urn:example:i79'('urn:example:i2', 'urn:example:i96'). +'urn:example:i79'('urn:example:i30', 'urn:example:i15'). +'urn:example:i79'('urn:example:i31', 'urn:example:i27'). +'urn:example:i79'('urn:example:i31', 'urn:example:i72'). +'urn:example:i79'('urn:example:i35', 'urn:example:i30'). +'urn:example:i79'('urn:example:i35', 'urn:example:i63'). +'urn:example:i79'('urn:example:i35', 'urn:example:i90'). +'urn:example:i79'('urn:example:i37', 'urn:example:i36'). +'urn:example:i79'('urn:example:i38', 'urn:example:i45'). +'urn:example:i79'('urn:example:i39', 'urn:example:i21'). +'urn:example:i79'('urn:example:i39', 'urn:example:i3'). +'urn:example:i79'('urn:example:i39', 'urn:example:i81'). +'urn:example:i79'('urn:example:i3', 'urn:example:i21'). +'urn:example:i79'('urn:example:i3', 'urn:example:i63'). +'urn:example:i79'('urn:example:i3', 'urn:example:i69'). +'urn:example:i79'('urn:example:i40', 'urn:example:i39'). +'urn:example:i79'('urn:example:i40', 'urn:example:i90'). +'urn:example:i79'('urn:example:i42', 'urn:example:i27'). +'urn:example:i79'('urn:example:i42', 'urn:example:i30'). +'urn:example:i79'('urn:example:i42', 'urn:example:i30'). +'urn:example:i79'('urn:example:i42', 'urn:example:i63'). +'urn:example:i79'('urn:example:i43', 'urn:example:i9'). +'urn:example:i79'('urn:example:i44', 'urn:example:i18'). +'urn:example:i79'('urn:example:i44', 'urn:example:i93'). +'urn:example:i79'('urn:example:i46', 'urn:example:i75'). +'urn:example:i79'('urn:example:i48', 'urn:example:i78'). +'urn:example:i79'('urn:example:i49', 'urn:example:i12'). +'urn:example:i79'('urn:example:i49', 'urn:example:i81'). +'urn:example:i79'('urn:example:i50', 'urn:example:i42'). +'urn:example:i79'('urn:example:i50', 'urn:example:i90'). +'urn:example:i79'('urn:example:i51', 'urn:example:i36'). +'urn:example:i79'('urn:example:i53', 'urn:example:i87'). +'urn:example:i79'('urn:example:i56', 'urn:example:i42'). +'urn:example:i79'('urn:example:i57', 'urn:example:i39'). +'urn:example:i79'('urn:example:i57', 'urn:example:i39'). +'urn:example:i79'('urn:example:i58', 'urn:example:i27'). +'urn:example:i79'('urn:example:i58', 'urn:example:i48'). +'urn:example:i79'('urn:example:i60', 'urn:example:i33'). +'urn:example:i79'('urn:example:i61', 'urn:example:i6'). +'urn:example:i79'('urn:example:i61', 'urn:example:i78'). +'urn:example:i79'('urn:example:i61', 'urn:example:i96'). +'urn:example:i79'('urn:example:i62', 'urn:example:i42'). +'urn:example:i79'('urn:example:i62', 'urn:example:i54'). +'urn:example:i79'('urn:example:i64', 'urn:example:i21'). +'urn:example:i79'('urn:example:i64', 'urn:example:i24'). +'urn:example:i79'('urn:example:i64', 'urn:example:i78'). +'urn:example:i79'('urn:example:i65', 'urn:example:i24'). +'urn:example:i79'('urn:example:i67', 'urn:example:i63'). +'urn:example:i79'('urn:example:i69', 'urn:example:i9'). +'urn:example:i79'('urn:example:i71', 'urn:example:i54'). +'urn:example:i79'('urn:example:i71', 'urn:example:i72'). +'urn:example:i79'('urn:example:i71', 'urn:example:i81'). +'urn:example:i79'('urn:example:i71', 'urn:example:i87'). +'urn:example:i79'('urn:example:i72', 'urn:example:i69'). +'urn:example:i79'('urn:example:i75', 'urn:example:i57'). +'urn:example:i79'('urn:example:i76', 'urn:example:i48'). +'urn:example:i79'('urn:example:i76', 'urn:example:i51'). +'urn:example:i79'('urn:example:i76', 'urn:example:i66'). +'urn:example:i79'('urn:example:i77', 'urn:example:i51'). +'urn:example:i79'('urn:example:i77', 'urn:example:i9'). +'urn:example:i79'('urn:example:i79', 'urn:example:i15'). +'urn:example:i79'('urn:example:i79', 'urn:example:i30'). +'urn:example:i79'('urn:example:i79', 'urn:example:i42'). +'urn:example:i79'('urn:example:i7', 'urn:example:i24'). +'urn:example:i79'('urn:example:i80', 'urn:example:i6'). +'urn:example:i79'('urn:example:i81', 'urn:example:i0'). +'urn:example:i79'('urn:example:i81', 'urn:example:i3'). +'urn:example:i79'('urn:example:i82', 'urn:example:i93'). +'urn:example:i79'('urn:example:i83', 'urn:example:i3'). +'urn:example:i79'('urn:example:i83', 'urn:example:i54'). +'urn:example:i79'('urn:example:i83', 'urn:example:i66'). +'urn:example:i79'('urn:example:i84', 'urn:example:i45'). +'urn:example:i79'('urn:example:i85', 'urn:example:i15'). +'urn:example:i79'('urn:example:i85', 'urn:example:i51'). +'urn:example:i79'('urn:example:i88', 'urn:example:i75'). +'urn:example:i79'('urn:example:i88', 'urn:example:i99'). +'urn:example:i79'('urn:example:i89', 'urn:example:i33'). +'urn:example:i79'('urn:example:i8', 'urn:example:i69'). +'urn:example:i79'('urn:example:i8', 'urn:example:i6'). +'urn:example:i79'('urn:example:i91', 'urn:example:i21'). +'urn:example:i79'('urn:example:i92', 'urn:example:i24'). +'urn:example:i79'('urn:example:i92', 'urn:example:i54'). +'urn:example:i79'('urn:example:i93', 'urn:example:i87'). +'urn:example:i79'('urn:example:i94', 'urn:example:i15'). +'urn:example:i79'('urn:example:i94', 'urn:example:i27'). +'urn:example:i79'('urn:example:i95', 'urn:example:i75'). +'urn:example:i79'('urn:example:i95', 'urn:example:i9'). +'urn:example:i79'('urn:example:i97', 'urn:example:i60'). +'urn:example:i79'('urn:example:i97', 'urn:example:i78'). +'urn:example:i79'('urn:example:i98', 'urn:example:i72'). +'urn:example:i79'('urn:example:i9', 'urn:example:i39'). +'urn:example:i79'('urn:example:i9', 'urn:example:i69'). +'urn:example:i7'('urn:example:i0', 'urn:example:i57'). +'urn:example:i7'('urn:example:i10', 'urn:example:i0'). +'urn:example:i7'('urn:example:i11', 'urn:example:i12'). +'urn:example:i7'('urn:example:i11', 'urn:example:i90'). +'urn:example:i7'('urn:example:i12', 'urn:example:i24'). +'urn:example:i7'('urn:example:i13', 'urn:example:i42'). +'urn:example:i7'('urn:example:i13', 'urn:example:i57'). +'urn:example:i7'('urn:example:i15', 'urn:example:i51'). +'urn:example:i7'('urn:example:i16', 'urn:example:i36'). +'urn:example:i7'('urn:example:i16', 'urn:example:i87'). +'urn:example:i7'('urn:example:i17', 'urn:example:i84'). +'urn:example:i7'('urn:example:i18', 'urn:example:i42'). +'urn:example:i7'('urn:example:i18', 'urn:example:i75'). +'urn:example:i7'('urn:example:i19', 'urn:example:i66'). +'urn:example:i7'('urn:example:i1', 'urn:example:i75'). +'urn:example:i7'('urn:example:i21', 'urn:example:i3'). +'urn:example:i7'('urn:example:i21', 'urn:example:i48'). +'urn:example:i7'('urn:example:i21', 'urn:example:i6'). +'urn:example:i7'('urn:example:i26', 'urn:example:i18'). +'urn:example:i7'('urn:example:i26', 'urn:example:i57'). +'urn:example:i7'('urn:example:i27', 'urn:example:i12'). +'urn:example:i7'('urn:example:i27', 'urn:example:i57'). +'urn:example:i7'('urn:example:i27', 'urn:example:i66'). +'urn:example:i7'('urn:example:i28', 'urn:example:i33'). +'urn:example:i7'('urn:example:i28', 'urn:example:i84'). +'urn:example:i7'('urn:example:i2', 'urn:example:i21'). +'urn:example:i7'('urn:example:i2', 'urn:example:i90'). +'urn:example:i7'('urn:example:i31', 'urn:example:i72'). +'urn:example:i7'('urn:example:i33', 'urn:example:i63'). +'urn:example:i7'('urn:example:i34', 'urn:example:i57'). +'urn:example:i7'('urn:example:i35', 'urn:example:i15'). +'urn:example:i7'('urn:example:i35', 'urn:example:i30'). +'urn:example:i7'('urn:example:i35', 'urn:example:i63'). +'urn:example:i7'('urn:example:i36', 'urn:example:i42'). +'urn:example:i7'('urn:example:i36', 'urn:example:i63'). +'urn:example:i7'('urn:example:i36', 'urn:example:i81'). +'urn:example:i7'('urn:example:i3', 'urn:example:i0'). +'urn:example:i7'('urn:example:i3', 'urn:example:i69'). +'urn:example:i7'('urn:example:i3', 'urn:example:i6'). +'urn:example:i7'('urn:example:i41', 'urn:example:i75'). +'urn:example:i7'('urn:example:i42', 'urn:example:i48'). +'urn:example:i7'('urn:example:i43', 'urn:example:i81'). +'urn:example:i7'('urn:example:i43', 'urn:example:i87'). +'urn:example:i7'('urn:example:i44', 'urn:example:i48'). +'urn:example:i7'('urn:example:i45', 'urn:example:i0'). +'urn:example:i7'('urn:example:i45', 'urn:example:i42'). +'urn:example:i7'('urn:example:i45', 'urn:example:i45'). +'urn:example:i7'('urn:example:i46', 'urn:example:i63'). +'urn:example:i7'('urn:example:i47', 'urn:example:i9'). +'urn:example:i7'('urn:example:i50', 'urn:example:i18'). +'urn:example:i7'('urn:example:i50', 'urn:example:i3'). +'urn:example:i7'('urn:example:i52', 'urn:example:i51'). +'urn:example:i7'('urn:example:i54', 'urn:example:i30'). +'urn:example:i7'('urn:example:i54', 'urn:example:i39'). +'urn:example:i7'('urn:example:i54', 'urn:example:i45'). +'urn:example:i7'('urn:example:i55', 'urn:example:i93'). +'urn:example:i7'('urn:example:i56', 'urn:example:i87'). +'urn:example:i7'('urn:example:i57', 'urn:example:i18'). +'urn:example:i7'('urn:example:i57', 'urn:example:i63'). +'urn:example:i7'('urn:example:i58', 'urn:example:i63'). +'urn:example:i7'('urn:example:i58', 'urn:example:i93'). +'urn:example:i7'('urn:example:i5', 'urn:example:i69'). +'urn:example:i7'('urn:example:i60', 'urn:example:i78'). +'urn:example:i7'('urn:example:i61', 'urn:example:i51'). +'urn:example:i7'('urn:example:i62', 'urn:example:i60'). +'urn:example:i7'('urn:example:i62', 'urn:example:i78'). +'urn:example:i7'('urn:example:i65', 'urn:example:i84'). +'urn:example:i7'('urn:example:i66', 'urn:example:i18'). +'urn:example:i7'('urn:example:i66', 'urn:example:i21'). +'urn:example:i7'('urn:example:i66', 'urn:example:i21'). +'urn:example:i7'('urn:example:i67', 'urn:example:i39'). +'urn:example:i7'('urn:example:i67', 'urn:example:i48'). +'urn:example:i7'('urn:example:i68', 'urn:example:i51'). +'urn:example:i7'('urn:example:i68', 'urn:example:i51'). +'urn:example:i7'('urn:example:i68', 'urn:example:i90'). +'urn:example:i7'('urn:example:i69', 'urn:example:i0'). +'urn:example:i7'('urn:example:i6', 'urn:example:i48'). +'urn:example:i7'('urn:example:i6', 'urn:example:i69'). +'urn:example:i7'('urn:example:i71', 'urn:example:i60'). +'urn:example:i7'('urn:example:i71', 'urn:example:i9'). +'urn:example:i7'('urn:example:i72', 'urn:example:i57'). +'urn:example:i7'('urn:example:i72', 'urn:example:i81'). +'urn:example:i7'('urn:example:i74', 'urn:example:i45'). +'urn:example:i7'('urn:example:i75', 'urn:example:i84'). +'urn:example:i7'('urn:example:i76', 'urn:example:i75'). +'urn:example:i7'('urn:example:i76', 'urn:example:i84'). +'urn:example:i7'('urn:example:i78', 'urn:example:i21'). +'urn:example:i7'('urn:example:i78', 'urn:example:i99'). +'urn:example:i7'('urn:example:i79', 'urn:example:i0'). +'urn:example:i7'('urn:example:i80', 'urn:example:i81'). +'urn:example:i7'('urn:example:i83', 'urn:example:i27'). +'urn:example:i7'('urn:example:i83', 'urn:example:i63'). +'urn:example:i7'('urn:example:i84', 'urn:example:i21'). +'urn:example:i7'('urn:example:i84', 'urn:example:i72'). +'urn:example:i7'('urn:example:i85', 'urn:example:i24'). +'urn:example:i7'('urn:example:i86', 'urn:example:i18'). +'urn:example:i7'('urn:example:i86', 'urn:example:i27'). +'urn:example:i7'('urn:example:i87', 'urn:example:i39'). +'urn:example:i7'('urn:example:i87', 'urn:example:i63'). +'urn:example:i7'('urn:example:i8', 'urn:example:i45'). +'urn:example:i7'('urn:example:i8', 'urn:example:i48'). +'urn:example:i7'('urn:example:i91', 'urn:example:i9'). +'urn:example:i7'('urn:example:i93', 'urn:example:i36'). +'urn:example:i7'('urn:example:i95', 'urn:example:i6'). +'urn:example:i7'('urn:example:i98', 'urn:example:i3'). +'urn:example:i7'('urn:example:i9', 'urn:example:i96'). +'urn:example:i80'('urn:example:i0', 'urn:example:i51'). +'urn:example:i80'('urn:example:i0', 'urn:example:i81'). +'urn:example:i80'('urn:example:i0', 'urn:example:i96'). +'urn:example:i80'('urn:example:i10', 'urn:example:i51'). +'urn:example:i80'('urn:example:i10', 'urn:example:i66'). +'urn:example:i80'('urn:example:i12', 'urn:example:i45'). +'urn:example:i80'('urn:example:i13', 'urn:example:i18'). +'urn:example:i80'('urn:example:i13', 'urn:example:i60'). +'urn:example:i80'('urn:example:i14', 'urn:example:i45'). +'urn:example:i80'('urn:example:i14', 'urn:example:i45'). +'urn:example:i80'('urn:example:i14', 'urn:example:i63'). +'urn:example:i80'('urn:example:i15', 'urn:example:i42'). +'urn:example:i80'('urn:example:i15', 'urn:example:i60'). +'urn:example:i80'('urn:example:i16', 'urn:example:i48'). +'urn:example:i80'('urn:example:i17', 'urn:example:i18'). +'urn:example:i80'('urn:example:i17', 'urn:example:i27'). +'urn:example:i80'('urn:example:i17', 'urn:example:i33'). +'urn:example:i80'('urn:example:i19', 'urn:example:i9'). +'urn:example:i80'('urn:example:i20', 'urn:example:i36'). +'urn:example:i80'('urn:example:i20', 'urn:example:i39'). +'urn:example:i80'('urn:example:i20', 'urn:example:i3'). +'urn:example:i80'('urn:example:i21', 'urn:example:i18'). +'urn:example:i80'('urn:example:i21', 'urn:example:i78'). +'urn:example:i80'('urn:example:i21', 'urn:example:i93'). +'urn:example:i80'('urn:example:i22', 'urn:example:i0'). +'urn:example:i80'('urn:example:i22', 'urn:example:i3'). +'urn:example:i80'('urn:example:i22', 'urn:example:i42'). +'urn:example:i80'('urn:example:i22', 'urn:example:i48'). +'urn:example:i80'('urn:example:i22', 'urn:example:i99'). +'urn:example:i80'('urn:example:i23', 'urn:example:i87'). +'urn:example:i80'('urn:example:i25', 'urn:example:i39'). +'urn:example:i80'('urn:example:i25', 'urn:example:i66'). +'urn:example:i80'('urn:example:i26', 'urn:example:i69'). +'urn:example:i80'('urn:example:i28', 'urn:example:i3'). +'urn:example:i80'('urn:example:i2', 'urn:example:i57'). +'urn:example:i80'('urn:example:i30', 'urn:example:i18'). +'urn:example:i80'('urn:example:i30', 'urn:example:i81'). +'urn:example:i80'('urn:example:i33', 'urn:example:i42'). +'urn:example:i80'('urn:example:i34', 'urn:example:i15'). +'urn:example:i80'('urn:example:i36', 'urn:example:i51'). +'urn:example:i80'('urn:example:i37', 'urn:example:i36'). +'urn:example:i80'('urn:example:i37', 'urn:example:i9'). +'urn:example:i80'('urn:example:i39', 'urn:example:i33'). +'urn:example:i80'('urn:example:i40', 'urn:example:i60'). +'urn:example:i80'('urn:example:i40', 'urn:example:i6'). +'urn:example:i80'('urn:example:i41', 'urn:example:i42'). +'urn:example:i80'('urn:example:i41', 'urn:example:i90'). +'urn:example:i80'('urn:example:i42', 'urn:example:i0'). +'urn:example:i80'('urn:example:i42', 'urn:example:i15'). +'urn:example:i80'('urn:example:i43', 'urn:example:i18'). +'urn:example:i80'('urn:example:i44', 'urn:example:i99'). +'urn:example:i80'('urn:example:i45', 'urn:example:i12'). +'urn:example:i80'('urn:example:i46', 'urn:example:i51'). +'urn:example:i80'('urn:example:i46', 'urn:example:i57'). +'urn:example:i80'('urn:example:i46', 'urn:example:i63'). +'urn:example:i80'('urn:example:i46', 'urn:example:i81'). +'urn:example:i80'('urn:example:i46', 'urn:example:i81'). +'urn:example:i80'('urn:example:i48', 'urn:example:i60'). +'urn:example:i80'('urn:example:i4', 'urn:example:i30'). +'urn:example:i80'('urn:example:i4', 'urn:example:i84'). +'urn:example:i80'('urn:example:i50', 'urn:example:i69'). +'urn:example:i80'('urn:example:i51', 'urn:example:i21'). +'urn:example:i80'('urn:example:i52', 'urn:example:i18'). +'urn:example:i80'('urn:example:i52', 'urn:example:i54'). +'urn:example:i80'('urn:example:i52', 'urn:example:i57'). +'urn:example:i80'('urn:example:i53', 'urn:example:i9'). +'urn:example:i80'('urn:example:i54', 'urn:example:i63'). +'urn:example:i80'('urn:example:i54', 'urn:example:i78'). +'urn:example:i80'('urn:example:i54', 'urn:example:i81'). +'urn:example:i80'('urn:example:i55', 'urn:example:i84'). +'urn:example:i80'('urn:example:i55', 'urn:example:i9'). +'urn:example:i80'('urn:example:i56', 'urn:example:i57'). +'urn:example:i80'('urn:example:i56', 'urn:example:i96'). +'urn:example:i80'('urn:example:i59', 'urn:example:i33'). +'urn:example:i80'('urn:example:i60', 'urn:example:i42'). +'urn:example:i80'('urn:example:i60', 'urn:example:i57'). +'urn:example:i80'('urn:example:i60', 'urn:example:i81'). +'urn:example:i80'('urn:example:i66', 'urn:example:i12'). +'urn:example:i80'('urn:example:i66', 'urn:example:i15'). +'urn:example:i80'('urn:example:i67', 'urn:example:i30'). +'urn:example:i80'('urn:example:i67', 'urn:example:i33'). +'urn:example:i80'('urn:example:i67', 'urn:example:i42'). +'urn:example:i80'('urn:example:i71', 'urn:example:i54'). +'urn:example:i80'('urn:example:i74', 'urn:example:i84'). +'urn:example:i80'('urn:example:i74', 'urn:example:i93'). +'urn:example:i80'('urn:example:i74', 'urn:example:i99'). +'urn:example:i80'('urn:example:i76', 'urn:example:i24'). +'urn:example:i80'('urn:example:i76', 'urn:example:i99'). +'urn:example:i80'('urn:example:i78', 'urn:example:i36'). +'urn:example:i80'('urn:example:i7', 'urn:example:i36'). +'urn:example:i80'('urn:example:i80', 'urn:example:i39'). +'urn:example:i80'('urn:example:i81', 'urn:example:i54'). +'urn:example:i80'('urn:example:i82', 'urn:example:i45'). +'urn:example:i80'('urn:example:i84', 'urn:example:i9'). +'urn:example:i80'('urn:example:i87', 'urn:example:i48'). +'urn:example:i80'('urn:example:i88', 'urn:example:i54'). +'urn:example:i80'('urn:example:i90', 'urn:example:i27'). +'urn:example:i80'('urn:example:i90', 'urn:example:i90'). +'urn:example:i80'('urn:example:i94', 'urn:example:i48'). +'urn:example:i80'('urn:example:i96', 'urn:example:i3'). +'urn:example:i80'('urn:example:i97', 'urn:example:i33'). +'urn:example:i80'('urn:example:i97', 'urn:example:i63'). +'urn:example:i80'('urn:example:i98', 'urn:example:i66'). +'urn:example:i80'('urn:example:i9', 'urn:example:i21'). +'urn:example:i80'('urn:example:i9', 'urn:example:i48'). +'urn:example:i81'('urn:example:i10', 'urn:example:i27'). +'urn:example:i81'('urn:example:i14', 'urn:example:i15'). +'urn:example:i81'('urn:example:i15', 'urn:example:i90'). +'urn:example:i81'('urn:example:i16', 'urn:example:i27'). +'urn:example:i81'('urn:example:i16', 'urn:example:i36'). +'urn:example:i81'('urn:example:i1', 'urn:example:i42'). +'urn:example:i81'('urn:example:i1', 'urn:example:i93'). +'urn:example:i81'('urn:example:i21', 'urn:example:i54'). +'urn:example:i81'('urn:example:i21', 'urn:example:i54'). +'urn:example:i81'('urn:example:i21', 'urn:example:i75'). +'urn:example:i81'('urn:example:i22', 'urn:example:i15'). +'urn:example:i81'('urn:example:i23', 'urn:example:i33'). +'urn:example:i81'('urn:example:i27', 'urn:example:i45'). +'urn:example:i81'('urn:example:i27', 'urn:example:i60'). +'urn:example:i81'('urn:example:i27', 'urn:example:i84'). +'urn:example:i81'('urn:example:i30', 'urn:example:i75'). +'urn:example:i81'('urn:example:i31', 'urn:example:i87'). +'urn:example:i81'('urn:example:i32', 'urn:example:i84'). +'urn:example:i81'('urn:example:i33', 'urn:example:i21'). +'urn:example:i81'('urn:example:i34', 'urn:example:i42'). +'urn:example:i81'('urn:example:i35', 'urn:example:i0'). +'urn:example:i81'('urn:example:i35', 'urn:example:i75'). +'urn:example:i81'('urn:example:i36', 'urn:example:i9'). +'urn:example:i81'('urn:example:i37', 'urn:example:i84'). +'urn:example:i81'('urn:example:i37', 'urn:example:i99'). +'urn:example:i81'('urn:example:i37', 'urn:example:i9'). +'urn:example:i81'('urn:example:i3', 'urn:example:i45'). +'urn:example:i81'('urn:example:i41', 'urn:example:i6'). +'urn:example:i81'('urn:example:i42', 'urn:example:i21'). +'urn:example:i81'('urn:example:i42', 'urn:example:i3'). +'urn:example:i81'('urn:example:i43', 'urn:example:i18'). +'urn:example:i81'('urn:example:i43', 'urn:example:i75'). +'urn:example:i81'('urn:example:i47', 'urn:example:i84'). +'urn:example:i81'('urn:example:i48', 'urn:example:i0'). +'urn:example:i81'('urn:example:i49', 'urn:example:i84'). +'urn:example:i81'('urn:example:i49', 'urn:example:i93'). +'urn:example:i81'('urn:example:i49', 'urn:example:i9'). +'urn:example:i81'('urn:example:i4', 'urn:example:i45'). +'urn:example:i81'('urn:example:i52', 'urn:example:i45'). +'urn:example:i81'('urn:example:i52', 'urn:example:i75'). +'urn:example:i81'('urn:example:i53', 'urn:example:i24'). +'urn:example:i81'('urn:example:i53', 'urn:example:i45'). +'urn:example:i81'('urn:example:i55', 'urn:example:i0'). +'urn:example:i81'('urn:example:i56', 'urn:example:i3'). +'urn:example:i81'('urn:example:i57', 'urn:example:i24'). +'urn:example:i81'('urn:example:i59', 'urn:example:i15'). +'urn:example:i81'('urn:example:i59', 'urn:example:i93'). +'urn:example:i81'('urn:example:i60', 'urn:example:i18'). +'urn:example:i81'('urn:example:i60', 'urn:example:i21'). +'urn:example:i81'('urn:example:i60', 'urn:example:i48'). +'urn:example:i81'('urn:example:i62', 'urn:example:i66'). +'urn:example:i81'('urn:example:i63', 'urn:example:i18'). +'urn:example:i81'('urn:example:i65', 'urn:example:i69'). +'urn:example:i81'('urn:example:i66', 'urn:example:i78'). +'urn:example:i81'('urn:example:i66', 'urn:example:i96'). +'urn:example:i81'('urn:example:i67', 'urn:example:i21'). +'urn:example:i81'('urn:example:i68', 'urn:example:i24'). +'urn:example:i81'('urn:example:i68', 'urn:example:i69'). +'urn:example:i81'('urn:example:i71', 'urn:example:i48'). +'urn:example:i81'('urn:example:i71', 'urn:example:i72'). +'urn:example:i81'('urn:example:i71', 'urn:example:i93'). +'urn:example:i81'('urn:example:i75', 'urn:example:i30'). +'urn:example:i81'('urn:example:i75', 'urn:example:i60'). +'urn:example:i81'('urn:example:i79', 'urn:example:i12'). +'urn:example:i81'('urn:example:i79', 'urn:example:i36'). +'urn:example:i81'('urn:example:i80', 'urn:example:i0'). +'urn:example:i81'('urn:example:i83', 'urn:example:i84'). +'urn:example:i81'('urn:example:i83', 'urn:example:i96'). +'urn:example:i81'('urn:example:i84', 'urn:example:i27'). +'urn:example:i81'('urn:example:i84', 'urn:example:i54'). +'urn:example:i81'('urn:example:i87', 'urn:example:i60'). +'urn:example:i81'('urn:example:i88', 'urn:example:i63'). +'urn:example:i81'('urn:example:i89', 'urn:example:i33'). +'urn:example:i81'('urn:example:i8', 'urn:example:i6'). +'urn:example:i81'('urn:example:i8', 'urn:example:i78'). +'urn:example:i81'('urn:example:i8', 'urn:example:i78'). +'urn:example:i81'('urn:example:i91', 'urn:example:i15'). +'urn:example:i81'('urn:example:i91', 'urn:example:i48'). +'urn:example:i81'('urn:example:i92', 'urn:example:i75'). +'urn:example:i81'('urn:example:i92', 'urn:example:i75'). +'urn:example:i81'('urn:example:i94', 'urn:example:i12'). +'urn:example:i81'('urn:example:i94', 'urn:example:i3'). +'urn:example:i81'('urn:example:i94', 'urn:example:i42'). +'urn:example:i81'('urn:example:i94', 'urn:example:i84'). +'urn:example:i81'('urn:example:i95', 'urn:example:i51'). +'urn:example:i81'('urn:example:i96', 'urn:example:i0'). +'urn:example:i81'('urn:example:i96', 'urn:example:i30'). +'urn:example:i81'('urn:example:i96', 'urn:example:i39'). +'urn:example:i81'('urn:example:i9', 'urn:example:i24'). +'urn:example:i82'('urn:example:i0', 'urn:example:i12'). +'urn:example:i82'('urn:example:i11', 'urn:example:i57'). +'urn:example:i82'('urn:example:i13', 'urn:example:i0'). +'urn:example:i82'('urn:example:i14', 'urn:example:i21'). +'urn:example:i82'('urn:example:i16', 'urn:example:i21'). +'urn:example:i82'('urn:example:i17', 'urn:example:i18'). +'urn:example:i82'('urn:example:i17', 'urn:example:i60'). +'urn:example:i82'('urn:example:i17', 'urn:example:i81'). +'urn:example:i82'('urn:example:i18', 'urn:example:i75'). +'urn:example:i82'('urn:example:i19', 'urn:example:i30'). +'urn:example:i82'('urn:example:i1', 'urn:example:i60'). +'urn:example:i82'('urn:example:i20', 'urn:example:i30'). +'urn:example:i82'('urn:example:i21', 'urn:example:i21'). +'urn:example:i82'('urn:example:i22', 'urn:example:i45'). +'urn:example:i82'('urn:example:i23', 'urn:example:i12'). +'urn:example:i82'('urn:example:i23', 'urn:example:i51'). +'urn:example:i82'('urn:example:i24', 'urn:example:i48'). +'urn:example:i82'('urn:example:i24', 'urn:example:i93'). +'urn:example:i82'('urn:example:i25', 'urn:example:i21'). +'urn:example:i82'('urn:example:i2', 'urn:example:i18'). +'urn:example:i82'('urn:example:i2', 'urn:example:i18'). +'urn:example:i82'('urn:example:i2', 'urn:example:i57'). +'urn:example:i82'('urn:example:i2', 'urn:example:i78'). +'urn:example:i82'('urn:example:i30', 'urn:example:i6'). +'urn:example:i82'('urn:example:i30', 'urn:example:i84'). +'urn:example:i82'('urn:example:i31', 'urn:example:i69'). +'urn:example:i82'('urn:example:i32', 'urn:example:i39'). +'urn:example:i82'('urn:example:i32', 'urn:example:i81'). +'urn:example:i82'('urn:example:i34', 'urn:example:i72'). +'urn:example:i82'('urn:example:i36', 'urn:example:i36'). +'urn:example:i82'('urn:example:i37', 'urn:example:i18'). +'urn:example:i82'('urn:example:i37', 'urn:example:i81'). +'urn:example:i82'('urn:example:i37', 'urn:example:i84'). +'urn:example:i82'('urn:example:i39', 'urn:example:i54'). +'urn:example:i82'('urn:example:i3', 'urn:example:i48'). +'urn:example:i82'('urn:example:i41', 'urn:example:i15'). +'urn:example:i82'('urn:example:i41', 'urn:example:i48'). +'urn:example:i82'('urn:example:i42', 'urn:example:i81'). +'urn:example:i82'('urn:example:i45', 'urn:example:i12'). +'urn:example:i82'('urn:example:i47', 'urn:example:i48'). +'urn:example:i82'('urn:example:i47', 'urn:example:i87'). +'urn:example:i82'('urn:example:i48', 'urn:example:i87'). +'urn:example:i82'('urn:example:i48', 'urn:example:i96'). +'urn:example:i82'('urn:example:i4', 'urn:example:i6'). +'urn:example:i82'('urn:example:i52', 'urn:example:i63'). +'urn:example:i82'('urn:example:i54', 'urn:example:i30'). +'urn:example:i82'('urn:example:i54', 'urn:example:i30'). +'urn:example:i82'('urn:example:i55', 'urn:example:i90'). +'urn:example:i82'('urn:example:i57', 'urn:example:i15'). +'urn:example:i82'('urn:example:i57', 'urn:example:i90'). +'urn:example:i82'('urn:example:i58', 'urn:example:i18'). +'urn:example:i82'('urn:example:i59', 'urn:example:i84'). +'urn:example:i82'('urn:example:i61', 'urn:example:i21'). +'urn:example:i82'('urn:example:i61', 'urn:example:i6'). +'urn:example:i82'('urn:example:i61', 'urn:example:i96'). +'urn:example:i82'('urn:example:i64', 'urn:example:i36'). +'urn:example:i82'('urn:example:i65', 'urn:example:i0'). +'urn:example:i82'('urn:example:i66', 'urn:example:i3'). +'urn:example:i82'('urn:example:i67', 'urn:example:i54'). +'urn:example:i82'('urn:example:i67', 'urn:example:i87'). +'urn:example:i82'('urn:example:i68', 'urn:example:i9'). +'urn:example:i82'('urn:example:i69', 'urn:example:i57'). +'urn:example:i82'('urn:example:i70', 'urn:example:i54'). +'urn:example:i82'('urn:example:i70', 'urn:example:i96'). +'urn:example:i82'('urn:example:i72', 'urn:example:i57'). +'urn:example:i82'('urn:example:i73', 'urn:example:i0'). +'urn:example:i82'('urn:example:i73', 'urn:example:i60'). +'urn:example:i82'('urn:example:i74', 'urn:example:i21'). +'urn:example:i82'('urn:example:i74', 'urn:example:i75'). +'urn:example:i82'('urn:example:i75', 'urn:example:i66'). +'urn:example:i82'('urn:example:i75', 'urn:example:i9'). +'urn:example:i82'('urn:example:i76', 'urn:example:i51'). +'urn:example:i82'('urn:example:i76', 'urn:example:i78'). +'urn:example:i82'('urn:example:i78', 'urn:example:i15'). +'urn:example:i82'('urn:example:i78', 'urn:example:i24'). +'urn:example:i82'('urn:example:i78', 'urn:example:i27'). +'urn:example:i82'('urn:example:i78', 'urn:example:i45'). +'urn:example:i82'('urn:example:i78', 'urn:example:i60'). +'urn:example:i82'('urn:example:i79', 'urn:example:i12'). +'urn:example:i82'('urn:example:i79', 'urn:example:i30'). +'urn:example:i82'('urn:example:i79', 'urn:example:i45'). +'urn:example:i82'('urn:example:i7', 'urn:example:i27'). +'urn:example:i82'('urn:example:i80', 'urn:example:i96'). +'urn:example:i82'('urn:example:i81', 'urn:example:i99'). +'urn:example:i82'('urn:example:i83', 'urn:example:i27'). +'urn:example:i82'('urn:example:i85', 'urn:example:i96'). +'urn:example:i82'('urn:example:i86', 'urn:example:i12'). +'urn:example:i82'('urn:example:i87', 'urn:example:i33'). +'urn:example:i82'('urn:example:i88', 'urn:example:i30'). +'urn:example:i82'('urn:example:i88', 'urn:example:i39'). +'urn:example:i82'('urn:example:i88', 'urn:example:i42'). +'urn:example:i82'('urn:example:i89', 'urn:example:i42'). +'urn:example:i82'('urn:example:i8', 'urn:example:i3'). +'urn:example:i82'('urn:example:i90', 'urn:example:i99'). +'urn:example:i82'('urn:example:i91', 'urn:example:i69'). +'urn:example:i82'('urn:example:i91', 'urn:example:i69'). +'urn:example:i82'('urn:example:i92', 'urn:example:i27'). +'urn:example:i82'('urn:example:i92', 'urn:example:i72'). +'urn:example:i82'('urn:example:i93', 'urn:example:i12'). +'urn:example:i82'('urn:example:i93', 'urn:example:i45'). +'urn:example:i82'('urn:example:i94', 'urn:example:i90'). +'urn:example:i82'('urn:example:i95', 'urn:example:i81'). +'urn:example:i82'('urn:example:i96', 'urn:example:i15'). +'urn:example:i82'('urn:example:i96', 'urn:example:i21'). +'urn:example:i82'('urn:example:i98', 'urn:example:i60'). +'urn:example:i82'('urn:example:i99', 'urn:example:i6'). +'urn:example:i82'('urn:example:i99', 'urn:example:i78'). +'urn:example:i83'('urn:example:i0', 'urn:example:i66'). +'urn:example:i83'('urn:example:i0', 'urn:example:i6'). +'urn:example:i83'('urn:example:i0', 'urn:example:i90'). +'urn:example:i83'('urn:example:i10', 'urn:example:i39'). +'urn:example:i83'('urn:example:i12', 'urn:example:i18'). +'urn:example:i83'('urn:example:i12', 'urn:example:i21'). +'urn:example:i83'('urn:example:i14', 'urn:example:i36'). +'urn:example:i83'('urn:example:i14', 'urn:example:i9'). +'urn:example:i83'('urn:example:i15', 'urn:example:i42'). +'urn:example:i83'('urn:example:i15', 'urn:example:i99'). +'urn:example:i83'('urn:example:i1', 'urn:example:i51'). +'urn:example:i83'('urn:example:i1', 'urn:example:i69'). +'urn:example:i83'('urn:example:i1', 'urn:example:i75'). +'urn:example:i83'('urn:example:i20', 'urn:example:i3'). +'urn:example:i83'('urn:example:i23', 'urn:example:i36'). +'urn:example:i83'('urn:example:i23', 'urn:example:i51'). +'urn:example:i83'('urn:example:i24', 'urn:example:i39'). +'urn:example:i83'('urn:example:i25', 'urn:example:i45'). +'urn:example:i83'('urn:example:i26', 'urn:example:i42'). +'urn:example:i83'('urn:example:i27', 'urn:example:i45'). +'urn:example:i83'('urn:example:i28', 'urn:example:i60'). +'urn:example:i83'('urn:example:i28', 'urn:example:i63'). +'urn:example:i83'('urn:example:i29', 'urn:example:i57'). +'urn:example:i83'('urn:example:i30', 'urn:example:i18'). +'urn:example:i83'('urn:example:i31', 'urn:example:i30'). +'urn:example:i83'('urn:example:i31', 'urn:example:i63'). +'urn:example:i83'('urn:example:i33', 'urn:example:i24'). +'urn:example:i83'('urn:example:i33', 'urn:example:i63'). +'urn:example:i83'('urn:example:i34', 'urn:example:i24'). +'urn:example:i83'('urn:example:i36', 'urn:example:i87'). +'urn:example:i83'('urn:example:i38', 'urn:example:i0'). +'urn:example:i83'('urn:example:i38', 'urn:example:i84'). +'urn:example:i83'('urn:example:i39', 'urn:example:i33'). +'urn:example:i83'('urn:example:i3', 'urn:example:i18'). +'urn:example:i83'('urn:example:i41', 'urn:example:i12'). +'urn:example:i83'('urn:example:i41', 'urn:example:i81'). +'urn:example:i83'('urn:example:i42', 'urn:example:i72'). +'urn:example:i83'('urn:example:i43', 'urn:example:i42'). +'urn:example:i83'('urn:example:i43', 'urn:example:i48'). +'urn:example:i83'('urn:example:i43', 'urn:example:i66'). +'urn:example:i83'('urn:example:i43', 'urn:example:i9'). +'urn:example:i83'('urn:example:i44', 'urn:example:i96'). +'urn:example:i83'('urn:example:i45', 'urn:example:i51'). +'urn:example:i83'('urn:example:i46', 'urn:example:i15'). +'urn:example:i83'('urn:example:i48', 'urn:example:i9'). +'urn:example:i83'('urn:example:i4', 'urn:example:i30'). +'urn:example:i83'('urn:example:i4', 'urn:example:i99'). +'urn:example:i83'('urn:example:i51', 'urn:example:i33'). +'urn:example:i83'('urn:example:i52', 'urn:example:i93'). +'urn:example:i83'('urn:example:i54', 'urn:example:i51'). +'urn:example:i83'('urn:example:i56', 'urn:example:i78'). +'urn:example:i83'('urn:example:i58', 'urn:example:i0'). +'urn:example:i83'('urn:example:i58', 'urn:example:i3'). +'urn:example:i83'('urn:example:i58', 'urn:example:i63'). +'urn:example:i83'('urn:example:i59', 'urn:example:i0'). +'urn:example:i83'('urn:example:i5', 'urn:example:i84'). +'urn:example:i83'('urn:example:i5', 'urn:example:i90'). +'urn:example:i83'('urn:example:i61', 'urn:example:i36'). +'urn:example:i83'('urn:example:i62', 'urn:example:i72'). +'urn:example:i83'('urn:example:i64', 'urn:example:i30'). +'urn:example:i83'('urn:example:i64', 'urn:example:i54'). +'urn:example:i83'('urn:example:i65', 'urn:example:i75'). +'urn:example:i83'('urn:example:i67', 'urn:example:i66'). +'urn:example:i83'('urn:example:i69', 'urn:example:i0'). +'urn:example:i83'('urn:example:i69', 'urn:example:i57'). +'urn:example:i83'('urn:example:i69', 'urn:example:i6'). +'urn:example:i83'('urn:example:i6', 'urn:example:i84'). +'urn:example:i83'('urn:example:i70', 'urn:example:i42'). +'urn:example:i83'('urn:example:i72', 'urn:example:i63'). +'urn:example:i83'('urn:example:i72', 'urn:example:i66'). +'urn:example:i83'('urn:example:i72', 'urn:example:i84'). +'urn:example:i83'('urn:example:i73', 'urn:example:i18'). +'urn:example:i83'('urn:example:i73', 'urn:example:i84'). +'urn:example:i83'('urn:example:i75', 'urn:example:i81'). +'urn:example:i83'('urn:example:i76', 'urn:example:i78'). +'urn:example:i83'('urn:example:i77', 'urn:example:i51'). +'urn:example:i83'('urn:example:i78', 'urn:example:i57'). +'urn:example:i83'('urn:example:i80', 'urn:example:i93'). +'urn:example:i83'('urn:example:i83', 'urn:example:i42'). +'urn:example:i83'('urn:example:i84', 'urn:example:i21'). +'urn:example:i83'('urn:example:i84', 'urn:example:i21'). +'urn:example:i83'('urn:example:i84', 'urn:example:i3'). +'urn:example:i83'('urn:example:i84', 'urn:example:i69'). +'urn:example:i83'('urn:example:i85', 'urn:example:i42'). +'urn:example:i83'('urn:example:i85', 'urn:example:i9'). +'urn:example:i83'('urn:example:i86', 'urn:example:i6'). +'urn:example:i83'('urn:example:i87', 'urn:example:i78'). +'urn:example:i83'('urn:example:i8', 'urn:example:i24'). +'urn:example:i83'('urn:example:i90', 'urn:example:i33'). +'urn:example:i83'('urn:example:i91', 'urn:example:i18'). +'urn:example:i83'('urn:example:i93', 'urn:example:i57'). +'urn:example:i83'('urn:example:i93', 'urn:example:i63'). +'urn:example:i83'('urn:example:i93', 'urn:example:i96'). +'urn:example:i83'('urn:example:i95', 'urn:example:i3'). +'urn:example:i83'('urn:example:i95', 'urn:example:i42'). +'urn:example:i83'('urn:example:i95', 'urn:example:i48'). +'urn:example:i83'('urn:example:i97', 'urn:example:i75'). +'urn:example:i83'('urn:example:i9', 'urn:example:i24'). +'urn:example:i84'('urn:example:i0', 'urn:example:i0'). +'urn:example:i84'('urn:example:i0', 'urn:example:i21'). +'urn:example:i84'('urn:example:i11', 'urn:example:i21'). +'urn:example:i84'('urn:example:i11', 'urn:example:i81'). +'urn:example:i84'('urn:example:i11', 'urn:example:i81'). +'urn:example:i84'('urn:example:i12', 'urn:example:i78'). +'urn:example:i84'('urn:example:i13', 'urn:example:i18'). +'urn:example:i84'('urn:example:i13', 'urn:example:i36'). +'urn:example:i84'('urn:example:i13', 'urn:example:i66'). +'urn:example:i84'('urn:example:i14', 'urn:example:i30'). +'urn:example:i84'('urn:example:i14', 'urn:example:i63'). +'urn:example:i84'('urn:example:i16', 'urn:example:i24'). +'urn:example:i84'('urn:example:i16', 'urn:example:i30'). +'urn:example:i84'('urn:example:i18', 'urn:example:i72'). +'urn:example:i84'('urn:example:i18', 'urn:example:i72'). +'urn:example:i84'('urn:example:i19', 'urn:example:i60'). +'urn:example:i84'('urn:example:i1', 'urn:example:i60'). +'urn:example:i84'('urn:example:i1', 'urn:example:i78'). +'urn:example:i84'('urn:example:i1', 'urn:example:i84'). +'urn:example:i84'('urn:example:i20', 'urn:example:i9'). +'urn:example:i84'('urn:example:i21', 'urn:example:i54'). +'urn:example:i84'('urn:example:i21', 'urn:example:i87'). +'urn:example:i84'('urn:example:i22', 'urn:example:i21'). +'urn:example:i84'('urn:example:i23', 'urn:example:i75'). +'urn:example:i84'('urn:example:i24', 'urn:example:i75'). +'urn:example:i84'('urn:example:i26', 'urn:example:i3'). +'urn:example:i84'('urn:example:i27', 'urn:example:i21'). +'urn:example:i84'('urn:example:i27', 'urn:example:i84'). +'urn:example:i84'('urn:example:i2', 'urn:example:i18'). +'urn:example:i84'('urn:example:i2', 'urn:example:i60'). +'urn:example:i84'('urn:example:i2', 'urn:example:i72'). +'urn:example:i84'('urn:example:i2', 'urn:example:i87'). +'urn:example:i84'('urn:example:i30', 'urn:example:i21'). +'urn:example:i84'('urn:example:i30', 'urn:example:i24'). +'urn:example:i84'('urn:example:i30', 'urn:example:i75'). +'urn:example:i84'('urn:example:i30', 'urn:example:i81'). +'urn:example:i84'('urn:example:i31', 'urn:example:i90'). +'urn:example:i84'('urn:example:i31', 'urn:example:i96'). +'urn:example:i84'('urn:example:i32', 'urn:example:i0'). +'urn:example:i84'('urn:example:i33', 'urn:example:i93'). +'urn:example:i84'('urn:example:i34', 'urn:example:i51'). +'urn:example:i84'('urn:example:i34', 'urn:example:i66'). +'urn:example:i84'('urn:example:i35', 'urn:example:i24'). +'urn:example:i84'('urn:example:i35', 'urn:example:i66'). +'urn:example:i84'('urn:example:i36', 'urn:example:i45'). +'urn:example:i84'('urn:example:i37', 'urn:example:i54'). +'urn:example:i84'('urn:example:i37', 'urn:example:i6'). +'urn:example:i84'('urn:example:i39', 'urn:example:i12'). +'urn:example:i84'('urn:example:i39', 'urn:example:i21'). +'urn:example:i84'('urn:example:i39', 'urn:example:i27'). +'urn:example:i84'('urn:example:i3', 'urn:example:i87'). +'urn:example:i84'('urn:example:i41', 'urn:example:i87'). +'urn:example:i84'('urn:example:i42', 'urn:example:i6'). +'urn:example:i84'('urn:example:i44', 'urn:example:i63'). +'urn:example:i84'('urn:example:i44', 'urn:example:i96'). +'urn:example:i84'('urn:example:i46', 'urn:example:i0'). +'urn:example:i84'('urn:example:i46', 'urn:example:i87'). +'urn:example:i84'('urn:example:i48', 'urn:example:i54'). +'urn:example:i84'('urn:example:i49', 'urn:example:i36'). +'urn:example:i84'('urn:example:i49', 'urn:example:i84'). +'urn:example:i84'('urn:example:i51', 'urn:example:i30'). +'urn:example:i84'('urn:example:i53', 'urn:example:i0'). +'urn:example:i84'('urn:example:i57', 'urn:example:i54'). +'urn:example:i84'('urn:example:i57', 'urn:example:i60'). +'urn:example:i84'('urn:example:i57', 'urn:example:i66'). +'urn:example:i84'('urn:example:i58', 'urn:example:i81'). +'urn:example:i84'('urn:example:i59', 'urn:example:i21'). +'urn:example:i84'('urn:example:i59', 'urn:example:i9'). +'urn:example:i84'('urn:example:i60', 'urn:example:i63'). +'urn:example:i84'('urn:example:i60', 'urn:example:i66'). +'urn:example:i84'('urn:example:i60', 'urn:example:i96'). +'urn:example:i84'('urn:example:i61', 'urn:example:i75'). +'urn:example:i84'('urn:example:i62', 'urn:example:i60'). +'urn:example:i84'('urn:example:i62', 'urn:example:i72'). +'urn:example:i84'('urn:example:i65', 'urn:example:i39'). +'urn:example:i84'('urn:example:i65', 'urn:example:i96'). +'urn:example:i84'('urn:example:i66', 'urn:example:i84'). +'urn:example:i84'('urn:example:i67', 'urn:example:i3'). +'urn:example:i84'('urn:example:i68', 'urn:example:i30'). +'urn:example:i84'('urn:example:i68', 'urn:example:i93'). +'urn:example:i84'('urn:example:i6', 'urn:example:i24'). +'urn:example:i84'('urn:example:i6', 'urn:example:i66'). +'urn:example:i84'('urn:example:i71', 'urn:example:i27'). +'urn:example:i84'('urn:example:i72', 'urn:example:i30'). +'urn:example:i84'('urn:example:i73', 'urn:example:i66'). +'urn:example:i84'('urn:example:i73', 'urn:example:i69'). +'urn:example:i84'('urn:example:i73', 'urn:example:i69'). +'urn:example:i84'('urn:example:i73', 'urn:example:i96'). +'urn:example:i84'('urn:example:i75', 'urn:example:i42'). +'urn:example:i84'('urn:example:i78', 'urn:example:i66'). +'urn:example:i84'('urn:example:i79', 'urn:example:i66'). +'urn:example:i84'('urn:example:i80', 'urn:example:i27'). +'urn:example:i84'('urn:example:i82', 'urn:example:i45'). +'urn:example:i84'('urn:example:i84', 'urn:example:i69'). +'urn:example:i84'('urn:example:i85', 'urn:example:i51'). +'urn:example:i84'('urn:example:i86', 'urn:example:i3'). +'urn:example:i84'('urn:example:i86', 'urn:example:i42'). +'urn:example:i84'('urn:example:i86', 'urn:example:i60'). +'urn:example:i84'('urn:example:i87', 'urn:example:i33'). +'urn:example:i84'('urn:example:i87', 'urn:example:i51'). +'urn:example:i84'('urn:example:i87', 'urn:example:i9'). +'urn:example:i84'('urn:example:i88', 'urn:example:i84'). +'urn:example:i84'('urn:example:i89', 'urn:example:i27'). +'urn:example:i84'('urn:example:i89', 'urn:example:i48'). +'urn:example:i84'('urn:example:i89', 'urn:example:i87'). +'urn:example:i84'('urn:example:i8', 'urn:example:i18'). +'urn:example:i84'('urn:example:i8', 'urn:example:i33'). +'urn:example:i84'('urn:example:i8', 'urn:example:i81'). +'urn:example:i84'('urn:example:i90', 'urn:example:i0'). +'urn:example:i84'('urn:example:i90', 'urn:example:i21'). +'urn:example:i84'('urn:example:i90', 'urn:example:i39'). +'urn:example:i84'('urn:example:i90', 'urn:example:i51'). +'urn:example:i84'('urn:example:i91', 'urn:example:i42'). +'urn:example:i84'('urn:example:i91', 'urn:example:i96'). +'urn:example:i84'('urn:example:i92', 'urn:example:i45'). +'urn:example:i84'('urn:example:i93', 'urn:example:i24'). +'urn:example:i84'('urn:example:i93', 'urn:example:i51'). +'urn:example:i84'('urn:example:i93', 'urn:example:i81'). +'urn:example:i84'('urn:example:i94', 'urn:example:i18'). +'urn:example:i84'('urn:example:i96', 'urn:example:i15'). +'urn:example:i84'('urn:example:i97', 'urn:example:i12'). +'urn:example:i84'('urn:example:i97', 'urn:example:i48'). +'urn:example:i84'('urn:example:i98', 'urn:example:i6'). +'urn:example:i84'('urn:example:i99', 'urn:example:i60'). +'urn:example:i85'('urn:example:i10', 'urn:example:i45'). +'urn:example:i85'('urn:example:i10', 'urn:example:i48'). +'urn:example:i85'('urn:example:i11', 'urn:example:i15'). +'urn:example:i85'('urn:example:i11', 'urn:example:i57'). +'urn:example:i85'('urn:example:i12', 'urn:example:i87'). +'urn:example:i85'('urn:example:i13', 'urn:example:i3'). +'urn:example:i85'('urn:example:i13', 'urn:example:i93'). +'urn:example:i85'('urn:example:i14', 'urn:example:i27'). +'urn:example:i85'('urn:example:i15', 'urn:example:i21'). +'urn:example:i85'('urn:example:i17', 'urn:example:i78'). +'urn:example:i85'('urn:example:i19', 'urn:example:i0'). +'urn:example:i85'('urn:example:i19', 'urn:example:i75'). +'urn:example:i85'('urn:example:i1', 'urn:example:i18'). +'urn:example:i85'('urn:example:i1', 'urn:example:i24'). +'urn:example:i85'('urn:example:i1', 'urn:example:i30'). +'urn:example:i85'('urn:example:i21', 'urn:example:i0'). +'urn:example:i85'('urn:example:i21', 'urn:example:i72'). +'urn:example:i85'('urn:example:i22', 'urn:example:i0'). +'urn:example:i85'('urn:example:i22', 'urn:example:i69'). +'urn:example:i85'('urn:example:i23', 'urn:example:i96'). +'urn:example:i85'('urn:example:i25', 'urn:example:i30'). +'urn:example:i85'('urn:example:i25', 'urn:example:i60'). +'urn:example:i85'('urn:example:i26', 'urn:example:i90'). +'urn:example:i85'('urn:example:i27', 'urn:example:i84'). +'urn:example:i85'('urn:example:i29', 'urn:example:i0'). +'urn:example:i85'('urn:example:i2', 'urn:example:i0'). +'urn:example:i85'('urn:example:i2', 'urn:example:i84'). +'urn:example:i85'('urn:example:i30', 'urn:example:i24'). +'urn:example:i85'('urn:example:i30', 'urn:example:i90'). +'urn:example:i85'('urn:example:i30', 'urn:example:i99'). +'urn:example:i85'('urn:example:i31', 'urn:example:i48'). +'urn:example:i85'('urn:example:i32', 'urn:example:i15'). +'urn:example:i85'('urn:example:i32', 'urn:example:i18'). +'urn:example:i85'('urn:example:i32', 'urn:example:i33'). +'urn:example:i85'('urn:example:i36', 'urn:example:i24'). +'urn:example:i85'('urn:example:i38', 'urn:example:i3'). +'urn:example:i85'('urn:example:i3', 'urn:example:i96'). +'urn:example:i85'('urn:example:i40', 'urn:example:i99'). +'urn:example:i85'('urn:example:i42', 'urn:example:i33'). +'urn:example:i85'('urn:example:i42', 'urn:example:i36'). +'urn:example:i85'('urn:example:i42', 'urn:example:i54'). +'urn:example:i85'('urn:example:i42', 'urn:example:i93'). +'urn:example:i85'('urn:example:i43', 'urn:example:i21'). +'urn:example:i85'('urn:example:i46', 'urn:example:i6'). +'urn:example:i85'('urn:example:i47', 'urn:example:i54'). +'urn:example:i85'('urn:example:i47', 'urn:example:i96'). +'urn:example:i85'('urn:example:i50', 'urn:example:i81'). +'urn:example:i85'('urn:example:i52', 'urn:example:i63'). +'urn:example:i85'('urn:example:i54', 'urn:example:i6'). +'urn:example:i85'('urn:example:i56', 'urn:example:i9'). +'urn:example:i85'('urn:example:i57', 'urn:example:i9'). +'urn:example:i85'('urn:example:i59', 'urn:example:i27'). +'urn:example:i85'('urn:example:i5', 'urn:example:i27'). +'urn:example:i85'('urn:example:i5', 'urn:example:i36'). +'urn:example:i85'('urn:example:i60', 'urn:example:i3'). +'urn:example:i85'('urn:example:i60', 'urn:example:i81'). +'urn:example:i85'('urn:example:i61', 'urn:example:i66'). +'urn:example:i85'('urn:example:i64', 'urn:example:i60'). +'urn:example:i85'('urn:example:i66', 'urn:example:i69'). +'urn:example:i85'('urn:example:i68', 'urn:example:i3'). +'urn:example:i85'('urn:example:i6', 'urn:example:i39'). +'urn:example:i85'('urn:example:i6', 'urn:example:i66'). +'urn:example:i85'('urn:example:i72', 'urn:example:i87'). +'urn:example:i85'('urn:example:i73', 'urn:example:i21'). +'urn:example:i85'('urn:example:i73', 'urn:example:i78'). +'urn:example:i85'('urn:example:i74', 'urn:example:i42'). +'urn:example:i85'('urn:example:i74', 'urn:example:i48'). +'urn:example:i85'('urn:example:i75', 'urn:example:i33'). +'urn:example:i85'('urn:example:i76', 'urn:example:i69'). +'urn:example:i85'('urn:example:i77', 'urn:example:i12'). +'urn:example:i85'('urn:example:i77', 'urn:example:i3'). +'urn:example:i85'('urn:example:i77', 'urn:example:i87'). +'urn:example:i85'('urn:example:i78', 'urn:example:i57'). +'urn:example:i85'('urn:example:i79', 'urn:example:i9'). +'urn:example:i85'('urn:example:i79', 'urn:example:i9'). +'urn:example:i85'('urn:example:i7', 'urn:example:i0'). +'urn:example:i85'('urn:example:i7', 'urn:example:i18'). +'urn:example:i85'('urn:example:i80', 'urn:example:i15'). +'urn:example:i85'('urn:example:i80', 'urn:example:i69'). +'urn:example:i85'('urn:example:i81', 'urn:example:i0'). +'urn:example:i85'('urn:example:i82', 'urn:example:i42'). +'urn:example:i85'('urn:example:i82', 'urn:example:i66'). +'urn:example:i85'('urn:example:i83', 'urn:example:i6'). +'urn:example:i85'('urn:example:i84', 'urn:example:i78'). +'urn:example:i85'('urn:example:i84', 'urn:example:i96'). +'urn:example:i85'('urn:example:i85', 'urn:example:i30'). +'urn:example:i85'('urn:example:i88', 'urn:example:i69'). +'urn:example:i85'('urn:example:i89', 'urn:example:i21'). +'urn:example:i85'('urn:example:i8', 'urn:example:i72'). +'urn:example:i85'('urn:example:i90', 'urn:example:i27'). +'urn:example:i85'('urn:example:i90', 'urn:example:i6'). +'urn:example:i85'('urn:example:i91', 'urn:example:i24'). +'urn:example:i85'('urn:example:i92', 'urn:example:i12'). +'urn:example:i85'('urn:example:i92', 'urn:example:i39'). +'urn:example:i85'('urn:example:i94', 'urn:example:i30'). +'urn:example:i85'('urn:example:i94', 'urn:example:i60'). +'urn:example:i85'('urn:example:i94', 'urn:example:i99'). +'urn:example:i85'('urn:example:i95', 'urn:example:i84'). +'urn:example:i85'('urn:example:i9', 'urn:example:i63'). +'urn:example:i86'('urn:example:i0', 'urn:example:i0'). +'urn:example:i86'('urn:example:i10', 'urn:example:i66'). +'urn:example:i86'('urn:example:i10', 'urn:example:i81'). +'urn:example:i86'('urn:example:i10', 'urn:example:i9'). +'urn:example:i86'('urn:example:i12', 'urn:example:i57'). +'urn:example:i86'('urn:example:i13', 'urn:example:i48'). +'urn:example:i86'('urn:example:i13', 'urn:example:i78'). +'urn:example:i86'('urn:example:i14', 'urn:example:i96'). +'urn:example:i86'('urn:example:i16', 'urn:example:i96'). +'urn:example:i86'('urn:example:i18', 'urn:example:i48'). +'urn:example:i86'('urn:example:i18', 'urn:example:i96'). +'urn:example:i86'('urn:example:i19', 'urn:example:i24'). +'urn:example:i86'('urn:example:i1', 'urn:example:i39'). +'urn:example:i86'('urn:example:i20', 'urn:example:i48'). +'urn:example:i86'('urn:example:i20', 'urn:example:i66'). +'urn:example:i86'('urn:example:i21', 'urn:example:i24'). +'urn:example:i86'('urn:example:i22', 'urn:example:i57'). +'urn:example:i86'('urn:example:i23', 'urn:example:i0'). +'urn:example:i86'('urn:example:i23', 'urn:example:i42'). +'urn:example:i86'('urn:example:i24', 'urn:example:i18'). +'urn:example:i86'('urn:example:i24', 'urn:example:i42'). +'urn:example:i86'('urn:example:i24', 'urn:example:i87'). +'urn:example:i86'('urn:example:i26', 'urn:example:i42'). +'urn:example:i86'('urn:example:i26', 'urn:example:i9'). +'urn:example:i86'('urn:example:i27', 'urn:example:i87'). +'urn:example:i86'('urn:example:i28', 'urn:example:i60'). +'urn:example:i86'('urn:example:i28', 'urn:example:i69'). +'urn:example:i86'('urn:example:i28', 'urn:example:i75'). +'urn:example:i86'('urn:example:i2', 'urn:example:i0'). +'urn:example:i86'('urn:example:i2', 'urn:example:i24'). +'urn:example:i86'('urn:example:i2', 'urn:example:i63'). +'urn:example:i86'('urn:example:i30', 'urn:example:i75'). +'urn:example:i86'('urn:example:i31', 'urn:example:i30'). +'urn:example:i86'('urn:example:i32', 'urn:example:i78'). +'urn:example:i86'('urn:example:i34', 'urn:example:i48'). +'urn:example:i86'('urn:example:i34', 'urn:example:i63'). +'urn:example:i86'('urn:example:i35', 'urn:example:i66'). +'urn:example:i86'('urn:example:i35', 'urn:example:i69'). +'urn:example:i86'('urn:example:i36', 'urn:example:i57'). +'urn:example:i86'('urn:example:i38', 'urn:example:i75'). +'urn:example:i86'('urn:example:i38', 'urn:example:i81'). +'urn:example:i86'('urn:example:i38', 'urn:example:i99'). +'urn:example:i86'('urn:example:i3', 'urn:example:i6'). +'urn:example:i86'('urn:example:i41', 'urn:example:i45'). +'urn:example:i86'('urn:example:i41', 'urn:example:i75'). +'urn:example:i86'('urn:example:i42', 'urn:example:i57'). +'urn:example:i86'('urn:example:i43', 'urn:example:i15'). +'urn:example:i86'('urn:example:i43', 'urn:example:i66'). +'urn:example:i86'('urn:example:i43', 'urn:example:i96'). +'urn:example:i86'('urn:example:i50', 'urn:example:i51'). +'urn:example:i86'('urn:example:i52', 'urn:example:i39'). +'urn:example:i86'('urn:example:i54', 'urn:example:i18'). +'urn:example:i86'('urn:example:i55', 'urn:example:i18'). +'urn:example:i86'('urn:example:i55', 'urn:example:i54'). +'urn:example:i86'('urn:example:i56', 'urn:example:i3'). +'urn:example:i86'('urn:example:i57', 'urn:example:i15'). +'urn:example:i86'('urn:example:i62', 'urn:example:i42'). +'urn:example:i86'('urn:example:i63', 'urn:example:i3'). +'urn:example:i86'('urn:example:i65', 'urn:example:i39'). +'urn:example:i86'('urn:example:i65', 'urn:example:i60'). +'urn:example:i86'('urn:example:i65', 'urn:example:i81'). +'urn:example:i86'('urn:example:i69', 'urn:example:i3'). +'urn:example:i86'('urn:example:i69', 'urn:example:i3'). +'urn:example:i86'('urn:example:i70', 'urn:example:i57'). +'urn:example:i86'('urn:example:i70', 'urn:example:i78'). +'urn:example:i86'('urn:example:i72', 'urn:example:i90'). +'urn:example:i86'('urn:example:i73', 'urn:example:i69'). +'urn:example:i86'('urn:example:i74', 'urn:example:i27'). +'urn:example:i86'('urn:example:i75', 'urn:example:i15'). +'urn:example:i86'('urn:example:i78', 'urn:example:i36'). +'urn:example:i86'('urn:example:i78', 'urn:example:i45'). +'urn:example:i86'('urn:example:i7', 'urn:example:i75'). +'urn:example:i86'('urn:example:i7', 'urn:example:i99'). +'urn:example:i86'('urn:example:i81', 'urn:example:i42'). +'urn:example:i86'('urn:example:i81', 'urn:example:i57'). +'urn:example:i86'('urn:example:i81', 'urn:example:i60'). +'urn:example:i86'('urn:example:i84', 'urn:example:i33'). +'urn:example:i86'('urn:example:i85', 'urn:example:i54'). +'urn:example:i86'('urn:example:i86', 'urn:example:i24'). +'urn:example:i86'('urn:example:i86', 'urn:example:i30'). +'urn:example:i86'('urn:example:i87', 'urn:example:i39'). +'urn:example:i86'('urn:example:i88', 'urn:example:i15'). +'urn:example:i86'('urn:example:i89', 'urn:example:i12'). +'urn:example:i86'('urn:example:i89', 'urn:example:i36'). +'urn:example:i86'('urn:example:i8', 'urn:example:i54'). +'urn:example:i86'('urn:example:i8', 'urn:example:i6'). +'urn:example:i86'('urn:example:i91', 'urn:example:i0'). +'urn:example:i86'('urn:example:i92', 'urn:example:i18'). +'urn:example:i86'('urn:example:i93', 'urn:example:i75'). +'urn:example:i86'('urn:example:i94', 'urn:example:i18'). +'urn:example:i86'('urn:example:i94', 'urn:example:i60'). +'urn:example:i86'('urn:example:i94', 'urn:example:i66'). +'urn:example:i86'('urn:example:i94', 'urn:example:i81'). +'urn:example:i86'('urn:example:i95', 'urn:example:i0'). +'urn:example:i86'('urn:example:i95', 'urn:example:i39'). +'urn:example:i86'('urn:example:i96', 'urn:example:i30'). +'urn:example:i86'('urn:example:i99', 'urn:example:i45'). +'urn:example:i86'('urn:example:i99', 'urn:example:i63'). +'urn:example:i87'('urn:example:i0', 'urn:example:i24'). +'urn:example:i87'('urn:example:i0', 'urn:example:i72'). +'urn:example:i87'('urn:example:i11', 'urn:example:i87'). +'urn:example:i87'('urn:example:i11', 'urn:example:i93'). +'urn:example:i87'('urn:example:i12', 'urn:example:i54'). +'urn:example:i87'('urn:example:i12', 'urn:example:i75'). +'urn:example:i87'('urn:example:i14', 'urn:example:i72'). +'urn:example:i87'('urn:example:i15', 'urn:example:i45'). +'urn:example:i87'('urn:example:i16', 'urn:example:i45'). +'urn:example:i87'('urn:example:i17', 'urn:example:i15'). +'urn:example:i87'('urn:example:i18', 'urn:example:i60'). +'urn:example:i87'('urn:example:i1', 'urn:example:i78'). +'urn:example:i87'('urn:example:i1', 'urn:example:i78'). +'urn:example:i87'('urn:example:i20', 'urn:example:i42'). +'urn:example:i87'('urn:example:i20', 'urn:example:i69'). +'urn:example:i87'('urn:example:i21', 'urn:example:i18'). +'urn:example:i87'('urn:example:i24', 'urn:example:i63'). +'urn:example:i87'('urn:example:i24', 'urn:example:i69'). +'urn:example:i87'('urn:example:i26', 'urn:example:i33'). +'urn:example:i87'('urn:example:i26', 'urn:example:i63'). +'urn:example:i87'('urn:example:i26', 'urn:example:i69'). +'urn:example:i87'('urn:example:i27', 'urn:example:i24'). +'urn:example:i87'('urn:example:i27', 'urn:example:i66'). +'urn:example:i87'('urn:example:i28', 'urn:example:i51'). +'urn:example:i87'('urn:example:i28', 'urn:example:i57'). +'urn:example:i87'('urn:example:i28', 'urn:example:i60'). +'urn:example:i87'('urn:example:i2', 'urn:example:i96'). +'urn:example:i87'('urn:example:i30', 'urn:example:i15'). +'urn:example:i87'('urn:example:i31', 'urn:example:i45'). +'urn:example:i87'('urn:example:i32', 'urn:example:i39'). +'urn:example:i87'('urn:example:i33', 'urn:example:i6'). +'urn:example:i87'('urn:example:i36', 'urn:example:i54'). +'urn:example:i87'('urn:example:i36', 'urn:example:i57'). +'urn:example:i87'('urn:example:i38', 'urn:example:i30'). +'urn:example:i87'('urn:example:i38', 'urn:example:i72'). +'urn:example:i87'('urn:example:i39', 'urn:example:i18'). +'urn:example:i87'('urn:example:i39', 'urn:example:i9'). +'urn:example:i87'('urn:example:i41', 'urn:example:i33'). +'urn:example:i87'('urn:example:i41', 'urn:example:i42'). +'urn:example:i87'('urn:example:i42', 'urn:example:i81'). +'urn:example:i87'('urn:example:i43', 'urn:example:i63'). +'urn:example:i87'('urn:example:i43', 'urn:example:i99'). +'urn:example:i87'('urn:example:i44', 'urn:example:i18'). +'urn:example:i87'('urn:example:i44', 'urn:example:i54'). +'urn:example:i87'('urn:example:i44', 'urn:example:i6'). +'urn:example:i87'('urn:example:i44', 'urn:example:i99'). +'urn:example:i87'('urn:example:i46', 'urn:example:i69'). +'urn:example:i87'('urn:example:i48', 'urn:example:i15'). +'urn:example:i87'('urn:example:i50', 'urn:example:i12'). +'urn:example:i87'('urn:example:i50', 'urn:example:i78'). +'urn:example:i87'('urn:example:i51', 'urn:example:i9'). +'urn:example:i87'('urn:example:i52', 'urn:example:i51'). +'urn:example:i87'('urn:example:i52', 'urn:example:i93'). +'urn:example:i87'('urn:example:i53', 'urn:example:i87'). +'urn:example:i87'('urn:example:i54', 'urn:example:i0'). +'urn:example:i87'('urn:example:i54', 'urn:example:i78'). +'urn:example:i87'('urn:example:i55', 'urn:example:i57'). +'urn:example:i87'('urn:example:i57', 'urn:example:i12'). +'urn:example:i87'('urn:example:i57', 'urn:example:i21'). +'urn:example:i87'('urn:example:i57', 'urn:example:i27'). +'urn:example:i87'('urn:example:i58', 'urn:example:i66'). +'urn:example:i87'('urn:example:i60', 'urn:example:i15'). +'urn:example:i87'('urn:example:i60', 'urn:example:i6'). +'urn:example:i87'('urn:example:i62', 'urn:example:i39'). +'urn:example:i87'('urn:example:i62', 'urn:example:i57'). +'urn:example:i87'('urn:example:i64', 'urn:example:i90'). +'urn:example:i87'('urn:example:i67', 'urn:example:i27'). +'urn:example:i87'('urn:example:i68', 'urn:example:i27'). +'urn:example:i87'('urn:example:i6', 'urn:example:i12'). +'urn:example:i87'('urn:example:i6', 'urn:example:i12'). +'urn:example:i87'('urn:example:i70', 'urn:example:i96'). +'urn:example:i87'('urn:example:i70', 'urn:example:i9'). +'urn:example:i87'('urn:example:i70', 'urn:example:i9'). +'urn:example:i87'('urn:example:i71', 'urn:example:i81'). +'urn:example:i87'('urn:example:i75', 'urn:example:i6'). +'urn:example:i87'('urn:example:i76', 'urn:example:i0'). +'urn:example:i87'('urn:example:i76', 'urn:example:i12'). +'urn:example:i87'('urn:example:i76', 'urn:example:i30'). +'urn:example:i87'('urn:example:i76', 'urn:example:i33'). +'urn:example:i87'('urn:example:i76', 'urn:example:i51'). +'urn:example:i87'('urn:example:i76', 'urn:example:i93'). +'urn:example:i87'('urn:example:i77', 'urn:example:i63'). +'urn:example:i87'('urn:example:i79', 'urn:example:i15'). +'urn:example:i87'('urn:example:i79', 'urn:example:i60'). +'urn:example:i87'('urn:example:i7', 'urn:example:i36'). +'urn:example:i87'('urn:example:i80', 'urn:example:i3'). +'urn:example:i87'('urn:example:i83', 'urn:example:i15'). +'urn:example:i87'('urn:example:i83', 'urn:example:i3'). +'urn:example:i87'('urn:example:i85', 'urn:example:i69'). +'urn:example:i87'('urn:example:i86', 'urn:example:i48'). +'urn:example:i87'('urn:example:i86', 'urn:example:i6'). +'urn:example:i87'('urn:example:i88', 'urn:example:i30'). +'urn:example:i87'('urn:example:i89', 'urn:example:i72'). +'urn:example:i87'('urn:example:i8', 'urn:example:i0'). +'urn:example:i87'('urn:example:i8', 'urn:example:i36'). +'urn:example:i87'('urn:example:i8', 'urn:example:i87'). +'urn:example:i87'('urn:example:i90', 'urn:example:i60'). +'urn:example:i87'('urn:example:i93', 'urn:example:i0'). +'urn:example:i87'('urn:example:i93', 'urn:example:i69'). +'urn:example:i87'('urn:example:i94', 'urn:example:i84'). +'urn:example:i87'('urn:example:i96', 'urn:example:i51'). +'urn:example:i87'('urn:example:i98', 'urn:example:i0'). +'urn:example:i87'('urn:example:i9', 'urn:example:i90'). +'urn:example:i88'('urn:example:i10', 'urn:example:i90'). +'urn:example:i88'('urn:example:i10', 'urn:example:i9'). +'urn:example:i88'('urn:example:i13', 'urn:example:i33'). +'urn:example:i88'('urn:example:i13', 'urn:example:i45'). +'urn:example:i88'('urn:example:i14', 'urn:example:i18'). +'urn:example:i88'('urn:example:i15', 'urn:example:i84'). +'urn:example:i88'('urn:example:i17', 'urn:example:i18'). +'urn:example:i88'('urn:example:i17', 'urn:example:i45'). +'urn:example:i88'('urn:example:i18', 'urn:example:i69'). +'urn:example:i88'('urn:example:i18', 'urn:example:i84'). +'urn:example:i88'('urn:example:i21', 'urn:example:i18'). +'urn:example:i88'('urn:example:i24', 'urn:example:i93'). +'urn:example:i88'('urn:example:i25', 'urn:example:i15'). +'urn:example:i88'('urn:example:i25', 'urn:example:i6'). +'urn:example:i88'('urn:example:i26', 'urn:example:i15'). +'urn:example:i88'('urn:example:i28', 'urn:example:i27'). +'urn:example:i88'('urn:example:i2', 'urn:example:i48'). +'urn:example:i88'('urn:example:i32', 'urn:example:i24'). +'urn:example:i88'('urn:example:i32', 'urn:example:i48'). +'urn:example:i88'('urn:example:i32', 'urn:example:i93'). +'urn:example:i88'('urn:example:i35', 'urn:example:i27'). +'urn:example:i88'('urn:example:i35', 'urn:example:i48'). +'urn:example:i88'('urn:example:i36', 'urn:example:i12'). +'urn:example:i88'('urn:example:i36', 'urn:example:i42'). +'urn:example:i88'('urn:example:i37', 'urn:example:i15'). +'urn:example:i88'('urn:example:i37', 'urn:example:i36'). +'urn:example:i88'('urn:example:i37', 'urn:example:i42'). +'urn:example:i88'('urn:example:i3', 'urn:example:i3'). +'urn:example:i88'('urn:example:i3', 'urn:example:i87'). +'urn:example:i88'('urn:example:i40', 'urn:example:i57'). +'urn:example:i88'('urn:example:i41', 'urn:example:i66'). +'urn:example:i88'('urn:example:i43', 'urn:example:i63'). +'urn:example:i88'('urn:example:i44', 'urn:example:i42'). +'urn:example:i88'('urn:example:i46', 'urn:example:i51'). +'urn:example:i88'('urn:example:i46', 'urn:example:i72'). +'urn:example:i88'('urn:example:i46', 'urn:example:i72'). +'urn:example:i88'('urn:example:i48', 'urn:example:i3'). +'urn:example:i88'('urn:example:i4', 'urn:example:i45'). +'urn:example:i88'('urn:example:i4', 'urn:example:i54'). +'urn:example:i88'('urn:example:i51', 'urn:example:i45'). +'urn:example:i88'('urn:example:i53', 'urn:example:i0'). +'urn:example:i88'('urn:example:i54', 'urn:example:i54'). +'urn:example:i88'('urn:example:i54', 'urn:example:i87'). +'urn:example:i88'('urn:example:i55', 'urn:example:i33'). +'urn:example:i88'('urn:example:i55', 'urn:example:i54'). +'urn:example:i88'('urn:example:i55', 'urn:example:i60'). +'urn:example:i88'('urn:example:i55', 'urn:example:i78'). +'urn:example:i88'('urn:example:i56', 'urn:example:i81'). +'urn:example:i88'('urn:example:i57', 'urn:example:i57'). +'urn:example:i88'('urn:example:i57', 'urn:example:i78'). +'urn:example:i88'('urn:example:i57', 'urn:example:i90'). +'urn:example:i88'('urn:example:i5', 'urn:example:i96'). +'urn:example:i88'('urn:example:i61', 'urn:example:i15'). +'urn:example:i88'('urn:example:i61', 'urn:example:i33'). +'urn:example:i88'('urn:example:i63', 'urn:example:i54'). +'urn:example:i88'('urn:example:i63', 'urn:example:i78'). +'urn:example:i88'('urn:example:i64', 'urn:example:i45'). +'urn:example:i88'('urn:example:i64', 'urn:example:i72'). +'urn:example:i88'('urn:example:i64', 'urn:example:i75'). +'urn:example:i88'('urn:example:i66', 'urn:example:i39'). +'urn:example:i88'('urn:example:i66', 'urn:example:i54'). +'urn:example:i88'('urn:example:i67', 'urn:example:i18'). +'urn:example:i88'('urn:example:i67', 'urn:example:i33'). +'urn:example:i88'('urn:example:i67', 'urn:example:i72'). +'urn:example:i88'('urn:example:i67', 'urn:example:i96'). +'urn:example:i88'('urn:example:i68', 'urn:example:i3'). +'urn:example:i88'('urn:example:i68', 'urn:example:i93'). +'urn:example:i88'('urn:example:i69', 'urn:example:i21'). +'urn:example:i88'('urn:example:i69', 'urn:example:i21'). +'urn:example:i88'('urn:example:i70', 'urn:example:i12'). +'urn:example:i88'('urn:example:i70', 'urn:example:i93'). +'urn:example:i88'('urn:example:i72', 'urn:example:i51'). +'urn:example:i88'('urn:example:i72', 'urn:example:i69'). +'urn:example:i88'('urn:example:i73', 'urn:example:i30'). +'urn:example:i88'('urn:example:i73', 'urn:example:i42'). +'urn:example:i88'('urn:example:i74', 'urn:example:i69'). +'urn:example:i88'('urn:example:i74', 'urn:example:i93'). +'urn:example:i88'('urn:example:i75', 'urn:example:i18'). +'urn:example:i88'('urn:example:i75', 'urn:example:i30'). +'urn:example:i88'('urn:example:i75', 'urn:example:i69'). +'urn:example:i88'('urn:example:i80', 'urn:example:i96'). +'urn:example:i88'('urn:example:i82', 'urn:example:i0'). +'urn:example:i88'('urn:example:i82', 'urn:example:i96'). +'urn:example:i88'('urn:example:i83', 'urn:example:i24'). +'urn:example:i88'('urn:example:i83', 'urn:example:i33'). +'urn:example:i88'('urn:example:i88', 'urn:example:i87'). +'urn:example:i88'('urn:example:i90', 'urn:example:i84'). +'urn:example:i88'('urn:example:i91', 'urn:example:i45'). +'urn:example:i88'('urn:example:i91', 'urn:example:i72'). +'urn:example:i88'('urn:example:i92', 'urn:example:i72'). +'urn:example:i88'('urn:example:i93', 'urn:example:i39'). +'urn:example:i88'('urn:example:i94', 'urn:example:i48'). +'urn:example:i88'('urn:example:i94', 'urn:example:i60'). +'urn:example:i88'('urn:example:i95', 'urn:example:i30'). +'urn:example:i88'('urn:example:i95', 'urn:example:i54'). +'urn:example:i88'('urn:example:i97', 'urn:example:i27'). +'urn:example:i88'('urn:example:i99', 'urn:example:i69'). +'urn:example:i89'('urn:example:i0', 'urn:example:i63'). +'urn:example:i89'('urn:example:i10', 'urn:example:i66'). +'urn:example:i89'('urn:example:i11', 'urn:example:i6'). +'urn:example:i89'('urn:example:i11', 'urn:example:i78'). +'urn:example:i89'('urn:example:i12', 'urn:example:i51'). +'urn:example:i89'('urn:example:i12', 'urn:example:i6'). +'urn:example:i89'('urn:example:i12', 'urn:example:i90'). +'urn:example:i89'('urn:example:i13', 'urn:example:i45'). +'urn:example:i89'('urn:example:i13', 'urn:example:i48'). +'urn:example:i89'('urn:example:i13', 'urn:example:i75'). +'urn:example:i89'('urn:example:i13', 'urn:example:i90'). +'urn:example:i89'('urn:example:i14', 'urn:example:i45'). +'urn:example:i89'('urn:example:i15', 'urn:example:i66'). +'urn:example:i89'('urn:example:i19', 'urn:example:i39'). +'urn:example:i89'('urn:example:i19', 'urn:example:i54'). +'urn:example:i89'('urn:example:i1', 'urn:example:i81'). +'urn:example:i89'('urn:example:i1', 'urn:example:i84'). +'urn:example:i89'('urn:example:i20', 'urn:example:i51'). +'urn:example:i89'('urn:example:i22', 'urn:example:i9'). +'urn:example:i89'('urn:example:i24', 'urn:example:i12'). +'urn:example:i89'('urn:example:i24', 'urn:example:i39'). +'urn:example:i89'('urn:example:i24', 'urn:example:i39'). +'urn:example:i89'('urn:example:i25', 'urn:example:i33'). +'urn:example:i89'('urn:example:i25', 'urn:example:i48'). +'urn:example:i89'('urn:example:i26', 'urn:example:i60'). +'urn:example:i89'('urn:example:i27', 'urn:example:i45'). +'urn:example:i89'('urn:example:i27', 'urn:example:i48'). +'urn:example:i89'('urn:example:i27', 'urn:example:i66'). +'urn:example:i89'('urn:example:i29', 'urn:example:i0'). +'urn:example:i89'('urn:example:i2', 'urn:example:i6'). +'urn:example:i89'('urn:example:i33', 'urn:example:i87'). +'urn:example:i89'('urn:example:i34', 'urn:example:i6'). +'urn:example:i89'('urn:example:i35', 'urn:example:i54'). +'urn:example:i89'('urn:example:i3', 'urn:example:i69'). +'urn:example:i89'('urn:example:i41', 'urn:example:i0'). +'urn:example:i89'('urn:example:i43', 'urn:example:i81'). +'urn:example:i89'('urn:example:i44', 'urn:example:i75'). +'urn:example:i89'('urn:example:i45', 'urn:example:i60'). +'urn:example:i89'('urn:example:i47', 'urn:example:i9'). +'urn:example:i89'('urn:example:i48', 'urn:example:i48'). +'urn:example:i89'('urn:example:i4', 'urn:example:i30'). +'urn:example:i89'('urn:example:i50', 'urn:example:i81'). +'urn:example:i89'('urn:example:i52', 'urn:example:i75'). +'urn:example:i89'('urn:example:i54', 'urn:example:i60'). +'urn:example:i89'('urn:example:i54', 'urn:example:i63'). +'urn:example:i89'('urn:example:i55', 'urn:example:i36'). +'urn:example:i89'('urn:example:i55', 'urn:example:i51'). +'urn:example:i89'('urn:example:i57', 'urn:example:i36'). +'urn:example:i89'('urn:example:i59', 'urn:example:i39'). +'urn:example:i89'('urn:example:i59', 'urn:example:i51'). +'urn:example:i89'('urn:example:i59', 'urn:example:i84'). +'urn:example:i89'('urn:example:i5', 'urn:example:i33'). +'urn:example:i89'('urn:example:i60', 'urn:example:i30'). +'urn:example:i89'('urn:example:i61', 'urn:example:i30'). +'urn:example:i89'('urn:example:i61', 'urn:example:i84'). +'urn:example:i89'('urn:example:i62', 'urn:example:i81'). +'urn:example:i89'('urn:example:i62', 'urn:example:i93'). +'urn:example:i89'('urn:example:i63', 'urn:example:i93'). +'urn:example:i89'('urn:example:i64', 'urn:example:i51'). +'urn:example:i89'('urn:example:i64', 'urn:example:i54'). +'urn:example:i89'('urn:example:i65', 'urn:example:i42'). +'urn:example:i89'('urn:example:i66', 'urn:example:i33'). +'urn:example:i89'('urn:example:i67', 'urn:example:i42'). +'urn:example:i89'('urn:example:i6', 'urn:example:i18'). +'urn:example:i89'('urn:example:i70', 'urn:example:i99'). +'urn:example:i89'('urn:example:i71', 'urn:example:i30'). +'urn:example:i89'('urn:example:i71', 'urn:example:i72'). +'urn:example:i89'('urn:example:i72', 'urn:example:i15'). +'urn:example:i89'('urn:example:i72', 'urn:example:i69'). +'urn:example:i89'('urn:example:i73', 'urn:example:i42'). +'urn:example:i89'('urn:example:i73', 'urn:example:i42'). +'urn:example:i89'('urn:example:i73', 'urn:example:i6'). +'urn:example:i89'('urn:example:i74', 'urn:example:i24'). +'urn:example:i89'('urn:example:i74', 'urn:example:i36'). +'urn:example:i89'('urn:example:i74', 'urn:example:i6'). +'urn:example:i89'('urn:example:i75', 'urn:example:i33'). +'urn:example:i89'('urn:example:i76', 'urn:example:i3'). +'urn:example:i89'('urn:example:i77', 'urn:example:i96'). +'urn:example:i89'('urn:example:i78', 'urn:example:i60'). +'urn:example:i89'('urn:example:i79', 'urn:example:i72'). +'urn:example:i89'('urn:example:i82', 'urn:example:i9'). +'urn:example:i89'('urn:example:i83', 'urn:example:i6'). +'urn:example:i89'('urn:example:i85', 'urn:example:i51'). +'urn:example:i89'('urn:example:i85', 'urn:example:i96'). +'urn:example:i89'('urn:example:i86', 'urn:example:i81'). +'urn:example:i89'('urn:example:i87', 'urn:example:i9'). +'urn:example:i89'('urn:example:i88', 'urn:example:i51'). +'urn:example:i89'('urn:example:i89', 'urn:example:i42'). +'urn:example:i89'('urn:example:i8', 'urn:example:i6'). +'urn:example:i89'('urn:example:i90', 'urn:example:i48'). +'urn:example:i89'('urn:example:i90', 'urn:example:i75'). +'urn:example:i89'('urn:example:i91', 'urn:example:i51'). +'urn:example:i89'('urn:example:i92', 'urn:example:i24'). +'urn:example:i89'('urn:example:i92', 'urn:example:i39'). +'urn:example:i89'('urn:example:i94', 'urn:example:i0'). +'urn:example:i89'('urn:example:i94', 'urn:example:i39'). +'urn:example:i89'('urn:example:i95', 'urn:example:i93'). +'urn:example:i89'('urn:example:i96', 'urn:example:i54'). +'urn:example:i89'('urn:example:i96', 'urn:example:i84'). +'urn:example:i89'('urn:example:i97', 'urn:example:i33'). +'urn:example:i89'('urn:example:i97', 'urn:example:i66'). +'urn:example:i89'('urn:example:i98', 'urn:example:i27'). +'urn:example:i89'('urn:example:i99', 'urn:example:i0'). +'urn:example:i89'('urn:example:i9', 'urn:example:i51'). +'urn:example:i89'('urn:example:i9', 'urn:example:i9'). +'urn:example:i8'('urn:example:i10', 'urn:example:i51'). +'urn:example:i8'('urn:example:i12', 'urn:example:i48'). +'urn:example:i8'('urn:example:i12', 'urn:example:i69'). +'urn:example:i8'('urn:example:i15', 'urn:example:i21'). +'urn:example:i8'('urn:example:i15', 'urn:example:i45'). +'urn:example:i8'('urn:example:i15', 'urn:example:i45'). +'urn:example:i8'('urn:example:i16', 'urn:example:i36'). +'urn:example:i8'('urn:example:i16', 'urn:example:i60'). +'urn:example:i8'('urn:example:i16', 'urn:example:i66'). +'urn:example:i8'('urn:example:i16', 'urn:example:i9'). +'urn:example:i8'('urn:example:i17', 'urn:example:i36'). +'urn:example:i8'('urn:example:i18', 'urn:example:i15'). +'urn:example:i8'('urn:example:i19', 'urn:example:i30'). +'urn:example:i8'('urn:example:i1', 'urn:example:i60'). +'urn:example:i8'('urn:example:i21', 'urn:example:i33'). +'urn:example:i8'('urn:example:i23', 'urn:example:i96'). +'urn:example:i8'('urn:example:i24', 'urn:example:i0'). +'urn:example:i8'('urn:example:i24', 'urn:example:i54'). +'urn:example:i8'('urn:example:i26', 'urn:example:i51'). +'urn:example:i8'('urn:example:i27', 'urn:example:i69'). +'urn:example:i8'('urn:example:i28', 'urn:example:i81'). +'urn:example:i8'('urn:example:i28', 'urn:example:i84'). +'urn:example:i8'('urn:example:i2', 'urn:example:i21'). +'urn:example:i8'('urn:example:i2', 'urn:example:i66'). +'urn:example:i8'('urn:example:i2', 'urn:example:i9'). +'urn:example:i8'('urn:example:i30', 'urn:example:i0'). +'urn:example:i8'('urn:example:i31', 'urn:example:i72'). +'urn:example:i8'('urn:example:i33', 'urn:example:i6'). +'urn:example:i8'('urn:example:i34', 'urn:example:i87'). +'urn:example:i8'('urn:example:i35', 'urn:example:i57'). +'urn:example:i8'('urn:example:i36', 'urn:example:i21'). +'urn:example:i8'('urn:example:i37', 'urn:example:i51'). +'urn:example:i8'('urn:example:i38', 'urn:example:i36'). +'urn:example:i8'('urn:example:i40', 'urn:example:i72'). +'urn:example:i8'('urn:example:i41', 'urn:example:i27'). +'urn:example:i8'('urn:example:i41', 'urn:example:i78'). +'urn:example:i8'('urn:example:i42', 'urn:example:i12'). +'urn:example:i8'('urn:example:i42', 'urn:example:i78'). +'urn:example:i8'('urn:example:i43', 'urn:example:i36'). +'urn:example:i8'('urn:example:i44', 'urn:example:i75'). +'urn:example:i8'('urn:example:i45', 'urn:example:i3'). +'urn:example:i8'('urn:example:i46', 'urn:example:i24'). +'urn:example:i8'('urn:example:i47', 'urn:example:i54'). +'urn:example:i8'('urn:example:i48', 'urn:example:i60'). +'urn:example:i8'('urn:example:i48', 'urn:example:i63'). +'urn:example:i8'('urn:example:i48', 'urn:example:i66'). +'urn:example:i8'('urn:example:i49', 'urn:example:i18'). +'urn:example:i8'('urn:example:i49', 'urn:example:i54'). +'urn:example:i8'('urn:example:i4', 'urn:example:i39'). +'urn:example:i8'('urn:example:i4', 'urn:example:i6'). +'urn:example:i8'('urn:example:i52', 'urn:example:i12'). +'urn:example:i8'('urn:example:i52', 'urn:example:i99'). +'urn:example:i8'('urn:example:i53', 'urn:example:i0'). +'urn:example:i8'('urn:example:i53', 'urn:example:i42'). +'urn:example:i8'('urn:example:i54', 'urn:example:i51'). +'urn:example:i8'('urn:example:i55', 'urn:example:i36'). +'urn:example:i8'('urn:example:i57', 'urn:example:i24'). +'urn:example:i8'('urn:example:i57', 'urn:example:i36'). +'urn:example:i8'('urn:example:i57', 'urn:example:i42'). +'urn:example:i8'('urn:example:i57', 'urn:example:i72'). +'urn:example:i8'('urn:example:i57', 'urn:example:i9'). +'urn:example:i8'('urn:example:i60', 'urn:example:i75'). +'urn:example:i8'('urn:example:i61', 'urn:example:i9'). +'urn:example:i8'('urn:example:i64', 'urn:example:i3'). +'urn:example:i8'('urn:example:i64', 'urn:example:i78'). +'urn:example:i8'('urn:example:i65', 'urn:example:i33'). +'urn:example:i8'('urn:example:i65', 'urn:example:i90'). +'urn:example:i8'('urn:example:i65', 'urn:example:i9'). +'urn:example:i8'('urn:example:i66', 'urn:example:i90'). +'urn:example:i8'('urn:example:i67', 'urn:example:i87'). +'urn:example:i8'('urn:example:i69', 'urn:example:i63'). +'urn:example:i8'('urn:example:i6', 'urn:example:i12'). +'urn:example:i8'('urn:example:i6', 'urn:example:i75'). +'urn:example:i8'('urn:example:i6', 'urn:example:i93'). +'urn:example:i8'('urn:example:i70', 'urn:example:i27'). +'urn:example:i8'('urn:example:i71', 'urn:example:i69'). +'urn:example:i8'('urn:example:i72', 'urn:example:i87'). +'urn:example:i8'('urn:example:i75', 'urn:example:i18'). +'urn:example:i8'('urn:example:i75', 'urn:example:i51'). +'urn:example:i8'('urn:example:i75', 'urn:example:i93'). +'urn:example:i8'('urn:example:i76', 'urn:example:i72'). +'urn:example:i8'('urn:example:i79', 'urn:example:i21'). +'urn:example:i8'('urn:example:i79', 'urn:example:i78'). +'urn:example:i8'('urn:example:i79', 'urn:example:i87'). +'urn:example:i8'('urn:example:i7', 'urn:example:i72'). +'urn:example:i8'('urn:example:i80', 'urn:example:i42'). +'urn:example:i8'('urn:example:i83', 'urn:example:i45'). +'urn:example:i8'('urn:example:i83', 'urn:example:i93'). +'urn:example:i8'('urn:example:i83', 'urn:example:i9'). +'urn:example:i8'('urn:example:i84', 'urn:example:i21'). +'urn:example:i8'('urn:example:i85', 'urn:example:i0'). +'urn:example:i8'('urn:example:i8', 'urn:example:i39'). +'urn:example:i8'('urn:example:i8', 'urn:example:i96'). +'urn:example:i8'('urn:example:i91', 'urn:example:i0'). +'urn:example:i8'('urn:example:i91', 'urn:example:i18'). +'urn:example:i8'('urn:example:i92', 'urn:example:i33'). +'urn:example:i8'('urn:example:i94', 'urn:example:i90'). +'urn:example:i8'('urn:example:i95', 'urn:example:i24'). +'urn:example:i8'('urn:example:i96', 'urn:example:i45'). +'urn:example:i8'('urn:example:i99', 'urn:example:i60'). +'urn:example:i8'('urn:example:i9', 'urn:example:i81'). +'urn:example:i8'('urn:example:i9', 'urn:example:i93'). +'urn:example:i90'('urn:example:i10', 'urn:example:i27'). +'urn:example:i90'('urn:example:i10', 'urn:example:i87'). +'urn:example:i90'('urn:example:i11', 'urn:example:i75'). +'urn:example:i90'('urn:example:i12', 'urn:example:i96'). +'urn:example:i90'('urn:example:i13', 'urn:example:i18'). +'urn:example:i90'('urn:example:i13', 'urn:example:i21'). +'urn:example:i90'('urn:example:i13', 'urn:example:i87'). +'urn:example:i90'('urn:example:i14', 'urn:example:i45'). +'urn:example:i90'('urn:example:i15', 'urn:example:i36'). +'urn:example:i90'('urn:example:i15', 'urn:example:i3'). +'urn:example:i90'('urn:example:i15', 'urn:example:i42'). +'urn:example:i90'('urn:example:i16', 'urn:example:i57'). +'urn:example:i90'('urn:example:i17', 'urn:example:i57'). +'urn:example:i90'('urn:example:i19', 'urn:example:i27'). +'urn:example:i90'('urn:example:i19', 'urn:example:i57'). +'urn:example:i90'('urn:example:i1', 'urn:example:i15'). +'urn:example:i90'('urn:example:i1', 'urn:example:i72'). +'urn:example:i90'('urn:example:i20', 'urn:example:i69'). +'urn:example:i90'('urn:example:i21', 'urn:example:i27'). +'urn:example:i90'('urn:example:i22', 'urn:example:i54'). +'urn:example:i90'('urn:example:i22', 'urn:example:i93'). +'urn:example:i90'('urn:example:i23', 'urn:example:i39'). +'urn:example:i90'('urn:example:i23', 'urn:example:i66'). +'urn:example:i90'('urn:example:i24', 'urn:example:i45'). +'urn:example:i90'('urn:example:i24', 'urn:example:i51'). +'urn:example:i90'('urn:example:i24', 'urn:example:i90'). +'urn:example:i90'('urn:example:i26', 'urn:example:i24'). +'urn:example:i90'('urn:example:i26', 'urn:example:i99'). +'urn:example:i90'('urn:example:i27', 'urn:example:i45'). +'urn:example:i90'('urn:example:i29', 'urn:example:i60'). +'urn:example:i90'('urn:example:i32', 'urn:example:i57'). +'urn:example:i90'('urn:example:i35', 'urn:example:i54'). +'urn:example:i90'('urn:example:i36', 'urn:example:i57'). +'urn:example:i90'('urn:example:i36', 'urn:example:i69'). +'urn:example:i90'('urn:example:i38', 'urn:example:i72'). +'urn:example:i90'('urn:example:i38', 'urn:example:i96'). +'urn:example:i90'('urn:example:i38', 'urn:example:i9'). +'urn:example:i90'('urn:example:i3', 'urn:example:i0'). +'urn:example:i90'('urn:example:i3', 'urn:example:i63'). +'urn:example:i90'('urn:example:i40', 'urn:example:i12'). +'urn:example:i90'('urn:example:i41', 'urn:example:i69'). +'urn:example:i90'('urn:example:i41', 'urn:example:i9'). +'urn:example:i90'('urn:example:i42', 'urn:example:i24'). +'urn:example:i90'('urn:example:i42', 'urn:example:i57'). +'urn:example:i90'('urn:example:i42', 'urn:example:i60'). +'urn:example:i90'('urn:example:i42', 'urn:example:i96'). +'urn:example:i90'('urn:example:i45', 'urn:example:i87'). +'urn:example:i90'('urn:example:i46', 'urn:example:i12'). +'urn:example:i90'('urn:example:i46', 'urn:example:i15'). +'urn:example:i90'('urn:example:i47', 'urn:example:i54'). +'urn:example:i90'('urn:example:i47', 'urn:example:i6'). +'urn:example:i90'('urn:example:i48', 'urn:example:i18'). +'urn:example:i90'('urn:example:i48', 'urn:example:i69'). +'urn:example:i90'('urn:example:i48', 'urn:example:i78'). +'urn:example:i90'('urn:example:i49', 'urn:example:i84'). +'urn:example:i90'('urn:example:i4', 'urn:example:i51'). +'urn:example:i90'('urn:example:i52', 'urn:example:i39'). +'urn:example:i90'('urn:example:i53', 'urn:example:i69'). +'urn:example:i90'('urn:example:i54', 'urn:example:i6'). +'urn:example:i90'('urn:example:i54', 'urn:example:i87'). +'urn:example:i90'('urn:example:i56', 'urn:example:i87'). +'urn:example:i90'('urn:example:i57', 'urn:example:i15'). +'urn:example:i90'('urn:example:i57', 'urn:example:i18'). +'urn:example:i90'('urn:example:i58', 'urn:example:i36'). +'urn:example:i90'('urn:example:i5', 'urn:example:i57'). +'urn:example:i90'('urn:example:i60', 'urn:example:i81'). +'urn:example:i90'('urn:example:i62', 'urn:example:i15'). +'urn:example:i90'('urn:example:i62', 'urn:example:i15'). +'urn:example:i90'('urn:example:i64', 'urn:example:i93'). +'urn:example:i90'('urn:example:i65', 'urn:example:i36'). +'urn:example:i90'('urn:example:i65', 'urn:example:i78'). +'urn:example:i90'('urn:example:i65', 'urn:example:i84'). +'urn:example:i90'('urn:example:i67', 'urn:example:i51'). +'urn:example:i90'('urn:example:i70', 'urn:example:i72'). +'urn:example:i90'('urn:example:i70', 'urn:example:i87'). +'urn:example:i90'('urn:example:i70', 'urn:example:i9'). +'urn:example:i90'('urn:example:i73', 'urn:example:i78'). +'urn:example:i90'('urn:example:i74', 'urn:example:i63'). +'urn:example:i90'('urn:example:i75', 'urn:example:i66'). +'urn:example:i90'('urn:example:i77', 'urn:example:i75'). +'urn:example:i90'('urn:example:i79', 'urn:example:i51'). +'urn:example:i90'('urn:example:i79', 'urn:example:i93'). +'urn:example:i90'('urn:example:i7', 'urn:example:i93'). +'urn:example:i90'('urn:example:i81', 'urn:example:i12'). +'urn:example:i90'('urn:example:i82', 'urn:example:i0'). +'urn:example:i90'('urn:example:i82', 'urn:example:i30'). +'urn:example:i90'('urn:example:i83', 'urn:example:i48'). +'urn:example:i90'('urn:example:i83', 'urn:example:i6'). +'urn:example:i90'('urn:example:i84', 'urn:example:i42'). +'urn:example:i90'('urn:example:i84', 'urn:example:i63'). +'urn:example:i90'('urn:example:i90', 'urn:example:i54'). +'urn:example:i90'('urn:example:i92', 'urn:example:i48'). +'urn:example:i90'('urn:example:i93', 'urn:example:i36'). +'urn:example:i90'('urn:example:i95', 'urn:example:i51'). +'urn:example:i90'('urn:example:i96', 'urn:example:i9'). +'urn:example:i90'('urn:example:i97', 'urn:example:i33'). +'urn:example:i90'('urn:example:i99', 'urn:example:i33'). +'urn:example:i90'('urn:example:i9', 'urn:example:i87'). +'urn:example:i91'('urn:example:i11', 'urn:example:i42'). +'urn:example:i91'('urn:example:i11', 'urn:example:i51'). +'urn:example:i91'('urn:example:i12', 'urn:example:i72'). +'urn:example:i91'('urn:example:i13', 'urn:example:i9'). +'urn:example:i91'('urn:example:i19', 'urn:example:i12'). +'urn:example:i91'('urn:example:i1', 'urn:example:i87'). +'urn:example:i91'('urn:example:i1', 'urn:example:i96'). +'urn:example:i91'('urn:example:i20', 'urn:example:i18'). +'urn:example:i91'('urn:example:i23', 'urn:example:i45'). +'urn:example:i91'('urn:example:i24', 'urn:example:i54'). +'urn:example:i91'('urn:example:i24', 'urn:example:i60'). +'urn:example:i91'('urn:example:i24', 'urn:example:i78'). +'urn:example:i91'('urn:example:i25', 'urn:example:i60'). +'urn:example:i91'('urn:example:i26', 'urn:example:i33'). +'urn:example:i91'('urn:example:i26', 'urn:example:i90'). +'urn:example:i91'('urn:example:i28', 'urn:example:i69'). +'urn:example:i91'('urn:example:i29', 'urn:example:i48'). +'urn:example:i91'('urn:example:i29', 'urn:example:i84'). +'urn:example:i91'('urn:example:i2', 'urn:example:i18'). +'urn:example:i91'('urn:example:i2', 'urn:example:i81'). +'urn:example:i91'('urn:example:i30', 'urn:example:i3'). +'urn:example:i91'('urn:example:i30', 'urn:example:i72'). +'urn:example:i91'('urn:example:i30', 'urn:example:i9'). +'urn:example:i91'('urn:example:i31', 'urn:example:i0'). +'urn:example:i91'('urn:example:i31', 'urn:example:i6'). +'urn:example:i91'('urn:example:i33', 'urn:example:i0'). +'urn:example:i91'('urn:example:i33', 'urn:example:i18'). +'urn:example:i91'('urn:example:i33', 'urn:example:i36'). +'urn:example:i91'('urn:example:i33', 'urn:example:i87'). +'urn:example:i91'('urn:example:i35', 'urn:example:i9'). +'urn:example:i91'('urn:example:i36', 'urn:example:i81'). +'urn:example:i91'('urn:example:i38', 'urn:example:i0'). +'urn:example:i91'('urn:example:i39', 'urn:example:i75'). +'urn:example:i91'('urn:example:i40', 'urn:example:i60'). +'urn:example:i91'('urn:example:i42', 'urn:example:i57'). +'urn:example:i91'('urn:example:i44', 'urn:example:i6'). +'urn:example:i91'('urn:example:i44', 'urn:example:i72'). +'urn:example:i91'('urn:example:i44', 'urn:example:i90'). +'urn:example:i91'('urn:example:i44', 'urn:example:i93'). +'urn:example:i91'('urn:example:i45', 'urn:example:i18'). +'urn:example:i91'('urn:example:i45', 'urn:example:i39'). +'urn:example:i91'('urn:example:i46', 'urn:example:i9'). +'urn:example:i91'('urn:example:i47', 'urn:example:i66'). +'urn:example:i91'('urn:example:i47', 'urn:example:i78'). +'urn:example:i91'('urn:example:i48', 'urn:example:i27'). +'urn:example:i91'('urn:example:i49', 'urn:example:i12'). +'urn:example:i91'('urn:example:i49', 'urn:example:i45'). +'urn:example:i91'('urn:example:i49', 'urn:example:i72'). +'urn:example:i91'('urn:example:i4', 'urn:example:i66'). +'urn:example:i91'('urn:example:i50', 'urn:example:i30'). +'urn:example:i91'('urn:example:i50', 'urn:example:i57'). +'urn:example:i91'('urn:example:i52', 'urn:example:i54'). +'urn:example:i91'('urn:example:i52', 'urn:example:i60'). +'urn:example:i91'('urn:example:i52', 'urn:example:i78'). +'urn:example:i91'('urn:example:i53', 'urn:example:i87'). +'urn:example:i91'('urn:example:i55', 'urn:example:i30'). +'urn:example:i91'('urn:example:i57', 'urn:example:i66'). +'urn:example:i91'('urn:example:i57', 'urn:example:i78'). +'urn:example:i91'('urn:example:i5', 'urn:example:i42'). +'urn:example:i91'('urn:example:i5', 'urn:example:i87'). +'urn:example:i91'('urn:example:i60', 'urn:example:i21'). +'urn:example:i91'('urn:example:i61', 'urn:example:i63'). +'urn:example:i91'('urn:example:i61', 'urn:example:i66'). +'urn:example:i91'('urn:example:i62', 'urn:example:i96'). +'urn:example:i91'('urn:example:i63', 'urn:example:i12'). +'urn:example:i91'('urn:example:i64', 'urn:example:i15'). +'urn:example:i91'('urn:example:i65', 'urn:example:i87'). +'urn:example:i91'('urn:example:i66', 'urn:example:i69'). +'urn:example:i91'('urn:example:i66', 'urn:example:i96'). +'urn:example:i91'('urn:example:i69', 'urn:example:i78'). +'urn:example:i91'('urn:example:i70', 'urn:example:i39'). +'urn:example:i91'('urn:example:i71', 'urn:example:i24'). +'urn:example:i91'('urn:example:i73', 'urn:example:i81'). +'urn:example:i91'('urn:example:i74', 'urn:example:i24'). +'urn:example:i91'('urn:example:i75', 'urn:example:i45'). +'urn:example:i91'('urn:example:i75', 'urn:example:i72'). +'urn:example:i91'('urn:example:i78', 'urn:example:i96'). +'urn:example:i91'('urn:example:i79', 'urn:example:i90'). +'urn:example:i91'('urn:example:i7', 'urn:example:i75'). +'urn:example:i91'('urn:example:i81', 'urn:example:i96'). +'urn:example:i91'('urn:example:i83', 'urn:example:i84'). +'urn:example:i91'('urn:example:i85', 'urn:example:i54'). +'urn:example:i91'('urn:example:i86', 'urn:example:i93'). +'urn:example:i91'('urn:example:i87', 'urn:example:i24'). +'urn:example:i91'('urn:example:i87', 'urn:example:i45'). +'urn:example:i91'('urn:example:i87', 'urn:example:i51'). +'urn:example:i91'('urn:example:i89', 'urn:example:i36'). +'urn:example:i91'('urn:example:i8', 'urn:example:i36'). +'urn:example:i91'('urn:example:i8', 'urn:example:i75'). +'urn:example:i91'('urn:example:i90', 'urn:example:i12'). +'urn:example:i91'('urn:example:i91', 'urn:example:i33'). +'urn:example:i91'('urn:example:i92', 'urn:example:i66'). +'urn:example:i91'('urn:example:i93', 'urn:example:i96'). +'urn:example:i91'('urn:example:i94', 'urn:example:i54'). +'urn:example:i91'('urn:example:i96', 'urn:example:i30'). +'urn:example:i91'('urn:example:i96', 'urn:example:i51'). +'urn:example:i91'('urn:example:i99', 'urn:example:i24'). +'urn:example:i91'('urn:example:i9', 'urn:example:i93'). +'urn:example:i92'('urn:example:i0', 'urn:example:i30'). +'urn:example:i92'('urn:example:i12', 'urn:example:i51'). +'urn:example:i92'('urn:example:i13', 'urn:example:i39'). +'urn:example:i92'('urn:example:i13', 'urn:example:i42'). +'urn:example:i92'('urn:example:i14', 'urn:example:i75'). +'urn:example:i92'('urn:example:i16', 'urn:example:i24'). +'urn:example:i92'('urn:example:i16', 'urn:example:i93'). +'urn:example:i92'('urn:example:i19', 'urn:example:i60'). +'urn:example:i92'('urn:example:i19', 'urn:example:i63'). +'urn:example:i92'('urn:example:i19', 'urn:example:i87'). +'urn:example:i92'('urn:example:i1', 'urn:example:i60'). +'urn:example:i92'('urn:example:i1', 'urn:example:i63'). +'urn:example:i92'('urn:example:i21', 'urn:example:i78'). +'urn:example:i92'('urn:example:i22', 'urn:example:i9'). +'urn:example:i92'('urn:example:i23', 'urn:example:i57'). +'urn:example:i92'('urn:example:i23', 'urn:example:i63'). +'urn:example:i92'('urn:example:i25', 'urn:example:i24'). +'urn:example:i92'('urn:example:i25', 'urn:example:i9'). +'urn:example:i92'('urn:example:i27', 'urn:example:i54'). +'urn:example:i92'('urn:example:i28', 'urn:example:i39'). +'urn:example:i92'('urn:example:i28', 'urn:example:i87'). +'urn:example:i92'('urn:example:i2', 'urn:example:i36'). +'urn:example:i92'('urn:example:i30', 'urn:example:i45'). +'urn:example:i92'('urn:example:i31', 'urn:example:i3'). +'urn:example:i92'('urn:example:i31', 'urn:example:i90'). +'urn:example:i92'('urn:example:i32', 'urn:example:i18'). +'urn:example:i92'('urn:example:i33', 'urn:example:i42'). +'urn:example:i92'('urn:example:i34', 'urn:example:i12'). +'urn:example:i92'('urn:example:i35', 'urn:example:i18'). +'urn:example:i92'('urn:example:i35', 'urn:example:i27'). +'urn:example:i92'('urn:example:i35', 'urn:example:i72'). +'urn:example:i92'('urn:example:i39', 'urn:example:i57'). +'urn:example:i92'('urn:example:i40', 'urn:example:i69'). +'urn:example:i92'('urn:example:i44', 'urn:example:i18'). +'urn:example:i92'('urn:example:i44', 'urn:example:i84'). +'urn:example:i92'('urn:example:i44', 'urn:example:i96'). +'urn:example:i92'('urn:example:i45', 'urn:example:i33'). +'urn:example:i92'('urn:example:i45', 'urn:example:i84'). +'urn:example:i92'('urn:example:i46', 'urn:example:i48'). +'urn:example:i92'('urn:example:i46', 'urn:example:i51'). +'urn:example:i92'('urn:example:i46', 'urn:example:i63'). +'urn:example:i92'('urn:example:i46', 'urn:example:i69'). +'urn:example:i92'('urn:example:i47', 'urn:example:i3'). +'urn:example:i92'('urn:example:i47', 'urn:example:i48'). +'urn:example:i92'('urn:example:i48', 'urn:example:i0'). +'urn:example:i92'('urn:example:i48', 'urn:example:i12'). +'urn:example:i92'('urn:example:i48', 'urn:example:i18'). +'urn:example:i92'('urn:example:i48', 'urn:example:i66'). +'urn:example:i92'('urn:example:i48', 'urn:example:i81'). +'urn:example:i92'('urn:example:i49', 'urn:example:i24'). +'urn:example:i92'('urn:example:i4', 'urn:example:i18'). +'urn:example:i92'('urn:example:i50', 'urn:example:i93'). +'urn:example:i92'('urn:example:i52', 'urn:example:i0'). +'urn:example:i92'('urn:example:i52', 'urn:example:i33'). +'urn:example:i92'('urn:example:i52', 'urn:example:i93'). +'urn:example:i92'('urn:example:i55', 'urn:example:i51'). +'urn:example:i92'('urn:example:i56', 'urn:example:i24'). +'urn:example:i92'('urn:example:i57', 'urn:example:i12'). +'urn:example:i92'('urn:example:i58', 'urn:example:i12'). +'urn:example:i92'('urn:example:i58', 'urn:example:i33'). +'urn:example:i92'('urn:example:i58', 'urn:example:i42'). +'urn:example:i92'('urn:example:i5', 'urn:example:i66'). +'urn:example:i92'('urn:example:i61', 'urn:example:i12'). +'urn:example:i92'('urn:example:i61', 'urn:example:i48'). +'urn:example:i92'('urn:example:i61', 'urn:example:i57'). +'urn:example:i92'('urn:example:i61', 'urn:example:i78'). +'urn:example:i92'('urn:example:i61', 'urn:example:i78'). +'urn:example:i92'('urn:example:i62', 'urn:example:i6'). +'urn:example:i92'('urn:example:i62', 'urn:example:i78'). +'urn:example:i92'('urn:example:i63', 'urn:example:i57'). +'urn:example:i92'('urn:example:i63', 'urn:example:i93'). +'urn:example:i92'('urn:example:i64', 'urn:example:i24'). +'urn:example:i92'('urn:example:i66', 'urn:example:i57'). +'urn:example:i92'('urn:example:i67', 'urn:example:i15'). +'urn:example:i92'('urn:example:i67', 'urn:example:i45'). +'urn:example:i92'('urn:example:i67', 'urn:example:i90'). +'urn:example:i92'('urn:example:i68', 'urn:example:i81'). +'urn:example:i92'('urn:example:i69', 'urn:example:i57'). +'urn:example:i92'('urn:example:i69', 'urn:example:i87'). +'urn:example:i92'('urn:example:i6', 'urn:example:i18'). +'urn:example:i92'('urn:example:i70', 'urn:example:i51'). +'urn:example:i92'('urn:example:i70', 'urn:example:i54'). +'urn:example:i92'('urn:example:i72', 'urn:example:i51'). +'urn:example:i92'('urn:example:i73', 'urn:example:i48'). +'urn:example:i92'('urn:example:i75', 'urn:example:i81'). +'urn:example:i92'('urn:example:i76', 'urn:example:i57'). +'urn:example:i92'('urn:example:i78', 'urn:example:i60'). +'urn:example:i92'('urn:example:i78', 'urn:example:i63'). +'urn:example:i92'('urn:example:i79', 'urn:example:i51'). +'urn:example:i92'('urn:example:i79', 'urn:example:i54'). +'urn:example:i92'('urn:example:i80', 'urn:example:i0'). +'urn:example:i92'('urn:example:i80', 'urn:example:i63'). +'urn:example:i92'('urn:example:i80', 'urn:example:i81'). +'urn:example:i92'('urn:example:i81', 'urn:example:i66'). +'urn:example:i92'('urn:example:i82', 'urn:example:i78'). +'urn:example:i92'('urn:example:i82', 'urn:example:i87'). +'urn:example:i92'('urn:example:i82', 'urn:example:i9'). +'urn:example:i92'('urn:example:i84', 'urn:example:i45'). +'urn:example:i92'('urn:example:i85', 'urn:example:i96'). +'urn:example:i92'('urn:example:i88', 'urn:example:i48'). +'urn:example:i92'('urn:example:i88', 'urn:example:i57'). +'urn:example:i92'('urn:example:i8', 'urn:example:i18'). +'urn:example:i92'('urn:example:i91', 'urn:example:i57'). +'urn:example:i92'('urn:example:i92', 'urn:example:i6'). +'urn:example:i92'('urn:example:i93', 'urn:example:i39'). +'urn:example:i92'('urn:example:i93', 'urn:example:i57'). +'urn:example:i92'('urn:example:i95', 'urn:example:i15'). +'urn:example:i92'('urn:example:i95', 'urn:example:i90'). +'urn:example:i92'('urn:example:i97', 'urn:example:i3'). +'urn:example:i92'('urn:example:i97', 'urn:example:i42'). +'urn:example:i92'('urn:example:i98', 'urn:example:i15'). +'urn:example:i92'('urn:example:i98', 'urn:example:i57'). +'urn:example:i92'('urn:example:i98', 'urn:example:i90'). +'urn:example:i92'('urn:example:i99', 'urn:example:i75'). +'urn:example:i92'('urn:example:i9', 'urn:example:i6'). +'urn:example:i93'('urn:example:i12', 'urn:example:i3'). +'urn:example:i93'('urn:example:i12', 'urn:example:i96'). +'urn:example:i93'('urn:example:i13', 'urn:example:i30'). +'urn:example:i93'('urn:example:i13', 'urn:example:i3'). +'urn:example:i93'('urn:example:i14', 'urn:example:i99'). +'urn:example:i93'('urn:example:i16', 'urn:example:i30'). +'urn:example:i93'('urn:example:i17', 'urn:example:i18'). +'urn:example:i93'('urn:example:i18', 'urn:example:i24'). +'urn:example:i93'('urn:example:i18', 'urn:example:i87'). +'urn:example:i93'('urn:example:i1', 'urn:example:i90'). +'urn:example:i93'('urn:example:i20', 'urn:example:i36'). +'urn:example:i93'('urn:example:i22', 'urn:example:i51'). +'urn:example:i93'('urn:example:i23', 'urn:example:i75'). +'urn:example:i93'('urn:example:i24', 'urn:example:i33'). +'urn:example:i93'('urn:example:i24', 'urn:example:i72'). +'urn:example:i93'('urn:example:i25', 'urn:example:i33'). +'urn:example:i93'('urn:example:i26', 'urn:example:i24'). +'urn:example:i93'('urn:example:i26', 'urn:example:i75'). +'urn:example:i93'('urn:example:i27', 'urn:example:i81'). +'urn:example:i93'('urn:example:i30', 'urn:example:i63'). +'urn:example:i93'('urn:example:i31', 'urn:example:i57'). +'urn:example:i93'('urn:example:i32', 'urn:example:i81'). +'urn:example:i93'('urn:example:i33', 'urn:example:i48'). +'urn:example:i93'('urn:example:i34', 'urn:example:i54'). +'urn:example:i93'('urn:example:i34', 'urn:example:i57'). +'urn:example:i93'('urn:example:i34', 'urn:example:i57'). +'urn:example:i93'('urn:example:i37', 'urn:example:i54'). +'urn:example:i93'('urn:example:i37', 'urn:example:i63'). +'urn:example:i93'('urn:example:i39', 'urn:example:i33'). +'urn:example:i93'('urn:example:i3', 'urn:example:i15'). +'urn:example:i93'('urn:example:i3', 'urn:example:i81'). +'urn:example:i93'('urn:example:i40', 'urn:example:i69'). +'urn:example:i93'('urn:example:i42', 'urn:example:i60'). +'urn:example:i93'('urn:example:i42', 'urn:example:i78'). +'urn:example:i93'('urn:example:i43', 'urn:example:i30'). +'urn:example:i93'('urn:example:i43', 'urn:example:i81'). +'urn:example:i93'('urn:example:i43', 'urn:example:i96'). +'urn:example:i93'('urn:example:i46', 'urn:example:i69'). +'urn:example:i93'('urn:example:i47', 'urn:example:i75'). +'urn:example:i93'('urn:example:i47', 'urn:example:i90'). +'urn:example:i93'('urn:example:i48', 'urn:example:i33'). +'urn:example:i93'('urn:example:i49', 'urn:example:i15'). +'urn:example:i93'('urn:example:i49', 'urn:example:i27'). +'urn:example:i93'('urn:example:i4', 'urn:example:i39'). +'urn:example:i93'('urn:example:i50', 'urn:example:i42'). +'urn:example:i93'('urn:example:i50', 'urn:example:i69'). +'urn:example:i93'('urn:example:i50', 'urn:example:i90'). +'urn:example:i93'('urn:example:i51', 'urn:example:i30'). +'urn:example:i93'('urn:example:i51', 'urn:example:i33'). +'urn:example:i93'('urn:example:i52', 'urn:example:i45'). +'urn:example:i93'('urn:example:i52', 'urn:example:i69'). +'urn:example:i93'('urn:example:i53', 'urn:example:i42'). +'urn:example:i93'('urn:example:i53', 'urn:example:i6'). +'urn:example:i93'('urn:example:i54', 'urn:example:i69'). +'urn:example:i93'('urn:example:i54', 'urn:example:i93'). +'urn:example:i93'('urn:example:i55', 'urn:example:i66'). +'urn:example:i93'('urn:example:i56', 'urn:example:i48'). +'urn:example:i93'('urn:example:i56', 'urn:example:i60'). +'urn:example:i93'('urn:example:i58', 'urn:example:i45'). +'urn:example:i93'('urn:example:i59', 'urn:example:i54'). +'urn:example:i93'('urn:example:i60', 'urn:example:i15'). +'urn:example:i93'('urn:example:i60', 'urn:example:i24'). +'urn:example:i93'('urn:example:i62', 'urn:example:i0'). +'urn:example:i93'('urn:example:i62', 'urn:example:i42'). +'urn:example:i93'('urn:example:i62', 'urn:example:i42'). +'urn:example:i93'('urn:example:i64', 'urn:example:i63'). +'urn:example:i93'('urn:example:i66', 'urn:example:i39'). +'urn:example:i93'('urn:example:i68', 'urn:example:i33'). +'urn:example:i93'('urn:example:i68', 'urn:example:i33'). +'urn:example:i93'('urn:example:i68', 'urn:example:i60'). +'urn:example:i93'('urn:example:i68', 'urn:example:i87'). +'urn:example:i93'('urn:example:i68', 'urn:example:i87'). +'urn:example:i93'('urn:example:i69', 'urn:example:i54'). +'urn:example:i93'('urn:example:i69', 'urn:example:i57'). +'urn:example:i93'('urn:example:i6', 'urn:example:i39'). +'urn:example:i93'('urn:example:i70', 'urn:example:i27'). +'urn:example:i93'('urn:example:i70', 'urn:example:i48'). +'urn:example:i93'('urn:example:i71', 'urn:example:i30'). +'urn:example:i93'('urn:example:i71', 'urn:example:i30'). +'urn:example:i93'('urn:example:i71', 'urn:example:i39'). +'urn:example:i93'('urn:example:i72', 'urn:example:i18'). +'urn:example:i93'('urn:example:i72', 'urn:example:i27'). +'urn:example:i93'('urn:example:i72', 'urn:example:i39'). +'urn:example:i93'('urn:example:i73', 'urn:example:i18'). +'urn:example:i93'('urn:example:i73', 'urn:example:i93'). +'urn:example:i93'('urn:example:i75', 'urn:example:i30'). +'urn:example:i93'('urn:example:i75', 'urn:example:i6'). +'urn:example:i93'('urn:example:i77', 'urn:example:i96'). +'urn:example:i93'('urn:example:i78', 'urn:example:i15'). +'urn:example:i93'('urn:example:i79', 'urn:example:i21'). +'urn:example:i93'('urn:example:i7', 'urn:example:i30'). +'urn:example:i93'('urn:example:i80', 'urn:example:i96'). +'urn:example:i93'('urn:example:i81', 'urn:example:i15'). +'urn:example:i93'('urn:example:i81', 'urn:example:i42'). +'urn:example:i93'('urn:example:i83', 'urn:example:i87'). +'urn:example:i93'('urn:example:i84', 'urn:example:i45'). +'urn:example:i93'('urn:example:i84', 'urn:example:i60'). +'urn:example:i93'('urn:example:i84', 'urn:example:i84'). +'urn:example:i93'('urn:example:i88', 'urn:example:i78'). +'urn:example:i93'('urn:example:i89', 'urn:example:i54'). +'urn:example:i93'('urn:example:i8', 'urn:example:i12'). +'urn:example:i93'('urn:example:i90', 'urn:example:i51'). +'urn:example:i93'('urn:example:i91', 'urn:example:i87'). +'urn:example:i93'('urn:example:i92', 'urn:example:i33'). +'urn:example:i93'('urn:example:i93', 'urn:example:i45'). +'urn:example:i93'('urn:example:i95', 'urn:example:i39'). +'urn:example:i93'('urn:example:i95', 'urn:example:i63'). +'urn:example:i93'('urn:example:i96', 'urn:example:i33'). +'urn:example:i93'('urn:example:i96', 'urn:example:i33'). +'urn:example:i93'('urn:example:i96', 'urn:example:i69'). +'urn:example:i93'('urn:example:i97', 'urn:example:i27'). +'urn:example:i93'('urn:example:i97', 'urn:example:i54'). +'urn:example:i93'('urn:example:i98', 'urn:example:i0'). +'urn:example:i93'('urn:example:i98', 'urn:example:i36'). +'urn:example:i93'('urn:example:i98', 'urn:example:i93'). +'urn:example:i93'('urn:example:i9', 'urn:example:i24'). +'urn:example:i93'('urn:example:i9', 'urn:example:i63'). +'urn:example:i94'('urn:example:i0', 'urn:example:i54'). +'urn:example:i94'('urn:example:i10', 'urn:example:i15'). +'urn:example:i94'('urn:example:i12', 'urn:example:i33'). +'urn:example:i94'('urn:example:i14', 'urn:example:i54'). +'urn:example:i94'('urn:example:i15', 'urn:example:i15'). +'urn:example:i94'('urn:example:i15', 'urn:example:i84'). +'urn:example:i94'('urn:example:i16', 'urn:example:i9'). +'urn:example:i94'('urn:example:i17', 'urn:example:i24'). +'urn:example:i94'('urn:example:i18', 'urn:example:i27'). +'urn:example:i94'('urn:example:i19', 'urn:example:i57'). +'urn:example:i94'('urn:example:i1', 'urn:example:i87'). +'urn:example:i94'('urn:example:i20', 'urn:example:i54'). +'urn:example:i94'('urn:example:i21', 'urn:example:i9'). +'urn:example:i94'('urn:example:i22', 'urn:example:i84'). +'urn:example:i94'('urn:example:i23', 'urn:example:i3'). +'urn:example:i94'('urn:example:i24', 'urn:example:i60'). +'urn:example:i94'('urn:example:i27', 'urn:example:i39'). +'urn:example:i94'('urn:example:i27', 'urn:example:i39'). +'urn:example:i94'('urn:example:i28', 'urn:example:i87'). +'urn:example:i94'('urn:example:i29', 'urn:example:i96'). +'urn:example:i94'('urn:example:i32', 'urn:example:i57'). +'urn:example:i94'('urn:example:i32', 'urn:example:i72'). +'urn:example:i94'('urn:example:i33', 'urn:example:i21'). +'urn:example:i94'('urn:example:i36', 'urn:example:i12'). +'urn:example:i94'('urn:example:i36', 'urn:example:i45'). +'urn:example:i94'('urn:example:i37', 'urn:example:i0'). +'urn:example:i94'('urn:example:i3', 'urn:example:i63'). +'urn:example:i94'('urn:example:i3', 'urn:example:i69'). +'urn:example:i94'('urn:example:i40', 'urn:example:i60'). +'urn:example:i94'('urn:example:i40', 'urn:example:i84'). +'urn:example:i94'('urn:example:i42', 'urn:example:i0'). +'urn:example:i94'('urn:example:i43', 'urn:example:i54'). +'urn:example:i94'('urn:example:i47', 'urn:example:i66'). +'urn:example:i94'('urn:example:i47', 'urn:example:i84'). +'urn:example:i94'('urn:example:i4', 'urn:example:i33'). +'urn:example:i94'('urn:example:i4', 'urn:example:i72'). +'urn:example:i94'('urn:example:i4', 'urn:example:i72'). +'urn:example:i94'('urn:example:i50', 'urn:example:i39'). +'urn:example:i94'('urn:example:i50', 'urn:example:i87'). +'urn:example:i94'('urn:example:i52', 'urn:example:i87'). +'urn:example:i94'('urn:example:i53', 'urn:example:i69'). +'urn:example:i94'('urn:example:i54', 'urn:example:i72'). +'urn:example:i94'('urn:example:i54', 'urn:example:i75'). +'urn:example:i94'('urn:example:i54', 'urn:example:i78'). +'urn:example:i94'('urn:example:i56', 'urn:example:i3'). +'urn:example:i94'('urn:example:i57', 'urn:example:i12'). +'urn:example:i94'('urn:example:i58', 'urn:example:i48'). +'urn:example:i94'('urn:example:i59', 'urn:example:i30'). +'urn:example:i94'('urn:example:i60', 'urn:example:i36'). +'urn:example:i94'('urn:example:i60', 'urn:example:i48'). +'urn:example:i94'('urn:example:i61', 'urn:example:i39'). +'urn:example:i94'('urn:example:i61', 'urn:example:i75'). +'urn:example:i94'('urn:example:i62', 'urn:example:i15'). +'urn:example:i94'('urn:example:i62', 'urn:example:i24'). +'urn:example:i94'('urn:example:i62', 'urn:example:i63'). +'urn:example:i94'('urn:example:i63', 'urn:example:i42'). +'urn:example:i94'('urn:example:i64', 'urn:example:i18'). +'urn:example:i94'('urn:example:i64', 'urn:example:i75'). +'urn:example:i94'('urn:example:i65', 'urn:example:i39'). +'urn:example:i94'('urn:example:i65', 'urn:example:i78'). +'urn:example:i94'('urn:example:i66', 'urn:example:i87'). +'urn:example:i94'('urn:example:i68', 'urn:example:i75'). +'urn:example:i94'('urn:example:i69', 'urn:example:i0'). +'urn:example:i94'('urn:example:i69', 'urn:example:i75'). +'urn:example:i94'('urn:example:i70', 'urn:example:i57'). +'urn:example:i94'('urn:example:i72', 'urn:example:i15'). +'urn:example:i94'('urn:example:i72', 'urn:example:i33'). +'urn:example:i94'('urn:example:i72', 'urn:example:i75'). +'urn:example:i94'('urn:example:i74', 'urn:example:i36'). +'urn:example:i94'('urn:example:i79', 'urn:example:i48'). +'urn:example:i94'('urn:example:i7', 'urn:example:i21'). +'urn:example:i94'('urn:example:i81', 'urn:example:i87'). +'urn:example:i94'('urn:example:i83', 'urn:example:i27'). +'urn:example:i94'('urn:example:i85', 'urn:example:i15'). +'urn:example:i94'('urn:example:i85', 'urn:example:i75'). +'urn:example:i94'('urn:example:i85', 'urn:example:i87'). +'urn:example:i94'('urn:example:i86', 'urn:example:i90'). +'urn:example:i94'('urn:example:i89', 'urn:example:i57'). +'urn:example:i94'('urn:example:i92', 'urn:example:i3'). +'urn:example:i94'('urn:example:i92', 'urn:example:i48'). +'urn:example:i94'('urn:example:i92', 'urn:example:i72'). +'urn:example:i94'('urn:example:i93', 'urn:example:i6'). +'urn:example:i94'('urn:example:i93', 'urn:example:i99'). +'urn:example:i94'('urn:example:i94', 'urn:example:i72'). +'urn:example:i94'('urn:example:i95', 'urn:example:i18'). +'urn:example:i94'('urn:example:i97', 'urn:example:i0'). +'urn:example:i94'('urn:example:i98', 'urn:example:i66'). +'urn:example:i95'('urn:example:i0', 'urn:example:i57'). +'urn:example:i95'('urn:example:i10', 'urn:example:i15'). +'urn:example:i95'('urn:example:i14', 'urn:example:i27'). +'urn:example:i95'('urn:example:i14', 'urn:example:i57'). +'urn:example:i95'('urn:example:i17', 'urn:example:i66'). +'urn:example:i95'('urn:example:i18', 'urn:example:i72'). +'urn:example:i95'('urn:example:i19', 'urn:example:i54'). +'urn:example:i95'('urn:example:i1', 'urn:example:i36'). +'urn:example:i95'('urn:example:i20', 'urn:example:i60'). +'urn:example:i95'('urn:example:i21', 'urn:example:i36'). +'urn:example:i95'('urn:example:i21', 'urn:example:i51'). +'urn:example:i95'('urn:example:i21', 'urn:example:i63'). +'urn:example:i95'('urn:example:i22', 'urn:example:i66'). +'urn:example:i95'('urn:example:i24', 'urn:example:i42'). +'urn:example:i95'('urn:example:i24', 'urn:example:i66'). +'urn:example:i95'('urn:example:i26', 'urn:example:i27'). +'urn:example:i95'('urn:example:i26', 'urn:example:i33'). +'urn:example:i95'('urn:example:i28', 'urn:example:i51'). +'urn:example:i95'('urn:example:i28', 'urn:example:i66'). +'urn:example:i95'('urn:example:i30', 'urn:example:i21'). +'urn:example:i95'('urn:example:i31', 'urn:example:i0'). +'urn:example:i95'('urn:example:i31', 'urn:example:i72'). +'urn:example:i95'('urn:example:i37', 'urn:example:i3'). +'urn:example:i95'('urn:example:i37', 'urn:example:i84'). +'urn:example:i95'('urn:example:i39', 'urn:example:i78'). +'urn:example:i95'('urn:example:i3', 'urn:example:i27'). +'urn:example:i95'('urn:example:i42', 'urn:example:i12'). +'urn:example:i95'('urn:example:i42', 'urn:example:i36'). +'urn:example:i95'('urn:example:i42', 'urn:example:i54'). +'urn:example:i95'('urn:example:i43', 'urn:example:i72'). +'urn:example:i95'('urn:example:i44', 'urn:example:i72'). +'urn:example:i95'('urn:example:i45', 'urn:example:i27'). +'urn:example:i95'('urn:example:i48', 'urn:example:i51'). +'urn:example:i95'('urn:example:i48', 'urn:example:i72'). +'urn:example:i95'('urn:example:i48', 'urn:example:i84'). +'urn:example:i95'('urn:example:i49', 'urn:example:i78'). +'urn:example:i95'('urn:example:i4', 'urn:example:i93'). +'urn:example:i95'('urn:example:i51', 'urn:example:i48'). +'urn:example:i95'('urn:example:i51', 'urn:example:i51'). +'urn:example:i95'('urn:example:i52', 'urn:example:i27'). +'urn:example:i95'('urn:example:i52', 'urn:example:i45'). +'urn:example:i95'('urn:example:i52', 'urn:example:i69'). +'urn:example:i95'('urn:example:i53', 'urn:example:i36'). +'urn:example:i95'('urn:example:i53', 'urn:example:i57'). +'urn:example:i95'('urn:example:i54', 'urn:example:i24'). +'urn:example:i95'('urn:example:i57', 'urn:example:i24'). +'urn:example:i95'('urn:example:i57', 'urn:example:i30'). +'urn:example:i95'('urn:example:i57', 'urn:example:i90'). +'urn:example:i95'('urn:example:i58', 'urn:example:i75'). +'urn:example:i95'('urn:example:i59', 'urn:example:i18'). +'urn:example:i95'('urn:example:i5', 'urn:example:i27'). +'urn:example:i95'('urn:example:i5', 'urn:example:i6'). +'urn:example:i95'('urn:example:i60', 'urn:example:i21'). +'urn:example:i95'('urn:example:i60', 'urn:example:i42'). +'urn:example:i95'('urn:example:i60', 'urn:example:i81'). +'urn:example:i95'('urn:example:i61', 'urn:example:i81'). +'urn:example:i95'('urn:example:i62', 'urn:example:i48'). +'urn:example:i95'('urn:example:i63', 'urn:example:i30'). +'urn:example:i95'('urn:example:i64', 'urn:example:i42'). +'urn:example:i95'('urn:example:i65', 'urn:example:i33'). +'urn:example:i95'('urn:example:i65', 'urn:example:i51'). +'urn:example:i95'('urn:example:i68', 'urn:example:i78'). +'urn:example:i95'('urn:example:i6', 'urn:example:i12'). +'urn:example:i95'('urn:example:i71', 'urn:example:i30'). +'urn:example:i95'('urn:example:i71', 'urn:example:i57'). +'urn:example:i95'('urn:example:i71', 'urn:example:i57'). +'urn:example:i95'('urn:example:i73', 'urn:example:i87'). +'urn:example:i95'('urn:example:i74', 'urn:example:i48'). +'urn:example:i95'('urn:example:i76', 'urn:example:i6'). +'urn:example:i95'('urn:example:i77', 'urn:example:i0'). +'urn:example:i95'('urn:example:i78', 'urn:example:i48'). +'urn:example:i95'('urn:example:i7', 'urn:example:i51'). +'urn:example:i95'('urn:example:i7', 'urn:example:i51'). +'urn:example:i95'('urn:example:i7', 'urn:example:i54'). +'urn:example:i95'('urn:example:i7', 'urn:example:i63'). +'urn:example:i95'('urn:example:i81', 'urn:example:i78'). +'urn:example:i95'('urn:example:i82', 'urn:example:i42'). +'urn:example:i95'('urn:example:i83', 'urn:example:i51'). +'urn:example:i95'('urn:example:i86', 'urn:example:i0'). +'urn:example:i95'('urn:example:i87', 'urn:example:i45'). +'urn:example:i95'('urn:example:i87', 'urn:example:i96'). +'urn:example:i95'('urn:example:i88', 'urn:example:i30'). +'urn:example:i95'('urn:example:i90', 'urn:example:i27'). +'urn:example:i95'('urn:example:i91', 'urn:example:i0'). +'urn:example:i95'('urn:example:i91', 'urn:example:i9'). +'urn:example:i95'('urn:example:i93', 'urn:example:i39'). +'urn:example:i95'('urn:example:i94', 'urn:example:i39'). +'urn:example:i95'('urn:example:i95', 'urn:example:i87'). +'urn:example:i95'('urn:example:i95', 'urn:example:i9'). +'urn:example:i95'('urn:example:i96', 'urn:example:i36'). +'urn:example:i95'('urn:example:i96', 'urn:example:i42'). +'urn:example:i95'('urn:example:i96', 'urn:example:i96'). +'urn:example:i95'('urn:example:i97', 'urn:example:i78'). +'urn:example:i95'('urn:example:i98', 'urn:example:i0'). +'urn:example:i95'('urn:example:i98', 'urn:example:i12'). +'urn:example:i95'('urn:example:i98', 'urn:example:i72'). +'urn:example:i95'('urn:example:i98', 'urn:example:i78'). +'urn:example:i95'('urn:example:i98', 'urn:example:i96'). +'urn:example:i95'('urn:example:i99', 'urn:example:i48'). +'urn:example:i95'('urn:example:i9', 'urn:example:i54'). +'urn:example:i95'('urn:example:i9', 'urn:example:i72'). +'urn:example:i95'('urn:example:i9', 'urn:example:i75'). +'urn:example:i95'('urn:example:i9', 'urn:example:i93'). +'urn:example:i96'('urn:example:i0', 'urn:example:i48'). +'urn:example:i96'('urn:example:i10', 'urn:example:i51'). +'urn:example:i96'('urn:example:i11', 'urn:example:i30'). +'urn:example:i96'('urn:example:i11', 'urn:example:i57'). +'urn:example:i96'('urn:example:i12', 'urn:example:i84'). +'urn:example:i96'('urn:example:i15', 'urn:example:i27'). +'urn:example:i96'('urn:example:i15', 'urn:example:i81'). +'urn:example:i96'('urn:example:i16', 'urn:example:i27'). +'urn:example:i96'('urn:example:i18', 'urn:example:i45'). +'urn:example:i96'('urn:example:i18', 'urn:example:i51'). +'urn:example:i96'('urn:example:i19', 'urn:example:i51'). +'urn:example:i96'('urn:example:i20', 'urn:example:i75'). +'urn:example:i96'('urn:example:i21', 'urn:example:i15'). +'urn:example:i96'('urn:example:i21', 'urn:example:i78'). +'urn:example:i96'('urn:example:i24', 'urn:example:i39'). +'urn:example:i96'('urn:example:i24', 'urn:example:i57'). +'urn:example:i96'('urn:example:i24', 'urn:example:i96'). +'urn:example:i96'('urn:example:i27', 'urn:example:i27'). +'urn:example:i96'('urn:example:i27', 'urn:example:i60'). +'urn:example:i96'('urn:example:i28', 'urn:example:i36'). +'urn:example:i96'('urn:example:i31', 'urn:example:i12'). +'urn:example:i96'('urn:example:i31', 'urn:example:i18'). +'urn:example:i96'('urn:example:i31', 'urn:example:i18'). +'urn:example:i96'('urn:example:i31', 'urn:example:i9'). +'urn:example:i96'('urn:example:i33', 'urn:example:i69'). +'urn:example:i96'('urn:example:i37', 'urn:example:i12'). +'urn:example:i96'('urn:example:i39', 'urn:example:i78'). +'urn:example:i96'('urn:example:i44', 'urn:example:i78'). +'urn:example:i96'('urn:example:i48', 'urn:example:i33'). +'urn:example:i96'('urn:example:i49', 'urn:example:i24'). +'urn:example:i96'('urn:example:i49', 'urn:example:i84'). +'urn:example:i96'('urn:example:i4', 'urn:example:i96'). +'urn:example:i96'('urn:example:i4', 'urn:example:i9'). +'urn:example:i96'('urn:example:i50', 'urn:example:i33'). +'urn:example:i96'('urn:example:i51', 'urn:example:i72'). +'urn:example:i96'('urn:example:i51', 'urn:example:i84'). +'urn:example:i96'('urn:example:i52', 'urn:example:i15'). +'urn:example:i96'('urn:example:i53', 'urn:example:i30'). +'urn:example:i96'('urn:example:i53', 'urn:example:i3'). +'urn:example:i96'('urn:example:i53', 'urn:example:i66'). +'urn:example:i96'('urn:example:i54', 'urn:example:i21'). +'urn:example:i96'('urn:example:i57', 'urn:example:i63'). +'urn:example:i96'('urn:example:i58', 'urn:example:i0'). +'urn:example:i96'('urn:example:i58', 'urn:example:i96'). +'urn:example:i96'('urn:example:i5', 'urn:example:i81'). +'urn:example:i96'('urn:example:i62', 'urn:example:i78'). +'urn:example:i96'('urn:example:i63', 'urn:example:i12'). +'urn:example:i96'('urn:example:i63', 'urn:example:i78'). +'urn:example:i96'('urn:example:i63', 'urn:example:i9'). +'urn:example:i96'('urn:example:i64', 'urn:example:i69'). +'urn:example:i96'('urn:example:i66', 'urn:example:i3'). +'urn:example:i96'('urn:example:i66', 'urn:example:i96'). +'urn:example:i96'('urn:example:i68', 'urn:example:i51'). +'urn:example:i96'('urn:example:i69', 'urn:example:i75'). +'urn:example:i96'('urn:example:i6', 'urn:example:i12'). +'urn:example:i96'('urn:example:i6', 'urn:example:i21'). +'urn:example:i96'('urn:example:i6', 'urn:example:i33'). +'urn:example:i96'('urn:example:i70', 'urn:example:i57'). +'urn:example:i96'('urn:example:i71', 'urn:example:i96'). +'urn:example:i96'('urn:example:i72', 'urn:example:i42'). +'urn:example:i96'('urn:example:i73', 'urn:example:i3'). +'urn:example:i96'('urn:example:i73', 'urn:example:i42'). +'urn:example:i96'('urn:example:i73', 'urn:example:i48'). +'urn:example:i96'('urn:example:i74', 'urn:example:i75'). +'urn:example:i96'('urn:example:i75', 'urn:example:i48'). +'urn:example:i96'('urn:example:i75', 'urn:example:i51'). +'urn:example:i96'('urn:example:i75', 'urn:example:i75'). +'urn:example:i96'('urn:example:i77', 'urn:example:i93'). +'urn:example:i96'('urn:example:i78', 'urn:example:i84'). +'urn:example:i96'('urn:example:i79', 'urn:example:i72'). +'urn:example:i96'('urn:example:i79', 'urn:example:i96'). +'urn:example:i96'('urn:example:i80', 'urn:example:i54'). +'urn:example:i96'('urn:example:i82', 'urn:example:i12'). +'urn:example:i96'('urn:example:i82', 'urn:example:i42'). +'urn:example:i96'('urn:example:i83', 'urn:example:i3'). +'urn:example:i96'('urn:example:i85', 'urn:example:i24'). +'urn:example:i96'('urn:example:i86', 'urn:example:i60'). +'urn:example:i96'('urn:example:i8', 'urn:example:i57'). +'urn:example:i96'('urn:example:i8', 'urn:example:i57'). +'urn:example:i96'('urn:example:i90', 'urn:example:i51'). +'urn:example:i96'('urn:example:i93', 'urn:example:i3'). +'urn:example:i96'('urn:example:i94', 'urn:example:i48'). +'urn:example:i96'('urn:example:i95', 'urn:example:i18'). +'urn:example:i96'('urn:example:i95', 'urn:example:i54'). +'urn:example:i96'('urn:example:i95', 'urn:example:i81'). +'urn:example:i96'('urn:example:i96', 'urn:example:i45'). +'urn:example:i96'('urn:example:i97', 'urn:example:i48'). +'urn:example:i96'('urn:example:i98', 'urn:example:i42'). +'urn:example:i96'('urn:example:i98', 'urn:example:i63'). +'urn:example:i96'('urn:example:i98', 'urn:example:i90'). +'urn:example:i96'('urn:example:i9', 'urn:example:i21'). +'urn:example:i96'('urn:example:i9', 'urn:example:i48'). +'urn:example:i97'('urn:example:i0', 'urn:example:i96'). +'urn:example:i97'('urn:example:i10', 'urn:example:i48'). +'urn:example:i97'('urn:example:i11', 'urn:example:i54'). +'urn:example:i97'('urn:example:i13', 'urn:example:i63'). +'urn:example:i97'('urn:example:i15', 'urn:example:i87'). +'urn:example:i97'('urn:example:i16', 'urn:example:i57'). +'urn:example:i97'('urn:example:i17', 'urn:example:i12'). +'urn:example:i97'('urn:example:i17', 'urn:example:i87'). +'urn:example:i97'('urn:example:i18', 'urn:example:i69'). +'urn:example:i97'('urn:example:i19', 'urn:example:i33'). +'urn:example:i97'('urn:example:i19', 'urn:example:i51'). +'urn:example:i97'('urn:example:i1', 'urn:example:i42'). +'urn:example:i97'('urn:example:i22', 'urn:example:i75'). +'urn:example:i97'('urn:example:i23', 'urn:example:i72'). +'urn:example:i97'('urn:example:i24', 'urn:example:i51'). +'urn:example:i97'('urn:example:i25', 'urn:example:i27'). +'urn:example:i97'('urn:example:i25', 'urn:example:i81'). +'urn:example:i97'('urn:example:i27', 'urn:example:i27'). +'urn:example:i97'('urn:example:i28', 'urn:example:i63'). +'urn:example:i97'('urn:example:i28', 'urn:example:i99'). +'urn:example:i97'('urn:example:i29', 'urn:example:i27'). +'urn:example:i97'('urn:example:i29', 'urn:example:i48'). +'urn:example:i97'('urn:example:i2', 'urn:example:i3'). +'urn:example:i97'('urn:example:i2', 'urn:example:i81'). +'urn:example:i97'('urn:example:i30', 'urn:example:i78'). +'urn:example:i97'('urn:example:i31', 'urn:example:i30'). +'urn:example:i97'('urn:example:i32', 'urn:example:i27'). +'urn:example:i97'('urn:example:i32', 'urn:example:i27'). +'urn:example:i97'('urn:example:i32', 'urn:example:i39'). +'urn:example:i97'('urn:example:i33', 'urn:example:i48'). +'urn:example:i97'('urn:example:i33', 'urn:example:i78'). +'urn:example:i97'('urn:example:i35', 'urn:example:i12'). +'urn:example:i97'('urn:example:i35', 'urn:example:i48'). +'urn:example:i97'('urn:example:i36', 'urn:example:i27'). +'urn:example:i97'('urn:example:i36', 'urn:example:i69'). +'urn:example:i97'('urn:example:i37', 'urn:example:i63'). +'urn:example:i97'('urn:example:i39', 'urn:example:i24'). +'urn:example:i97'('urn:example:i39', 'urn:example:i90'). +'urn:example:i97'('urn:example:i3', 'urn:example:i0'). +'urn:example:i97'('urn:example:i3', 'urn:example:i12'). +'urn:example:i97'('urn:example:i3', 'urn:example:i12'). +'urn:example:i97'('urn:example:i3', 'urn:example:i54'). +'urn:example:i97'('urn:example:i3', 'urn:example:i87'). +'urn:example:i97'('urn:example:i3', 'urn:example:i99'). +'urn:example:i97'('urn:example:i43', 'urn:example:i15'). +'urn:example:i97'('urn:example:i46', 'urn:example:i3'). +'urn:example:i97'('urn:example:i46', 'urn:example:i48'). +'urn:example:i97'('urn:example:i46', 'urn:example:i90'). +'urn:example:i97'('urn:example:i50', 'urn:example:i15'). +'urn:example:i97'('urn:example:i50', 'urn:example:i69'). +'urn:example:i97'('urn:example:i52', 'urn:example:i24'). +'urn:example:i97'('urn:example:i52', 'urn:example:i87'). +'urn:example:i97'('urn:example:i53', 'urn:example:i54'). +'urn:example:i97'('urn:example:i54', 'urn:example:i39'). +'urn:example:i97'('urn:example:i54', 'urn:example:i72'). +'urn:example:i97'('urn:example:i54', 'urn:example:i9'). +'urn:example:i97'('urn:example:i56', 'urn:example:i24'). +'urn:example:i97'('urn:example:i56', 'urn:example:i66'). +'urn:example:i97'('urn:example:i58', 'urn:example:i93'). +'urn:example:i97'('urn:example:i60', 'urn:example:i60'). +'urn:example:i97'('urn:example:i60', 'urn:example:i6'). +'urn:example:i97'('urn:example:i60', 'urn:example:i90'). +'urn:example:i97'('urn:example:i62', 'urn:example:i93'). +'urn:example:i97'('urn:example:i64', 'urn:example:i78'). +'urn:example:i97'('urn:example:i65', 'urn:example:i15'). +'urn:example:i97'('urn:example:i66', 'urn:example:i51'). +'urn:example:i97'('urn:example:i69', 'urn:example:i18'). +'urn:example:i97'('urn:example:i6', 'urn:example:i48'). +'urn:example:i97'('urn:example:i72', 'urn:example:i66'). +'urn:example:i97'('urn:example:i73', 'urn:example:i72'). +'urn:example:i97'('urn:example:i75', 'urn:example:i84'). +'urn:example:i97'('urn:example:i77', 'urn:example:i51'). +'urn:example:i97'('urn:example:i79', 'urn:example:i15'). +'urn:example:i97'('urn:example:i80', 'urn:example:i15'). +'urn:example:i97'('urn:example:i80', 'urn:example:i57'). +'urn:example:i97'('urn:example:i81', 'urn:example:i27'). +'urn:example:i97'('urn:example:i82', 'urn:example:i3'). +'urn:example:i97'('urn:example:i82', 'urn:example:i75'). +'urn:example:i97'('urn:example:i83', 'urn:example:i63'). +'urn:example:i97'('urn:example:i84', 'urn:example:i6'). +'urn:example:i97'('urn:example:i84', 'urn:example:i75'). +'urn:example:i97'('urn:example:i86', 'urn:example:i48'). +'urn:example:i97'('urn:example:i86', 'urn:example:i75'). +'urn:example:i97'('urn:example:i89', 'urn:example:i54'). +'urn:example:i97'('urn:example:i89', 'urn:example:i54'). +'urn:example:i97'('urn:example:i8', 'urn:example:i66'). +'urn:example:i97'('urn:example:i94', 'urn:example:i51'). +'urn:example:i97'('urn:example:i95', 'urn:example:i42'). +'urn:example:i97'('urn:example:i95', 'urn:example:i45'). +'urn:example:i97'('urn:example:i95', 'urn:example:i72'). +'urn:example:i97'('urn:example:i95', 'urn:example:i87'). +'urn:example:i97'('urn:example:i95', 'urn:example:i93'). +'urn:example:i97'('urn:example:i95', 'urn:example:i9'). +'urn:example:i97'('urn:example:i96', 'urn:example:i39'). +'urn:example:i97'('urn:example:i98', 'urn:example:i15'). +'urn:example:i97'('urn:example:i99', 'urn:example:i0'). +'urn:example:i97'('urn:example:i99', 'urn:example:i21'). +'urn:example:i97'('urn:example:i9', 'urn:example:i15'). +'urn:example:i97'('urn:example:i9', 'urn:example:i78'). +'urn:example:i98'('urn:example:i0', 'urn:example:i3'). +'urn:example:i98'('urn:example:i10', 'urn:example:i39'). +'urn:example:i98'('urn:example:i10', 'urn:example:i63'). +'urn:example:i98'('urn:example:i12', 'urn:example:i12'). +'urn:example:i98'('urn:example:i13', 'urn:example:i33'). +'urn:example:i98'('urn:example:i15', 'urn:example:i15'). +'urn:example:i98'('urn:example:i15', 'urn:example:i51'). +'urn:example:i98'('urn:example:i15', 'urn:example:i72'). +'urn:example:i98'('urn:example:i15', 'urn:example:i84'). +'urn:example:i98'('urn:example:i16', 'urn:example:i18'). +'urn:example:i98'('urn:example:i16', 'urn:example:i27'). +'urn:example:i98'('urn:example:i17', 'urn:example:i69'). +'urn:example:i98'('urn:example:i20', 'urn:example:i12'). +'urn:example:i98'('urn:example:i23', 'urn:example:i30'). +'urn:example:i98'('urn:example:i24', 'urn:example:i21'). +'urn:example:i98'('urn:example:i24', 'urn:example:i54'). +'urn:example:i98'('urn:example:i24', 'urn:example:i78'). +'urn:example:i98'('urn:example:i25', 'urn:example:i63'). +'urn:example:i98'('urn:example:i26', 'urn:example:i27'). +'urn:example:i98'('urn:example:i26', 'urn:example:i39'). +'urn:example:i98'('urn:example:i26', 'urn:example:i51'). +'urn:example:i98'('urn:example:i27', 'urn:example:i33'). +'urn:example:i98'('urn:example:i29', 'urn:example:i42'). +'urn:example:i98'('urn:example:i29', 'urn:example:i6'). +'urn:example:i98'('urn:example:i2', 'urn:example:i3'). +'urn:example:i98'('urn:example:i2', 'urn:example:i6'). +'urn:example:i98'('urn:example:i30', 'urn:example:i12'). +'urn:example:i98'('urn:example:i30', 'urn:example:i93'). +'urn:example:i98'('urn:example:i31', 'urn:example:i72'). +'urn:example:i98'('urn:example:i32', 'urn:example:i75'). +'urn:example:i98'('urn:example:i32', 'urn:example:i9'). +'urn:example:i98'('urn:example:i34', 'urn:example:i42'). +'urn:example:i98'('urn:example:i34', 'urn:example:i81'). +'urn:example:i98'('urn:example:i36', 'urn:example:i21'). +'urn:example:i98'('urn:example:i36', 'urn:example:i45'). +'urn:example:i98'('urn:example:i38', 'urn:example:i60'). +'urn:example:i98'('urn:example:i39', 'urn:example:i96'). +'urn:example:i98'('urn:example:i3', 'urn:example:i60'). +'urn:example:i98'('urn:example:i3', 'urn:example:i66'). +'urn:example:i98'('urn:example:i40', 'urn:example:i33'). +'urn:example:i98'('urn:example:i40', 'urn:example:i39'). +'urn:example:i98'('urn:example:i41', 'urn:example:i45'). +'urn:example:i98'('urn:example:i41', 'urn:example:i63'). +'urn:example:i98'('urn:example:i42', 'urn:example:i81'). +'urn:example:i98'('urn:example:i43', 'urn:example:i18'). +'urn:example:i98'('urn:example:i44', 'urn:example:i81'). +'urn:example:i98'('urn:example:i47', 'urn:example:i9'). +'urn:example:i98'('urn:example:i48', 'urn:example:i66'). +'urn:example:i98'('urn:example:i49', 'urn:example:i78'). +'urn:example:i98'('urn:example:i49', 'urn:example:i81'). +'urn:example:i98'('urn:example:i49', 'urn:example:i87'). +'urn:example:i98'('urn:example:i49', 'urn:example:i90'). +'urn:example:i98'('urn:example:i4', 'urn:example:i69'). +'urn:example:i98'('urn:example:i52', 'urn:example:i93'). +'urn:example:i98'('urn:example:i55', 'urn:example:i27'). +'urn:example:i98'('urn:example:i55', 'urn:example:i39'). +'urn:example:i98'('urn:example:i56', 'urn:example:i45'). +'urn:example:i98'('urn:example:i57', 'urn:example:i42'). +'urn:example:i98'('urn:example:i57', 'urn:example:i87'). +'urn:example:i98'('urn:example:i58', 'urn:example:i81'). +'urn:example:i98'('urn:example:i59', 'urn:example:i45'). +'urn:example:i98'('urn:example:i5', 'urn:example:i75'). +'urn:example:i98'('urn:example:i5', 'urn:example:i81'). +'urn:example:i98'('urn:example:i61', 'urn:example:i6'). +'urn:example:i98'('urn:example:i62', 'urn:example:i39'). +'urn:example:i98'('urn:example:i62', 'urn:example:i3'). +'urn:example:i98'('urn:example:i62', 'urn:example:i42'). +'urn:example:i98'('urn:example:i62', 'urn:example:i60'). +'urn:example:i98'('urn:example:i63', 'urn:example:i84'). +'urn:example:i98'('urn:example:i65', 'urn:example:i51'). +'urn:example:i98'('urn:example:i67', 'urn:example:i48'). +'urn:example:i98'('urn:example:i68', 'urn:example:i45'). +'urn:example:i98'('urn:example:i6', 'urn:example:i72'). +'urn:example:i98'('urn:example:i6', 'urn:example:i78'). +'urn:example:i98'('urn:example:i70', 'urn:example:i27'). +'urn:example:i98'('urn:example:i70', 'urn:example:i33'). +'urn:example:i98'('urn:example:i70', 'urn:example:i9'). +'urn:example:i98'('urn:example:i71', 'urn:example:i21'). +'urn:example:i98'('urn:example:i71', 'urn:example:i51'). +'urn:example:i98'('urn:example:i71', 'urn:example:i6'). +'urn:example:i98'('urn:example:i72', 'urn:example:i36'). +'urn:example:i98'('urn:example:i72', 'urn:example:i42'). +'urn:example:i98'('urn:example:i75', 'urn:example:i69'). +'urn:example:i98'('urn:example:i75', 'urn:example:i90'). +'urn:example:i98'('urn:example:i83', 'urn:example:i93'). +'urn:example:i98'('urn:example:i86', 'urn:example:i21'). +'urn:example:i98'('urn:example:i86', 'urn:example:i27'). +'urn:example:i98'('urn:example:i86', 'urn:example:i6'). +'urn:example:i98'('urn:example:i87', 'urn:example:i15'). +'urn:example:i98'('urn:example:i88', 'urn:example:i72'). +'urn:example:i98'('urn:example:i89', 'urn:example:i21'). +'urn:example:i98'('urn:example:i8', 'urn:example:i78'). +'urn:example:i98'('urn:example:i90', 'urn:example:i99'). +'urn:example:i98'('urn:example:i92', 'urn:example:i27'). +'urn:example:i98'('urn:example:i92', 'urn:example:i6'). +'urn:example:i98'('urn:example:i92', 'urn:example:i9'). +'urn:example:i98'('urn:example:i93', 'urn:example:i12'). +'urn:example:i98'('urn:example:i95', 'urn:example:i66'). +'urn:example:i98'('urn:example:i96', 'urn:example:i15'). +'urn:example:i98'('urn:example:i96', 'urn:example:i78'). +'urn:example:i98'('urn:example:i97', 'urn:example:i33'). +'urn:example:i98'('urn:example:i97', 'urn:example:i45'). +'urn:example:i98'('urn:example:i98', 'urn:example:i27'). +'urn:example:i98'('urn:example:i98', 'urn:example:i36'). +'urn:example:i98'('urn:example:i98', 'urn:example:i72'). +'urn:example:i98'('urn:example:i99', 'urn:example:i75'). +'urn:example:i98'('urn:example:i9', 'urn:example:i30'). +'urn:example:i98'('urn:example:i9', 'urn:example:i66'). +'urn:example:i9'('urn:example:i0', 'urn:example:i69'). +'urn:example:i9'('urn:example:i13', 'urn:example:i39'). +'urn:example:i9'('urn:example:i13', 'urn:example:i78'). +'urn:example:i9'('urn:example:i17', 'urn:example:i9'). +'urn:example:i9'('urn:example:i18', 'urn:example:i0'). +'urn:example:i9'('urn:example:i1', 'urn:example:i96'). +'urn:example:i9'('urn:example:i22', 'urn:example:i60'). +'urn:example:i9'('urn:example:i22', 'urn:example:i72'). +'urn:example:i9'('urn:example:i23', 'urn:example:i36'). +'urn:example:i9'('urn:example:i23', 'urn:example:i42'). +'urn:example:i9'('urn:example:i23', 'urn:example:i75'). +'urn:example:i9'('urn:example:i24', 'urn:example:i3'). +'urn:example:i9'('urn:example:i25', 'urn:example:i18'). +'urn:example:i9'('urn:example:i27', 'urn:example:i60'). +'urn:example:i9'('urn:example:i28', 'urn:example:i6'). +'urn:example:i9'('urn:example:i2', 'urn:example:i30'). +'urn:example:i9'('urn:example:i30', 'urn:example:i96'). +'urn:example:i9'('urn:example:i30', 'urn:example:i9'). +'urn:example:i9'('urn:example:i31', 'urn:example:i0'). +'urn:example:i9'('urn:example:i31', 'urn:example:i87'). +'urn:example:i9'('urn:example:i31', 'urn:example:i96'). +'urn:example:i9'('urn:example:i33', 'urn:example:i36'). +'urn:example:i9'('urn:example:i35', 'urn:example:i9'). +'urn:example:i9'('urn:example:i36', 'urn:example:i66'). +'urn:example:i9'('urn:example:i37', 'urn:example:i93'). +'urn:example:i9'('urn:example:i38', 'urn:example:i75'). +'urn:example:i9'('urn:example:i38', 'urn:example:i99'). +'urn:example:i9'('urn:example:i39', 'urn:example:i69'). +'urn:example:i9'('urn:example:i3', 'urn:example:i51'). +'urn:example:i9'('urn:example:i3', 'urn:example:i69'). +'urn:example:i9'('urn:example:i43', 'urn:example:i0'). +'urn:example:i9'('urn:example:i45', 'urn:example:i78'). +'urn:example:i9'('urn:example:i45', 'urn:example:i93'). +'urn:example:i9'('urn:example:i46', 'urn:example:i81'). +'urn:example:i9'('urn:example:i47', 'urn:example:i15'). +'urn:example:i9'('urn:example:i47', 'urn:example:i69'). +'urn:example:i9'('urn:example:i47', 'urn:example:i9'). +'urn:example:i9'('urn:example:i48', 'urn:example:i15'). +'urn:example:i9'('urn:example:i48', 'urn:example:i72'). +'urn:example:i9'('urn:example:i49', 'urn:example:i33'). +'urn:example:i9'('urn:example:i4', 'urn:example:i54'). +'urn:example:i9'('urn:example:i50', 'urn:example:i24'). +'urn:example:i9'('urn:example:i50', 'urn:example:i66'). +'urn:example:i9'('urn:example:i51', 'urn:example:i90'). +'urn:example:i9'('urn:example:i52', 'urn:example:i63'). +'urn:example:i9'('urn:example:i52', 'urn:example:i6'). +'urn:example:i9'('urn:example:i54', 'urn:example:i30'). +'urn:example:i9'('urn:example:i54', 'urn:example:i45'). +'urn:example:i9'('urn:example:i56', 'urn:example:i54'). +'urn:example:i9'('urn:example:i58', 'urn:example:i12'). +'urn:example:i9'('urn:example:i5', 'urn:example:i75'). +'urn:example:i9'('urn:example:i60', 'urn:example:i96'). +'urn:example:i9'('urn:example:i62', 'urn:example:i39'). +'urn:example:i9'('urn:example:i63', 'urn:example:i72'). +'urn:example:i9'('urn:example:i64', 'urn:example:i54'). +'urn:example:i9'('urn:example:i64', 'urn:example:i60'). +'urn:example:i9'('urn:example:i64', 'urn:example:i63'). +'urn:example:i9'('urn:example:i64', 'urn:example:i90'). +'urn:example:i9'('urn:example:i65', 'urn:example:i75'). +'urn:example:i9'('urn:example:i66', 'urn:example:i78'). +'urn:example:i9'('urn:example:i67', 'urn:example:i12'). +'urn:example:i9'('urn:example:i68', 'urn:example:i27'). +'urn:example:i9'('urn:example:i68', 'urn:example:i36'). +'urn:example:i9'('urn:example:i68', 'urn:example:i51'). +'urn:example:i9'('urn:example:i69', 'urn:example:i24'). +'urn:example:i9'('urn:example:i70', 'urn:example:i0'). +'urn:example:i9'('urn:example:i70', 'urn:example:i36'). +'urn:example:i9'('urn:example:i70', 'urn:example:i69'). +'urn:example:i9'('urn:example:i70', 'urn:example:i96'). +'urn:example:i9'('urn:example:i72', 'urn:example:i66'). +'urn:example:i9'('urn:example:i72', 'urn:example:i6'). +'urn:example:i9'('urn:example:i74', 'urn:example:i81'). +'urn:example:i9'('urn:example:i75', 'urn:example:i36'). +'urn:example:i9'('urn:example:i75', 'urn:example:i93'). +'urn:example:i9'('urn:example:i76', 'urn:example:i15'). +'urn:example:i9'('urn:example:i76', 'urn:example:i45'). +'urn:example:i9'('urn:example:i77', 'urn:example:i24'). +'urn:example:i9'('urn:example:i77', 'urn:example:i30'). +'urn:example:i9'('urn:example:i77', 'urn:example:i42'). +'urn:example:i9'('urn:example:i79', 'urn:example:i15'). +'urn:example:i9'('urn:example:i7', 'urn:example:i33'). +'urn:example:i9'('urn:example:i81', 'urn:example:i0'). +'urn:example:i9'('urn:example:i81', 'urn:example:i78'). +'urn:example:i9'('urn:example:i82', 'urn:example:i42'). +'urn:example:i9'('urn:example:i82', 'urn:example:i54'). +'urn:example:i9'('urn:example:i82', 'urn:example:i6'). +'urn:example:i9'('urn:example:i83', 'urn:example:i18'). +'urn:example:i9'('urn:example:i83', 'urn:example:i42'). +'urn:example:i9'('urn:example:i84', 'urn:example:i54'). +'urn:example:i9'('urn:example:i86', 'urn:example:i36'). +'urn:example:i9'('urn:example:i87', 'urn:example:i3'). +'urn:example:i9'('urn:example:i88', 'urn:example:i18'). +'urn:example:i9'('urn:example:i88', 'urn:example:i96'). +'urn:example:i9'('urn:example:i8', 'urn:example:i27'). +'urn:example:i9'('urn:example:i8', 'urn:example:i57'). +'urn:example:i9'('urn:example:i90', 'urn:example:i12'). +'urn:example:i9'('urn:example:i91', 'urn:example:i84'). +'urn:example:i9'('urn:example:i94', 'urn:example:i57'). +'urn:example:i9'('urn:example:i94', 'urn:example:i69'). +'urn:example:i9'('urn:example:i94', 'urn:example:i93'). +'urn:example:i9'('urn:example:i95', 'urn:example:i60'). +'urn:example:i9'('urn:example:i96', 'urn:example:i3'). +'urn:example:i9'('urn:example:i96', 'urn:example:i66'). +'urn:example:i9'('urn:example:i98', 'urn:example:i72'). +'urn:example:i9'('urn:example:i9', 'urn:example:i54'). +'urn:example:i9'('urn:example:i9', 'urn:example:i84'). +'urn:example:i9'('urn:example:i9', 'urn:example:i96'). + +'urn:example:cycle'(A, [B, C, D, E, F, G, H, I, J, K, B]) :- + current_predicate(A/2), + atom_concat('urn:example:', _, A), + A \= 'urn:example:cycle', + call(A, B, C), + call(A, C, D), + call(A, D, E), + call(A, E, F), + call(A, F, G), + call(A, G, H), + call(A, H, I), + call(A, I, J), + call(A, J, K), + call(A, K, B). + +% query +true := 'urn:example:cycle'(_, _). diff --git a/logic-programming/complex.pl b/logic-programming/complex.pl new file mode 100644 index 000000000..7a4a14b0f --- /dev/null +++ b/logic-programming/complex.pl @@ -0,0 +1,97 @@ +% See https://en.wikipedia.org/wiki/Complex_number + +'urn:example:complex:sum'([[A, B], [C, D]], [E, F]) :- + E is A+C, + F is B+D. + +'urn:example:complex:difference'([[A, B], [C, D]], [E, F]) :- + E is A-C, + F is B-D. + +'urn:example:complex:product'([[A, B], [C, D]], [E, F]) :- + E is A*C-B*D, + F is A*D+B*C. + +'urn:example:complex:quotient'([[A, B], [C, D]], [E, F]) :- + E is (A*C+B*D)/(C^2+D^2), + F is (B*C-A*D)/(C^2+D^2). + +'urn:example:complex:exponentiation'([[A, B], [C, D]], [E, F]) :- + polar([A, B], [G, H]), + E is G^C*exp(-D*H)*cos(D*log(G)+C*H), + F is G^C*exp(-D*H)*sin(D*log(G)+C*H). + +'urn:example:complex:log'([[A, B], [C, D]], [E, F]) :- + polar([A, B], [G, H]), + polar([C, D], [I, J]), + K is log(G), + L is log(I), + 'urn:example:complex:quotient'([[L, J], [K, H]], [E, F]). + +'urn:example:complex:sin'([A, B], [C, D]) :- + C is sin(A)*(exp(B)+exp(-B))/2, + D is cos(A)*(exp(B)-exp(-B))/2. + +'urn:example:complex:cos'([A, B], [C, D]) :- + C is cos(A)*(exp(B)+exp(-B))/2, + D is -sin(A)*(exp(B)-exp(-B))/2. + +'urn:example:complex:tan'(A, B) :- + 'urn:example:complex:sin'(A, C), + 'urn:example:complex:cos'(A, D), + 'urn:example:complex:quotient'([C, D], B). + +'urn:example:complex:asin'([A, B], [C, D]) :- + E is (sqrt((1+A)^2+B^2)-sqrt((1-A)^2+B^2))/2, + F is (sqrt((1+A)^2+B^2)+sqrt((1-A)^2+B^2))/2, + C is asin(E), + D is log(F+sqrt(F^2-1)). + +'urn:example:complex:acos'([A, B], [C, D]) :- + E is (sqrt((1+A)^2+B^2)-sqrt((1-A)^2+B^2))/2, + F is (sqrt((1+A)^2+B^2)+sqrt((1-A)^2+B^2))/2, + C is acos(E), + D is -log(F+sqrt(F^2-1)). + +'urn:example:complex:atan'(A, B) :- + 'urn:example:complex:difference'([[0, 1], A], C), + 'urn:example:complex:sum'([[0, 1], A], D), + 'urn:example:complex:quotient'([C, D], E), + X is 0+e, + 'urn:example:complex:log'([[X, 0], E], F), + 'urn:example:complex:quotient'([F, [0, 2]], B). + +polar([A, B], [C, D]) :- + C is sqrt(A^2+B^2), + E is acos(abs(A)/C), + angular(A, B, E, D). + +angular(A, B, C, D) :- + A >= 0, + B >= 0, + D = C. +angular(A, B, C, D) :- + A < 0, + B >= 0, + D is pi-C. +angular(A, B, C, D) :- + A < 0, + B < 0, + D is C+pi. +angular(A, B, C, D) :- + A >= 0, + B < 0, + D is 2*pi-C. + +% queries +true := 'urn:example:complex:quotient'([[1, 0], [0, 1]], _). +true := 'urn:example:complex:exponentiation'([[-1, 0], [0.5, 0]], _). +true := 'urn:example:complex:exponentiation'([[e, 0], [0, pi]], _). +true := 'urn:example:complex:log'([[e, 0], [-1, 0]], _). +true := 'urn:example:complex:log'([[0, 1], [0, 1]], _). +true := 'urn:example:complex:sin'([1.570796326794897, 1.316957896924817], _). +true := 'urn:example:complex:cos'([0, -1.316957896924817], _). +true := 'urn:example:complex:tan'([1.338972522294493, 0.4023594781085251], _). +true := 'urn:example:complex:asin'([2, 0], _). +true := 'urn:example:complex:acos'([2, 0], _). +true := 'urn:example:complex:atan'([1, 2], _). diff --git a/logic-programming/control.pl b/logic-programming/control.pl new file mode 100644 index 000000000..1a9aca33e --- /dev/null +++ b/logic-programming/control.pl @@ -0,0 +1,50 @@ +% Control Systems + +% measurements +'urn:example:measurement1'('urn:example:input1', [6, 11]). +'urn:example:measurement1'('urn:example:disturbance2', [45, 39]). +'urn:example:measurement2'('urn:example:input2', true). +'urn:example:measurement3'('urn:example:input3', 56967). +'urn:example:measurement3'('urn:example:disturbance1', 35766). +'urn:example:measurement4'('urn:example:output2', 24). + +% observations +'urn:example:observation1'('urn:example:state1', 80). +'urn:example:observation2'('urn:example:state2', false). +'urn:example:observation3'('urn:example:state3', 22). + +% targets +'urn:example:target2'('urn:example:output2', 29). + +% rules +'urn:example:control1'('urn:example:actuator1', C) :- + 'urn:example:measurement10'('urn:example:input1', M1), + 'urn:example:measurement2'('urn:example:input2', true), + 'urn:example:measurement3'('urn:example:disturbance1', D1), + C1 is M1*19.6, % proportial part + C2 is log(D1)/log(10), % compensation part + C is C1-C2. % simple feedforward control + +'urn:example:control1'('urn:example:actuator2', C) :- + 'urn:example:observation3'('urn:example:state3', P3), + 'urn:example:measurement4'('urn:example:output2', M4), + 'urn:example:target2'('urn:example:output2', T2), + E is T2-M4, % error + D is P3-M4, % differential error + C1 is 5.8*E, % proportial part + N is 7.3/E, % nonlinear factor + C2 is N*D, % nonlinear differential part + C is C1+C2. % PND feedback control + +'urn:example:measurement10'(I, M) :- + 'urn:example:measurement1'(I, [M1, M2]), + M1 < M2, + M3 is M2-M1, + M is sqrt(M3). + +'urn:example:measurement10'(I, M1) :- + 'urn:example:measurement1'(I, [M1, M2]), + M1 >= M2. + +% query +true := 'urn:example:control1'(_, _). diff --git a/logic-programming/derivative.pl b/logic-programming/derivative.pl new file mode 100644 index 000000000..6a89fbef5 --- /dev/null +++ b/logic-programming/derivative.pl @@ -0,0 +1,112 @@ +% Mathematical library for derivatives + +'urn:example:derivative'(A, B, C) :- + derivative(A, B, C). + +derivative(U, X, Y) :- + d(U, X, V), + s(V, W), + s(W, Y). + +integral(U, X, Y) :- + d(V, X, U), + s(V, W), + s(W, Y). + +% derivative +d(U+V, X, DU+DV) :- + d(U, X, DU), + d(V, X, DV), + !. +d(U-V, X, DU-DV) :- + d(U, X, DU), + d(V, X, DV), + !. +d(U*V, X, DU*V+U*DV) :- + d(U, X, DU), + d(V, X, DV), + !. +d(U/V, X, (DU*V-U*DV)/V^2) :- + !, + d(U, X, DU), + d(V, X, DV), + !. +d(U^N, X, DU*N*U^N1) :- + N1 is N - 1, + d(U, X, DU), + !. +d(-U, X, -DU) :- + d(U, X, DU), + !. +d(exp(U), X, DU*exp(U)) :- + d(U, X, DU), + !. +d(log(U), X, DU/U) :- + d(U, X, DU), + !. +d(erf(U), X, DU*sqrt(pi)/2*exp(-U^2)) :- + d(U, X, DU), + !. +d(X, X, 1) :- + !. +d(_, _, 0). + +% simplification +s(A, A) :- + atom(A), + !. +s(A, A) :- + number(A), + !. +s(0+A, A) :- + !. +s(A+0, A) :- + !. +s(0-A, -A) :- + !. +s(A-0, A) :- + !. +s(0*_, 0) :- + !. +s(_*0, 0) :- + !. +s(1*A, A) :- + !. +s(A*1, A) :- + !. +s(0/A, 0) :- + A =\= 0, + !. +s(_/0, 0) :- + throw(divide_by_zero). +s(1/A, 1/A) :- + !. +s(A/1, A) :- + !. +s(0^_, 0) :- + !. +s(_^0, 1) :- + !. +s(1^_, 1) :- + !. +s(A^1, A) :- + !. +s(A, B) :- + A =.. [_, C, D], + number(C), + number(D), + !, + B is A. +s(A, B) :- + A =.. [C, D, E], + !, + s(D, F), + s(E, G), + B =.. [C, F, G]. +s(A, A). + +% queries +true := 'urn:example:derivative'((x+1)*((x^2+2)*(x^3+3)), x, _). +true := 'urn:example:derivative'(x/x/x/x/x/x/x/x/x/x, x, _). +true := 'urn:example:derivative'(log(log(log(log(log(log(log(log(log(log(x)))))))))), x, _). +true := 'urn:example:derivative'(x*x*x*x*x*x*x*x*x*x, x, _). diff --git a/logic-programming/dt.pl b/logic-programming/dt.pl new file mode 100644 index 000000000..310b90275 --- /dev/null +++ b/logic-programming/dt.pl @@ -0,0 +1,30008 @@ +% Deep taxonomy +% See http://ruleml.org/WellnessRules/files/WellnessRulesN3-2009-11-10.pdf + +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N0'). + +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N0'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N0'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N0'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N10') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I10') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J10') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N11') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N10'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I11') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N10'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J11') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N10'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N12') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N11'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I12') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N11'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J12') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N11'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N13') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N12'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I13') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N12'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J13') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N12'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N14') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N13'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I14') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N13'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J14') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N13'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N15') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N14'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I15') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N14'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J15') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N14'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N16') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N15'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I16') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N15'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J16') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N15'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N17') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N16'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I17') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N16'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J17') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N16'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N18') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N17'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I18') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N17'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J18') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N17'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N19') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N18'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I19') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N18'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J19') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N18'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N20') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N19'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I20') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N19'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J20') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N19'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N21') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N20'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I21') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N20'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J21') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N20'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N22') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N21'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I22') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N21'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J22') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N21'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N23') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N22'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I23') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N22'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J23') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N22'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N24') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N23'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I24') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N23'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J24') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N23'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N25') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N24'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I25') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N24'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J25') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N24'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N26') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N25'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I26') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N25'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J26') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N25'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N27') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N26'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I27') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N26'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J27') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N26'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N28') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N27'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I28') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N27'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J28') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N27'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N29') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N28'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I29') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N28'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J29') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N28'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N30') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N29'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I30') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N29'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J30') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N29'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N31') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N30'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I31') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N30'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J31') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N30'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N32') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N31'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I32') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N31'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J32') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N31'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N33') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N32'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I33') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N32'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J33') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N32'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N34') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N33'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I34') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N33'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J34') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N33'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N35') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N34'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I35') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N34'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J35') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N34'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N36') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N35'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I36') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N35'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J36') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N35'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N37') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N36'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I37') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N36'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J37') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N36'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N38') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N37'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I38') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N37'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J38') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N37'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N39') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N38'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I39') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N38'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J39') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N38'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N40') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N39'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I40') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N39'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J40') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N39'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N41') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N40'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I41') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N40'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J41') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N40'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N42') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N41'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I42') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N41'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J42') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N41'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N43') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N42'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I43') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N42'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J43') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N42'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N44') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N43'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I44') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N43'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J44') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N43'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N45') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N44'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I45') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N44'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J45') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N44'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N46') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N45'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I46') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N45'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J46') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N45'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N47') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N46'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I47') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N46'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J47') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N46'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N48') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N47'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I48') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N47'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J48') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N47'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N49') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N48'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I49') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N48'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J49') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N48'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N50') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N49'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I50') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N49'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J50') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N49'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N51') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N50'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I51') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N50'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J51') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N50'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N52') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N51'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I52') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N51'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J52') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N51'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N53') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N52'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I53') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N52'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J53') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N52'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N54') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N53'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I54') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N53'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J54') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N53'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N55') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N54'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I55') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N54'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J55') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N54'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N56') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N55'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I56') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N55'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J56') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N55'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N57') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N56'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I57') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N56'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J57') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N56'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N58') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N57'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I58') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N57'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J58') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N57'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N59') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N58'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I59') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N58'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J59') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N58'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N60') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N59'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I60') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N59'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J60') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N59'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N61') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N60'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I61') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N60'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J61') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N60'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N62') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N61'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I62') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N61'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J62') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N61'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N63') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N62'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I63') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N62'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J63') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N62'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N64') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N63'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I64') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N63'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J64') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N63'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N65') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N64'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I65') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N64'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J65') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N64'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N66') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N65'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I66') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N65'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J66') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N65'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N67') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N66'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I67') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N66'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J67') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N66'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N68') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N67'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I68') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N67'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J68') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N67'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N69') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N68'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I69') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N68'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J69') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N68'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N70') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N69'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I70') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N69'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J70') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N69'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N71') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N70'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I71') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N70'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J71') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N70'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N72') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N71'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I72') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N71'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J72') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N71'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N73') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N72'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I73') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N72'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J73') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N72'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N74') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N73'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I74') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N73'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J74') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N73'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N75') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N74'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I75') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N74'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J75') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N74'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N76') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N75'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I76') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N75'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J76') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N75'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N77') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N76'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I77') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N76'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J77') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N76'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N78') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N77'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I78') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N77'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J78') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N77'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N79') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N78'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I79') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N78'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J79') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N78'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N80') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N79'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I80') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N79'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J80') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N79'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N81') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N80'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I81') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N80'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J81') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N80'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N82') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N81'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I82') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N81'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J82') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N81'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N83') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N82'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I83') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N82'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J83') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N82'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N84') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N83'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I84') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N83'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J84') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N83'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N85') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N84'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I85') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N84'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J85') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N84'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N86') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N85'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I86') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N85'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J86') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N85'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N87') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N86'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I87') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N86'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J87') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N86'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N88') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N87'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I88') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N87'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J88') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N87'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N89') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N88'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I89') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N88'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J89') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N88'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N90') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N89'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I90') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N89'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J90') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N89'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N91') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N90'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I91') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N90'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J91') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N90'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N92') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N91'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I92') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N91'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J92') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N91'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N93') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N92'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I93') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N92'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J93') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N92'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N94') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N93'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I94') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N93'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J94') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N93'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N95') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N94'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I95') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N94'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J95') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N94'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N96') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N95'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I96') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N95'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J96') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N95'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N97') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N96'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I97') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N96'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J97') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N96'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N98') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N97'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I98') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N97'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J98') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N97'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N99') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N98'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I99') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N98'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J99') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N98'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N99'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N99'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N99'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I1999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J1999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N1999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I2999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J2999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N2999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I3999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J3999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N3999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I4999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J4999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N4999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I5999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J5999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N5999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I6999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J6999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N6999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I7999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J7999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N7999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I8999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J8999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N8999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9001') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9000'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9002') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9001'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9003') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9002'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9004') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9003'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9005') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9004'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9006') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9005'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9007') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9006'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9008') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9007'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9009') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9008'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9010') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9009'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9011') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9010'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9012') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9011'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9013') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9012'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9014') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9013'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9015') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9014'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9016') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9015'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9017') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9016'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9018') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9017'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9019') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9018'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9020') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9019'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9021') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9020'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9022') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9021'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9023') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9022'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9024') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9023'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9025') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9024'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9026') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9025'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9027') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9026'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9028') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9027'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9029') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9028'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9030') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9029'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9031') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9030'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9032') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9031'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9033') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9032'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9034') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9033'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9035') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9034'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9036') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9035'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9037') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9036'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9038') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9037'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9039') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9038'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9040') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9039'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9041') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9040'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9042') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9041'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9043') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9042'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9044') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9043'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9045') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9044'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9046') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9045'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9047') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9046'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9048') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9047'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9049') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9048'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9050') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9049'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9051') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9050'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9052') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9051'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9053') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9052'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9054') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9053'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9055') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9054'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9056') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9055'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9057') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9056'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9058') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9057'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9059') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9058'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9060') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9059'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9061') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9060'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9062') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9061'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9063') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9062'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9064') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9063'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9065') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9064'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9066') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9065'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9067') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9066'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9068') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9067'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9069') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9068'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9070') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9069'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9071') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9070'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9072') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9071'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9073') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9072'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9074') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9073'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9075') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9074'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9076') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9075'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9077') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9076'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9078') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9077'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9079') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9078'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9080') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9079'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9081') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9080'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9082') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9081'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9083') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9082'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9084') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9083'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9085') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9084'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9086') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9085'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9087') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9086'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9088') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9087'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9089') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9088'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9090') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9089'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9091') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9090'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9092') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9091'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9093') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9092'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9094') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9093'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9095') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9094'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9096') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9095'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9097') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9096'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9098') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9097'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9099') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9098'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9100') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9099'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9101') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9100'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9102') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9101'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9103') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9102'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9104') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9103'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9105') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9104'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9106') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9105'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9107') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9106'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9108') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9107'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9109') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9108'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9110') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9109'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9111') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9110'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9112') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9111'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9113') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9112'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9114') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9113'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9115') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9114'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9116') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9115'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9117') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9116'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9118') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9117'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9119') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9118'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9120') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9119'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9121') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9120'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9122') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9121'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9123') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9122'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9124') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9123'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9125') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9124'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9126') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9125'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9127') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9126'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9128') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9127'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9129') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9128'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9130') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9129'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9131') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9130'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9132') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9131'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9133') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9132'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9134') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9133'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9135') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9134'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9136') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9135'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9137') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9136'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9138') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9137'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9139') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9138'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9140') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9139'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9141') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9140'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9142') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9141'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9143') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9142'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9144') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9143'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9145') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9144'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9146') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9145'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9147') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9146'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9148') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9147'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9149') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9148'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9150') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9149'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9151') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9150'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9152') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9151'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9153') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9152'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9154') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9153'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9155') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9154'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9156') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9155'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9157') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9156'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9158') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9157'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9159') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9158'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9160') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9159'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9161') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9160'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9162') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9161'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9163') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9162'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9164') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9163'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9165') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9164'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9166') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9165'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9167') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9166'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9168') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9167'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9169') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9168'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9170') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9169'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9171') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9170'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9172') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9171'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9173') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9172'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9174') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9173'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9175') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9174'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9176') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9175'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9177') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9176'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9178') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9177'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9179') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9178'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9180') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9179'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9181') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9180'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9182') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9181'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9183') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9182'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9184') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9183'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9185') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9184'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9186') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9185'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9187') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9186'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9188') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9187'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9189') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9188'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9190') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9189'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9191') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9190'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9192') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9191'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9193') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9192'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9194') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9193'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9195') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9194'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9196') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9195'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9197') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9196'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9198') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9197'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9199') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9198'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9200') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9199'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9201') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9200'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9202') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9201'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9203') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9202'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9204') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9203'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9205') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9204'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9206') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9205'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9207') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9206'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9208') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9207'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9209') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9208'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9210') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9209'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9211') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9210'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9212') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9211'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9213') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9212'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9214') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9213'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9215') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9214'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9216') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9215'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9217') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9216'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9218') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9217'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9219') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9218'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9220') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9219'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9221') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9220'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9222') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9221'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9223') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9222'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9224') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9223'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9225') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9224'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9226') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9225'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9227') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9226'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9228') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9227'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9229') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9228'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9230') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9229'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9231') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9230'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9232') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9231'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9233') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9232'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9234') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9233'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9235') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9234'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9236') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9235'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9237') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9236'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9238') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9237'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9239') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9238'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9240') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9239'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9241') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9240'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9242') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9241'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9243') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9242'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9244') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9243'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9245') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9244'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9246') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9245'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9247') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9246'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9248') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9247'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9249') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9248'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9250') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9249'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9251') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9250'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9252') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9251'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9253') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9252'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9254') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9253'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9255') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9254'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9256') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9255'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9257') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9256'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9258') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9257'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9259') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9258'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9260') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9259'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9261') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9260'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9262') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9261'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9263') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9262'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9264') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9263'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9265') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9264'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9266') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9265'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9267') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9266'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9268') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9267'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9269') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9268'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9270') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9269'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9271') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9270'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9272') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9271'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9273') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9272'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9274') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9273'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9275') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9274'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9276') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9275'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9277') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9276'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9278') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9277'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9279') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9278'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9280') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9279'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9281') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9280'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9282') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9281'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9283') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9282'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9284') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9283'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9285') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9284'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9286') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9285'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9287') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9286'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9288') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9287'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9289') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9288'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9290') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9289'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9291') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9290'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9292') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9291'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9293') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9292'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9294') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9293'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9295') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9294'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9296') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9295'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9297') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9296'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9298') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9297'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9299') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9298'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9300') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9299'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9301') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9300'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9302') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9301'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9303') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9302'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9304') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9303'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9305') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9304'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9306') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9305'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9307') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9306'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9308') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9307'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9309') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9308'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9310') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9309'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9311') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9310'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9312') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9311'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9313') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9312'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9314') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9313'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9315') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9314'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9316') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9315'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9317') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9316'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9318') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9317'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9319') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9318'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9320') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9319'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9321') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9320'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9322') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9321'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9323') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9322'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9324') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9323'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9325') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9324'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9326') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9325'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9327') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9326'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9328') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9327'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9329') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9328'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9330') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9329'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9331') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9330'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9332') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9331'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9333') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9332'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9334') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9333'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9335') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9334'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9336') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9335'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9337') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9336'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9338') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9337'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9339') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9338'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9340') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9339'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9341') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9340'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9342') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9341'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9343') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9342'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9344') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9343'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9345') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9344'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9346') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9345'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9347') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9346'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9348') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9347'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9349') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9348'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9350') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9349'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9351') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9350'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9352') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9351'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9353') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9352'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9354') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9353'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9355') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9354'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9356') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9355'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9357') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9356'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9358') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9357'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9359') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9358'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9360') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9359'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9361') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9360'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9362') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9361'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9363') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9362'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9364') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9363'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9365') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9364'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9366') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9365'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9367') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9366'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9368') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9367'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9369') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9368'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9370') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9369'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9371') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9370'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9372') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9371'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9373') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9372'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9374') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9373'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9375') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9374'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9376') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9375'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9377') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9376'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9378') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9377'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9379') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9378'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9380') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9379'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9381') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9380'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9382') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9381'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9383') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9382'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9384') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9383'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9385') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9384'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9386') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9385'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9387') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9386'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9388') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9387'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9389') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9388'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9390') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9389'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9391') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9390'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9392') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9391'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9393') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9392'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9394') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9393'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9395') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9394'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9396') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9395'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9397') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9396'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9398') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9397'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9399') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9398'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9400') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9399'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9401') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9400'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9402') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9401'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9403') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9402'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9404') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9403'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9405') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9404'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9406') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9405'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9407') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9406'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9408') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9407'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9409') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9408'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9410') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9409'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9411') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9410'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9412') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9411'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9413') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9412'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9414') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9413'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9415') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9414'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9416') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9415'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9417') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9416'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9418') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9417'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9419') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9418'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9420') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9419'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9421') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9420'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9422') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9421'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9423') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9422'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9424') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9423'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9425') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9424'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9426') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9425'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9427') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9426'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9428') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9427'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9429') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9428'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9430') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9429'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9431') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9430'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9432') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9431'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9433') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9432'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9434') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9433'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9435') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9434'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9436') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9435'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9437') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9436'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9438') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9437'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9439') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9438'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9440') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9439'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9441') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9440'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9442') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9441'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9443') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9442'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9444') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9443'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9445') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9444'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9446') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9445'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9447') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9446'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9448') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9447'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9449') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9448'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9450') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9449'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9451') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9450'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9452') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9451'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9453') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9452'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9454') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9453'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9455') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9454'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9456') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9455'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9457') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9456'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9458') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9457'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9459') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9458'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9460') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9459'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9461') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9460'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9462') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9461'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9463') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9462'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9464') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9463'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9465') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9464'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9466') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9465'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9467') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9466'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9468') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9467'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9469') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9468'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9470') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9469'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9471') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9470'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9472') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9471'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9473') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9472'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9474') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9473'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9475') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9474'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9476') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9475'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9477') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9476'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9478') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9477'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9479') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9478'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9480') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9479'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9481') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9480'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9482') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9481'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9483') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9482'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9484') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9483'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9485') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9484'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9486') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9485'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9487') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9486'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9488') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9487'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9489') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9488'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9490') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9489'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9491') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9490'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9492') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9491'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9493') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9492'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9494') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9493'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9495') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9494'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9496') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9495'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9497') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9496'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9498') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9497'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9499') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9498'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9500') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9499'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9501') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9500'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9502') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9501'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9503') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9502'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9504') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9503'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9505') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9504'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9506') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9505'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9507') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9506'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9508') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9507'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9509') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9508'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9510') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9509'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9511') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9510'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9512') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9511'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9513') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9512'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9514') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9513'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9515') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9514'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9516') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9515'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9517') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9516'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9518') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9517'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9519') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9518'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9520') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9519'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9521') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9520'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9522') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9521'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9523') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9522'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9524') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9523'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9525') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9524'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9526') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9525'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9527') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9526'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9528') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9527'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9529') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9528'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9530') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9529'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9531') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9530'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9532') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9531'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9533') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9532'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9534') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9533'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9535') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9534'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9536') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9535'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9537') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9536'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9538') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9537'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9539') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9538'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9540') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9539'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9541') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9540'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9542') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9541'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9543') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9542'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9544') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9543'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9545') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9544'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9546') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9545'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9547') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9546'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9548') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9547'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9549') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9548'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9550') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9549'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9551') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9550'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9552') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9551'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9553') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9552'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9554') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9553'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9555') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9554'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9556') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9555'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9557') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9556'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9558') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9557'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9559') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9558'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9560') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9559'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9561') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9560'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9562') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9561'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9563') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9562'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9564') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9563'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9565') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9564'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9566') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9565'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9567') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9566'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9568') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9567'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9569') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9568'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9570') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9569'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9571') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9570'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9572') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9571'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9573') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9572'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9574') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9573'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9575') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9574'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9576') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9575'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9577') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9576'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9578') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9577'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9579') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9578'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9580') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9579'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9581') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9580'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9582') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9581'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9583') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9582'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9584') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9583'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9585') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9584'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9586') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9585'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9587') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9586'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9588') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9587'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9589') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9588'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9590') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9589'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9591') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9590'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9592') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9591'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9593') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9592'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9594') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9593'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9595') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9594'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9596') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9595'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9597') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9596'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9598') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9597'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9599') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9598'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9600') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9599'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9601') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9600'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9602') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9601'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9603') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9602'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9604') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9603'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9605') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9604'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9606') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9605'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9607') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9606'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9608') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9607'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9609') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9608'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9610') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9609'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9611') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9610'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9612') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9611'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9613') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9612'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9614') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9613'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9615') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9614'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9616') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9615'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9617') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9616'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9618') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9617'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9619') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9618'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9620') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9619'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9621') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9620'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9622') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9621'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9623') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9622'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9624') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9623'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9625') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9624'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9626') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9625'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9627') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9626'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9628') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9627'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9629') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9628'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9630') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9629'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9631') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9630'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9632') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9631'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9633') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9632'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9634') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9633'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9635') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9634'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9636') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9635'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9637') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9636'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9638') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9637'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9639') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9638'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9640') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9639'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9641') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9640'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9642') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9641'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9643') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9642'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9644') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9643'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9645') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9644'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9646') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9645'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9647') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9646'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9648') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9647'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9649') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9648'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9650') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9649'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9651') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9650'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9652') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9651'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9653') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9652'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9654') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9653'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9655') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9654'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9656') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9655'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9657') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9656'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9658') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9657'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9659') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9658'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9660') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9659'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9661') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9660'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9662') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9661'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9663') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9662'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9664') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9663'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9665') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9664'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9666') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9665'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9667') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9666'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9668') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9667'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9669') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9668'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9670') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9669'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9671') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9670'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9672') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9671'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9673') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9672'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9674') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9673'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9675') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9674'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9676') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9675'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9677') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9676'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9678') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9677'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9679') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9678'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9680') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9679'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9681') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9680'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9682') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9681'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9683') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9682'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9684') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9683'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9685') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9684'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9686') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9685'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9687') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9686'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9688') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9687'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9689') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9688'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9690') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9689'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9691') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9690'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9692') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9691'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9693') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9692'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9694') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9693'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9695') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9694'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9696') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9695'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9697') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9696'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9698') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9697'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9699') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9698'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9700') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9699'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9701') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9700'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9702') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9701'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9703') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9702'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9704') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9703'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9705') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9704'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9706') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9705'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9707') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9706'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9708') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9707'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9709') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9708'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9710') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9709'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9711') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9710'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9712') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9711'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9713') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9712'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9714') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9713'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9715') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9714'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9716') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9715'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9717') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9716'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9718') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9717'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9719') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9718'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9720') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9719'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9721') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9720'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9722') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9721'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9723') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9722'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9724') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9723'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9725') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9724'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9726') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9725'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9727') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9726'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9728') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9727'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9729') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9728'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9730') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9729'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9731') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9730'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9732') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9731'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9733') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9732'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9734') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9733'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9735') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9734'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9736') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9735'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9737') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9736'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9738') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9737'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9739') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9738'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9740') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9739'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9741') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9740'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9742') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9741'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9743') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9742'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9744') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9743'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9745') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9744'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9746') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9745'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9747') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9746'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9748') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9747'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9749') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9748'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9750') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9749'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9751') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9750'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9752') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9751'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9753') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9752'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9754') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9753'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9755') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9754'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9756') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9755'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9757') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9756'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9758') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9757'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9759') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9758'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9760') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9759'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9761') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9760'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9762') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9761'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9763') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9762'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9764') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9763'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9765') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9764'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9766') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9765'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9767') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9766'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9768') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9767'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9769') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9768'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9770') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9769'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9771') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9770'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9772') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9771'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9773') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9772'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9774') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9773'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9775') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9774'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9776') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9775'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9777') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9776'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9778') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9777'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9779') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9778'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9780') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9779'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9781') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9780'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9782') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9781'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9783') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9782'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9784') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9783'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9785') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9784'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9786') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9785'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9787') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9786'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9788') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9787'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9789') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9788'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9790') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9789'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9791') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9790'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9792') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9791'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9793') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9792'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9794') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9793'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9795') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9794'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9796') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9795'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9797') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9796'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9798') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9797'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9799') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9798'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9800') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9799'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9801') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9800'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9802') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9801'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9803') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9802'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9804') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9803'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9805') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9804'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9806') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9805'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9807') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9806'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9808') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9807'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9809') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9808'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9810') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9809'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9811') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9810'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9812') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9811'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9813') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9812'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9814') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9813'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9815') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9814'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9816') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9815'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9817') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9816'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9818') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9817'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9819') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9818'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9820') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9819'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9821') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9820'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9822') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9821'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9823') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9822'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9824') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9823'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9825') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9824'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9826') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9825'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9827') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9826'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9828') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9827'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9829') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9828'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9830') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9829'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9831') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9830'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9832') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9831'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9833') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9832'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9834') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9833'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9835') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9834'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9836') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9835'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9837') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9836'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9838') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9837'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9839') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9838'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9840') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9839'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9841') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9840'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9842') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9841'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9843') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9842'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9844') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9843'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9845') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9844'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9846') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9845'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9847') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9846'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9848') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9847'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9849') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9848'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9850') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9849'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9851') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9850'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9852') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9851'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9853') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9852'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9854') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9853'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9855') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9854'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9856') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9855'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9857') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9856'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9858') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9857'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9859') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9858'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9860') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9859'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9861') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9860'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9862') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9861'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9863') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9862'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9864') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9863'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9865') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9864'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9866') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9865'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9867') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9866'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9868') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9867'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9869') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9868'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9870') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9869'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9871') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9870'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9872') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9871'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9873') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9872'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9874') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9873'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9875') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9874'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9876') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9875'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9877') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9876'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9878') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9877'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9879') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9878'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9880') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9879'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9881') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9880'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9882') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9881'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9883') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9882'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9884') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9883'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9885') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9884'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9886') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9885'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9887') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9886'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9888') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9887'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9889') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9888'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9890') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9889'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9891') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9890'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9892') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9891'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9893') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9892'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9894') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9893'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9895') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9894'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9896') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9895'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9897') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9896'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9898') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9897'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9899') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9898'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9900') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9899'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9901') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9900'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9902') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9901'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9903') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9902'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9904') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9903'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9905') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9904'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9906') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9905'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9907') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9906'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9908') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9907'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9909') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9908'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9910') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9909'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9911') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9910'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9912') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9911'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9913') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9912'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9914') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9913'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9915') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9914'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9916') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9915'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9917') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9916'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9918') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9917'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9919') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9918'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9920') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9919'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9921') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9920'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9922') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9921'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9923') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9922'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9924') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9923'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9925') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9924'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9926') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9925'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9927') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9926'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9928') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9927'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9929') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9928'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9930') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9929'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9931') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9930'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9932') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9931'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9933') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9932'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9934') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9933'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9935') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9934'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9936') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9935'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9937') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9936'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9938') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9937'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9939') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9938'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9940') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9939'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9941') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9940'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9942') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9941'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9943') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9942'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9944') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9943'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9945') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9944'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9946') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9945'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9947') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9946'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9948') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9947'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9949') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9948'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9950') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9949'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9951') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9950'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9952') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9951'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9953') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9952'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9954') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9953'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9955') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9954'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9956') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9955'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9957') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9956'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9958') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9957'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9959') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9958'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9960') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9959'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9961') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9960'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9962') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9961'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9963') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9962'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9964') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9963'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9965') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9964'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9966') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9965'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9967') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9966'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9968') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9967'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9969') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9968'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9970') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9969'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9971') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9970'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9972') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9971'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9973') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9972'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9974') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9973'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9975') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9974'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9976') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9975'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9977') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9976'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9978') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9977'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9979') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9978'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9980') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9979'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9981') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9980'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9982') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9981'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9983') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9982'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9984') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9983'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9985') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9984'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9986') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9985'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9987') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9986'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9988') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9987'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9989') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9988'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9990') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9989'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9991') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9990'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9992') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9991'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9993') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9992'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9994') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9993'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9995') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9994'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9996') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9995'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9997') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9996'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9998') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9997'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I9999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J9999') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9998'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N10000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:I10000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9999'). +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:J10000') := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:N9999'). + +% query +true := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(_, 'urn:example:N10000'). diff --git a/logic-programming/easter.pl b/logic-programming/easter.pl new file mode 100644 index 000000000..dab4bd98e --- /dev/null +++ b/logic-programming/easter.pl @@ -0,0 +1,15 @@ +% calculate easter date + +'urn:example:easter'(Year, [Month, Day]) :- + A is Year rem 19, + B is Year//100, + C is Year rem 100, + D is (19*A+B-B//4-((B-(B+8)//25+1)//3)+15) rem 30, + E is (32+2*(B rem 4)+2*(C//4)-D-(C rem 4)) rem 7, + F is D+E-7*((A+11*D+22*E)//451)+114, + Month is F//31, + Day is F rem 31+1. + +% query +(true := 'urn:example:easter'(Year, [_, _])) :- + between(2021, 2050, Year). diff --git a/logic-programming/enigma1225.pl b/logic-programming/enigma1225.pl new file mode 100644 index 000000000..c589b3983 --- /dev/null +++ b/logic-programming/enigma1225.pl @@ -0,0 +1,211 @@ +% New Scientist puzzle Enigma 1225 + +:- use_module(library(apply)). +:- use_module(library(clpfd)). + +'urn:example:enigma1225'(Size, [Permutation, Board, Max]) :- + setof(Total, M^Freq^Perm^square(Size, M, Total, Freq, Perm), Totals), + lastlist(Totals, Max), + square(Size, Board, Max, _, Permutation). + +var_matrix(Size, M) :- + repeat(Size, Size, RowLengths), + maplist(var_list, RowLengths, M). + +repeat(X, 1, [X]) :- + !. +repeat(X, N, [X|R]) :- + NewN is N - 1, + repeat(X, NewN, R). + +var_list(N, L) :- + length(L, N). + +list_permute([], _, []). +list_permute([P1|Rest], L, [H|T]) :- + nth1(P1, L, H), + list_permute(Rest, L, T). + +snd((_, X), X). + +retain_var(_, [], []). +retain_var(V, [H|T], [H|L]) :- + H == V, + retain_var(V, T, L). +retain_var(V, [H|T], L) :- + H \== V, + retain_var(V, T, L). + +count_var(VarList, Var, Num) :- + retain_var(Var, VarList, List), + length(List, Num). + +total(IntPairs, Total) :- + total(IntPairs, 0, Total). + +total([], S, S). +total([(X, Y)|T], Acc, S) :- + NewAcc is Acc + X*Y, + total(T, NewAcc, S). + +zip([], _, []) :- + !. +zip(_, [], []) :- + !. +zip([H1|T1], [H2|T2], [(H1, H2)|T]) :- + zip(T1, T2, T). + +from_to(M, N, L) :- + ( var(L) + ; is_list(L) + ), + integer(M), + integer(N), + M =< N, + from_to_acc(M, [N], L), + !. +from_to(H, N, [H|T]) :- + lastlist([H|T], N), + !, + H =< N. + +from_to_acc(H, [H|T], [H|T]). +from_to_acc(M, [H|T], L) :- + NewHead is H - 1, + !, + from_to_acc(M, [NewHead, H|T], L). + +eval_matrix(Matrix, FreqSorted) :- + flatlist(Matrix, Entries), + setof(E, member(E, Entries), Set), + maplist(count_var(Entries), Set, Multiplicities), + zip(Multiplicities, Set, Frequencies), + sort(Frequencies, FreqSorted), + maplist(snd, FreqSorted, VarsSorted), + length(VarsSorted, NVars), + from_to(1, NVars, VarsSorted). + +distinct([_]). +distinct([H|T]) :- + notin(H, T), + distinct(T). + +notin(_, []). +notin(E, [H|T]) :- + E \== H, + notin(E, T). + +next_partition([(2, 1)|T], [(1, 2)|T]). +next_partition([(2, AlphaK)|T], [(1, 2), (2, NewAlphaK)|T]) :- + AlphaK > 1, + NewAlphaK is AlphaK - 1. +next_partition([(K, 1)|T], [(1, 1), (NewK, 1)|T]) :- + K > 2, + NewK is K - 1. +next_partition([(K, AlphaK)|T], [(1, 1), (NewK, 1), (K, NewAlphaK)|T]) :- + K > 2, + AlphaK > 1, + NewK is K - 1, + NewAlphaK is AlphaK - 1. +next_partition([(1, Alpha1), (2, 1)|T], [(1, NewAlpha)|T]) :- + NewAlpha is Alpha1 + 2. +next_partition([(1, Alpha1), (2, Alpha2)|T], [(1, NewAlpha1), (2, NewAlpha2)|T]) :- + Alpha2 > 1, + NewAlpha1 is Alpha1 + 2, + NewAlpha2 is Alpha2 - 1. +next_partition([(1, Alpha1), (L, 1)|T], [(Rest, 1), (NewL, Ratio)|T]) :- + L > 2, + NewL is L - 1, + Rest is (Alpha1 + L) mod NewL, + Rest > 0, + Ratio is (Alpha1 + L) // NewL. +next_partition([(1, Alpha1), (L, 1)|T], [(NewL, Ratio)|T]) :- + L > 2, + NewL is L - 1, + Rest is (Alpha1 + L) mod NewL, + Rest =:= 0, + Ratio is (Alpha1 + L) // NewL. +next_partition([(1, Alpha1), (L, AlphaL)|T], [(Rest, 1), (NewL, Ratio), (L, NewAlphaL)|T]) :- + L > 2, + AlphaL > 1, + NewL is L - 1, + Rest is (Alpha1 + L) mod NewL, + Rest > 0, + Ratio is (Alpha1 + L) // NewL, + NewAlphaL is AlphaL - 1. +next_partition([(1, Alpha1), (L, AlphaL)|T], [(NewL, Ratio), (L, NewAlphaL)|T]) :- + L > 2, + AlphaL > 1, + NewL is L - 1, + Rest is (Alpha1 + L) mod NewL, + Rest =:= 0, + Ratio is (Alpha1 + L) // NewL, + NewAlphaL is AlphaL - 1. + +ad_partition(N, [(K, AlphaK)|T]) :- + generator([(N, 1)], [(K, AlphaK)|T]), + K > 1. + +generator(From, From). +generator(Last, P) :- + next_partition(Last, New), + generator(New, P). + +splitter(N, Type, S) :- + from_to(1, N, L), + splitter(L, Type, [], S). + +splitter([], [(_, 0)], Acc, S) :- + reverse(Acc, S), + !. +splitter(L, [(_, 0)|T], Acc, S) :- + splitter(L, T, Acc, S). +splitter(L, [(K, AlphaK)|T], Acc, S) :- + AlphaK > 0, + append(L1, L2, L), + length(L1, K), + NewAlphaK is AlphaK - 1, + splitter(L2, [(K, NewAlphaK)|T], [L1|Acc], S). + +list_rotate([H|T], L) :- + append(T, [H], L). + +rep_perm(N, Type, Perm) :- + splitter(N, Type, S), + maplist(list_rotate, S, R), + flatlist(R, Perm). + +square(Size, M, Total, Frequencies, Permutation) :- + var_matrix(Size, M), + ad_partition(Size, Partition), + rep_perm(Size, Partition, Permutation), + list_permute(Permutation, M, P), + transpose(P, M), + distinct(M), + eval_matrix(M, Frequencies), + total(Frequencies, Total). + +flatlist(List, FlatList) :- + flatlist_(List, [], FlatList0), + !, + FlatList = FlatList0. + +flatlist_(Var, Tl, [Var|Tl]) :- + var(Var), + !. +flatlist_([], Tl, Tl) :- !. +flatlist_([Hd|Tl], Tail, List) :- + !, + flatlist_(Hd, FlatHeadTail, List), + flatlist_(Tl, Tail, FlatHeadTail). +flatlist_(NonList, Tl, [NonList|Tl]). + +lastlist([X|Xs], Last) :- + lastlist_(Xs, X, Last). + +lastlist_([], Last, Last). +lastlist_([X|Xs], _, Last) :- + lastlist_(Xs, X, Last). + +% query +true := 'urn:example:enigma1225'(8, _). diff --git a/logic-programming/equation.pl b/logic-programming/equation.pl new file mode 100644 index 000000000..bb368b37a --- /dev/null +++ b/logic-programming/equation.pl @@ -0,0 +1,454 @@ +% Mathematical library for solving equations + +'urn:example:equation'(A, B, C) :- + findall(E, + ( solve_equation(A, B, B=F), + E is F + ), + C + ). + +% +% Equation solver +% Code from the book "The Art of Prolog" Chapter 23 +% + +% solve_equation(Equation, Unknown, Solution) :- +% Solution is a solution to the equation Equation +% in the unknown Unknown. +solve_equation(A*B=0, X, Solution) :- + !, + factorize(A*B, X, Factors-[]), + remove_duplicates(Factors, Factors1), + solve_factors(Factors1, X, Solution). +solve_equation(Equation, X, Solution) :- + single_occurrence(X, Equation), + !, + position(X, Equation, [Side|Position]), + maneuver_sides(Side, Equation, Equation1), + isolate(Position, Equation1, Solution). +solve_equation(Lhs=Rhs, X, Solution) :- + polynomial(Lhs, X), + polynomial(Rhs, X), + !, + polynomial_normal_form(Lhs-Rhs, X, PolyForm), + solve_polynomial_equation(PolyForm, X, Solution). +solve_equation(Equation, X, Solution) :- + offenders(Equation, X, Offenders), + multiple(Offenders), + homogenize(Equation, X, Equation1, X1), + solve_equation(Equation1, X1, Solution1), + solve_equation(Solution1, X, Solution). + +% The factorization method +% +% factorize(Expression, Subterm, Factors) :- +% Factors is a difference-list consisting of the factors of +% the multiplicative term Expression that contains the Subterm. +factorize(A*B, X, Factors-Rest) :- + !, + factorize(A, X, Factors-Factors1), + factorize(B, X, Factors1-Rest). +factorize(C, X, [C|Factors]-Factors) :- + subterm(X, C), + !. +factorize(_, _, Factors-Factors). + +% solve_factors(Factors, Unknown, Solution) :- +% Solution is a solution of the equation Factor=0 in +% the Unknown for some Factor in the list of Factors. +solve_factors([Factor|_], X, Solution) :- + solve_equation(Factor=0, X, Solution). +solve_factors([_|Factors], X, Solution) :- + solve_factors(Factors, X, Solution). + +% The isolation method +maneuver_sides(1, Lhs = Rhs, Lhs = Rhs) :- + !. +maneuver_sides(2, Lhs = Rhs, Rhs = Lhs) :- + !. + +isolate([N|Position], Equation, IsolatedEquation) :- + isolax(N, Equation, Equation1), + isolate(Position, Equation1, IsolatedEquation). +isolate([], Equation, Equation). + +% Axioms for Isolation +isolax(1, -Lhs = Rhs, Lhs = -Rhs). +isolax(1, Term1+Term2 = Rhs, Term1 = Rhs-Term2). +isolax(2, Term1+Term2 = Rhs, Term2 = Rhs-Term1). +isolax(1, Term1-Term2 = Rhs, Term1 = Rhs+Term2). +isolax(2, Term1-Term2 = Rhs, Term2 = Term1-Rhs). +isolax(1, Term1*Term2 = Rhs, Term1 = Rhs/Term2) :- + Term2 \== 0. +isolax(2, Term1*Term2 = Rhs, Term2 = Rhs/Term1) :- + Term1 \== 0. +isolax(1, Term1/Term2 = Rhs, Term1 = Rhs*Term2) :- + Term2 \== 0. +isolax(2, Term1/Term2 = Rhs, Term2 = Term1/Rhs) :- + Rhs \== 0. +isolax(1, Term1^Term2 = Rhs, Term1 = Rhs^(-Term2)). +isolax(2, Term1^Term2 = Rhs, Term2 = log(Rhs)/log(Term1)). +isolax(1, sin(U) = V, U = asin(V)). +isolax(1, sin(U) = V, U = 180-asin(V)). +isolax(1, cos(U) = V, U = acos(V)). +isolax(1, cos(U) = V, U = -acos(V)). +isolax(1, cos(U) = V, U = -acos(V)). + +% The polynomial method +polynomial(X, X) :- + !. +polynomial(Term, _) :- + atomic(Term), + !. +polynomial(Term1+Term2, X) :- + !, + polynomial(Term1, X), + polynomial(Term2, X). +polynomial(Term1-Term2, X) :- + !, + polynomial(Term1, X), + polynomial(Term2, X). +polynomial(Term1*Term2, X) :- + !, + polynomial(Term1, X), + polynomial(Term2, X). +polynomial(Term1/Term2, X) :- + !, + polynomial(Term1, X), + atomic(Term2). +polynomial(Term ^ N, X) :- + !, + integer(N), + N >= 0, + polynomial(Term, X). + +% polynomial_normal_form(Expression, Term, PolyNormalForm) :- +% PolyNormalForm is the polynomial normal form of the +% Expression, which is a polynomial in Term. +polynomial_normal_form(Polynomial, X, NormalForm) :- + polynomial_form(Polynomial, X, PolyForm), + remove_zero_terms(PolyForm, NormalForm), + !. + +polynomial_form(X, X, [(1, 1)]). +polynomial_form(X^N, X, [(1, N)]). +polynomial_form(Term1+Term2, X, PolyForm) :- + polynomial_form(Term1, X, PolyForm1), + polynomial_form(Term2, X, PolyForm2), + add_polynomials(PolyForm1, PolyForm2, PolyForm). +polynomial_form(Term1-Term2, X, PolyForm) :- + polynomial_form(Term1, X, PolyForm1), + polynomial_form(Term2, X, PolyForm2), + subtract_polynomials(PolyForm1, PolyForm2, PolyForm). +polynomial_form(Term1*Term2, X, PolyForm) :- + polynomial_form(Term1, X, PolyForm1), + polynomial_form(Term2, X, PolyForm2), + multiply_polynomials(PolyForm1, PolyForm2, PolyForm). +polynomial_form(Term^N, X, PolyForm) :- + !, + polynomial_form(Term, X, PolyForm1), + binomial(PolyForm1, N, PolyForm). +polynomial_form(Term, X, [(Term, 0)]) :- + free_of(X, Term), + !. + +remove_zero_terms([(0, _)|Poly], Poly1) :- + !, + remove_zero_terms(Poly, Poly1). +remove_zero_terms([(C, N)|Poly], [(C, N)|Poly1]) :- + C \== 0, + !, + remove_zero_terms(Poly, Poly1). +remove_zero_terms([], []). + +% Polynomial manipulation routines +% +% add_polynomials(Poly1, Poly2, Poly) :- +% Poly is the sum of Poly1 and Poly2, where +% Poly1, Poly2 and Poly are all in polynomial form. +add_polynomials([], Poly, Poly) :- + !. +add_polynomials(Poly, [], Poly) :- + !. +add_polynomials([(Ai, Ni)|Poly1], [(Aj, Nj)|Poly2], [(Ai, Ni)|Poly]) :- + Ni > Nj, + !, + add_polynomials(Poly1, [(Aj, Nj)|Poly2], Poly). +add_polynomials([(Ai, Ni)|Poly1], [(Aj, Nj)|Poly2], [(A, Ni)|Poly]) :- + Ni =:= Nj, + !, + A is Ai+Aj, + add_polynomials(Poly1, Poly2, Poly). +add_polynomials([(Ai, Ni)|Poly1], [(Aj, Nj)|Poly2], [(Aj, Nj)|Poly]) :- + Ni < Nj, + !, + add_polynomials([(Ai, Ni)|Poly1], Poly2, Poly). + +% subtract_polynomials(Poly1, Poly2, Poly) :- +% Poly is the difference of Poly1 and Poly2, where +% Poly1, Poly2 and Poly are all in polynomial form. +subtract_polynomials(Poly1, Poly2, Poly) :- + multiply_single(Poly2, (-1, 0), Poly3), + add_polynomials(Poly1, Poly3, Poly), + !. + +% multiply_single(Poly1, Monomial, Poly) :- +% Poly is the product of Poly1 and Monomial, where +% Poly1, and Poly are in polynomial form, and Monomial +% has the form (C, N) denoting the monomial C*X^N. +multiply_single([(C1, N1)|Poly1], (C, N), [(C2, N2)|Poly]) :- + C2 is C1*C, + N2 is N1+N, + multiply_single(Poly1, (C, N), Poly). +multiply_single([], _, []). + +% multiply_polynomials(Poly1, Poly2, Poly) :- +% Poly is the product of Poly1 and Poly2, where +% Poly1, Poly2 and Poly are all in polynomial form. +multiply_polynomials([(C, N)|Poly1], Poly2, Poly) :- + multiply_single(Poly2, (C, N), Poly3), + multiply_polynomials(Poly1, Poly2, Poly4), + add_polynomials(Poly3, Poly4, Poly). +multiply_polynomials([], _, []). + +binomial(Poly, 1, Poly). + +% solve_polynomial_equation(Equation, Unknown, Solution) :- +% Solution is a solution to the polynomial Equation +% in the unknown Unknown. +solve_polynomial_equation(PolyEquation, X, X = -B/A) :- + linear(PolyEquation), + !, + pad(PolyEquation, [(A, 1), (B, 0)]). +solve_polynomial_equation(PolyEquation, X, Solution) :- + quadratic(PolyEquation), + !, + pad(PolyEquation, [(A, 2), (B, 1), (C, 0)]), + discriminant(A, B, C, Discriminant), + root(X, A, B, C, Discriminant, Solution). + +discriminant(A, B, C, D) :- + D is B*B-4*A*C. + +root(X, A, B, _, 0, X= -B/(2*A)). +root(X, A, B, _, D, X= (-B+sqrt(D))/(2*A)) :- + D > 0. +root(X, A, B, _, D, X= (-B-sqrt(D))/(2*A)) :- + D > 0. + +pad([(C, N)|Poly], [(C, N)|Poly1]) :- + !, + pad(Poly, Poly1). +pad(Poly, [(0, _)|Poly1]) :- + pad(Poly, Poly1). +pad([], []). + +linear([(_, 1)|_]). + +quadratic([(_, 2)|_]). + +% The homogenization method +% +% homogenize(Equation, X, Equation1, X1) :- +% The Equation in X is transformed to the polynomial +% Equation1 in X1 where X1 contains X. +homogenize(Equation, X, Equation1, X1) :- + offenders(Equation, X, Offenders), + reduced_term(X, Offenders, Type, X1), + rewrite(Offenders, Type, X1, Substitutions), + substitute(Equation, Substitutions, Equation1). + +% offenders(Equation, Unknown, Offenders) +% Offenders is the set of offenders of the equation in the Unknown +offenders(Equation, X, Offenders) :- + parse(Equation, X, Offenders1-[]), + remove_duplicates(Offenders1, Offenders), + multiple(Offenders). + +reduced_term(X, Offenders, Type, X1) :- + classify(Offenders, X, Type), + candidate(Type, Offenders, X, X1). + +% Heuristics for exponential equations +classify(Offenders, X, exponential) :- + exponential_offenders(Offenders, X). + +exponential_offenders([A^B|Offs], X) :- + free_of(X, A), + subterm(X, B), + exponential_offenders(Offs, X). +exponential_offenders([], _). + +candidate(exponential, Offenders, X, A^X) :- + base(Offenders, A), + polynomial_exponents(Offenders, X). + +base([A^_|Offs], A) :- + base(Offs, A). +base([], _). + +polynomial_exponents([_^B|Offs], X) :- + polynomial(B, X), + polynomial_exponents(Offs, X). +polynomial_exponents([], _). + +% Parsing the equation and making substitutions +% +% parse(Expression, Term, Offenders) +% Expression is traversed to produce the set of Offenders in Term, +% that is the non-algebraic subterms of Expression containing Term +parse(A+B, X, L1-L2) :- + !, + parse(A, X, L1-L3), + parse(B, X, L3-L2). +parse(A*B, X, L1-L2) :- + !, + parse(A, X, L1-L3), + parse(B, X, L3-L2). +parse(A-B, X, L1-L2) :- + !, + parse(A, X, L1-L3), + parse(B, X, L3-L2). +parse(A=B, X, L1-L2) :- + !, + parse(A, X, L1-L3), + parse(B, X, L3-L2). +parse(A^B, X, L) :- + integer(B), + !, + parse(A, X, L). +parse(A, X, L-L) :- + free_of(X, A), + !. +parse(A, X, [A|L]-L) :- + subterm(X, A), + !. + +% substitute(Equation, Substitutions, Equation1) :- +% Equation1 is the result of applying the list of +% Substitutions to Equation. +substitute(A+B, Subs, NewA+NewB) :- + !, + substitute(A, Subs, NewA), + substitute(B, Subs, NewB). +substitute(A*B, Subs, NewA*NewB) :- + !, + substitute(A, Subs, NewA), + substitute(B, Subs, NewB). +substitute(A-B, Subs, NewA-NewB) :- + !, + substitute(A, Subs, NewA), + substitute(B, Subs, NewB). +substitute(A=B, Subs, NewA=NewB) :- + !, + substitute(A, Subs, NewA), + substitute(B, Subs, NewB). +substitute(A^B, Subs, NewA^B) :- + integer(B), + !, + substitute(A, Subs, NewA). +substitute(A, Subs, B) :- + member(A=B, Subs), + !. +substitute(A, _, A). + +% Finding homogenization rewrite rules +rewrite([Off|Offs], Type, X1, [Off=Term|Rewrites]) :- + homogenize_axiom(Type, Off, X1, Term), + rewrite(Offs, Type, X1, Rewrites). +rewrite([], _, _, []). + +% Homogenization axioms +homogenize_axiom(exponential, A^(N*X), A^X, (A^X)^N). +homogenize_axiom(exponential, A^(-X), A^X, 1/(A^X)). +homogenize_axiom(exponential, A^(X+B), A^X, A^B*A^X). + +% Utilities +subterm(Term, Term). +subterm(Sub, Term) :- + compound1(Term), + functor(Term, _, N), + subterm(N, Sub, Term). + +subterm(N, Sub, Term) :- + arg(N, Term, Arg), + subterm(Sub, Arg). +subterm(N, Sub, Term) :- + N > 0, + N1 is N - 1, + subterm(N1, Sub, Term). + +position(Term, Term, []) :- + !. +position(Sub, Term, Path) :- + compound1(Term), + functor(Term, _, N), + position(N, Sub, Term, Path), + !. + +position(N, Sub, Term, [N|Path]) :- + arg(N, Term, Arg), + position(Sub, Arg, Path). +position(N, Sub, Term, Path) :- + N > 1, + N1 is N-1, + position(N1, Sub, Term, Path). + +free_of(Subterm, Term) :- + occurrence(Subterm, Term, N), + !, + N=0. + +single_occurrence(Subterm, Term) :- + occurrence(Subterm, Term, N), + !, + N=1. + +occurrence(Term, Term, 1) :- + !. +occurrence(Sub, Term, N) :- + compound1(Term), + !, + functor(Term, _, M), + occurrence(M, Sub, Term, 0, N). +occurrence(Sub, Term, 0) :- + Term \== Sub. + +occurrence(M, Sub, Term, N1, N2) :- + M > 0, + !, + arg(M, Term, Arg), + occurrence(Sub, Arg, N), + N3 is N+N1, + M1 is M-1, + occurrence(M1, Sub, Term, N3, N2). +occurrence(0, _, _, N, N). + +multiple([_, _|_]). + +remove_duplicates(Xs, Ys) :- + no_doubles(Xs, Ys). + +no_doubles([X|Xs], Ys) :- + member(X, Xs), + no_doubles(Xs, Ys). +no_doubles([X|Xs], [X|Ys]) :- + nonmember(X, Xs), + no_doubles(Xs, Ys). +no_doubles([], []). + +nonmember(X, [Y|Ys]) :- + X \== Y, + nonmember(X, Ys). +nonmember(_, []). + +compound1(Term) :- + functor(Term, _, N), + N > 0, + !. + +% queries +true := 'urn:example:equation'(x^2-3*x+2=0, x, _). +true := 'urn:example:equation'(cos(x)*(1-2*sin(x))=0, x, _). +true := 'urn:example:equation'(2^(2*x)-5*2^(x+1)+16=0, x, _). diff --git a/logic-programming/eulers-identity.pl b/logic-programming/eulers-identity.pl new file mode 100644 index 000000000..4632d6b74 --- /dev/null +++ b/logic-programming/eulers-identity.pl @@ -0,0 +1,38 @@ +% Euler's identity +% See https://en.wikipedia.org/wiki/Euler%27s_identity + +'urn:example:complex:sum'([[A, B], [C, D]], [E, F]) :- + E is A+C, + F is B+D. + +'urn:example:complex:exponentiation'([[A, B], [C, D]], [E, F]) :- + polar([A, B], [G, H]), + E is G^C*exp(-D*H)*cos(D*log(G)+C*H), + F is G^C*exp(-D*H)*sin(D*log(G)+C*H). + +polar([A, B], [C, D]) :- + C is sqrt(A^2+B^2), + E is acos(abs(A)/C), + angular(A, B, E, D). + +angular(A, B, C, D) :- + A >= 0, + B >= 0, + D = C. +angular(A, B, C, D) :- + A < 0, + B >= 0, + D is pi-C. +angular(A, B, C, D) :- + A < 0, + B < 0, + D is C+pi. +angular(A, B, C, D) :- + A >= 0, + B < 0, + D is 2*pi-C. + +% query +true := + 'urn:example:complex:exponentiation'([[e, 0], [0, pi]], X), + 'urn:example:complex:sum'([X, [1, 0]], _). diff --git a/logic-programming/fft.pl b/logic-programming/fft.pl new file mode 100644 index 000000000..c22853223 --- /dev/null +++ b/logic-programming/fft.pl @@ -0,0 +1,54 @@ +% Fast Fourier Transform +% Code from the book "Clause and Effect" Chapter 10 + +'urn:example:fft'(A, L) :- + eval(p(A, w^0), X0, 8), + eval(p(A, w^1), X1, 8), + eval(p(A, w^2), X2, 8), + eval(p(A, w^3), X3, 8), + eval(p(A, w^4), X4, 8), + eval(p(A, w^5), X5, 8), + eval(p(A, w^6), X6, 8), + eval(p(A, w^7), X7, 8), + gen((X0;X1;X2;X3;X4;X5;X6;X7), []-L, _). + +eval(p([I], _), a(I), _). +eval(p(L, V^P), A1+V^P*A2, N) :- + alternate(L, L1, L2), + P1 is (P*2) mod N, + eval(p(L1, V^P1), A1, N), + eval(p(L2, V^P1), A2, N). + +alternate([], [], []). +alternate([A, B|T], [A|T1], [B|T2]) :- + alternate(T, T1, T2). + +% gen(InTree, ListOutFront-ListOutBack, NodeIndex) +gen(X+Y, L0-L3, A) :- + !, + gen(X, L0-L1, A1), + gen(Y, L1-L2, A2), + node(n(A, op(+, A1, A2)), L2-L3). +gen(X*Y, L0-L3, A) :- + !, + gen(X, L0-L1, A1), + gen(Y, L1-L2, A2), + node(n(A, op(*, A1, A2)), L2-L3). +gen((X;Y), L0-L2, _) :- + !, + gen(X, L0-L1, _), + gen(Y, L1-L2, _). +gen(X, L0-L1, A) :- + node(n(A, X), L0-L1). + +% node(TryNode, OutDiffList) +node(n(1, N), []-[n(1, N)]) :- + !. +node(N, L-L) :- + memberchk(N, L), + !. +node(n(A1, N1), [n(A, N)|T]-[n(A1, N1), n(A, N)|T]) :- + A1 is A+1. + +% query +true := 'urn:example:fft'([0, 1, 2, 3, 4, 5, 6, 7], _). diff --git a/logic-programming/fibonacci.pl b/logic-programming/fibonacci.pl new file mode 100644 index 000000000..699cb9db5 --- /dev/null +++ b/logic-programming/fibonacci.pl @@ -0,0 +1,32 @@ +% See https://en.wikipedia.org/wiki/Fibonacci_number + +'urn:example:fibonacci'(A, B) :- + fibonacci(A, 0, 1, B). + +fibonacci(0, A, _, A). +fibonacci(1, _, A, A). +fibonacci(A, B, C, D) :- + A > 1, + E is A-1, + F is B+C, + fibonacci(E, C, F, D). + +'urn:example:golden_ratio'(A, B) :- + 'urn:example:fibonacci'(A, C), + D is A+1, + 'urn:example:fibonacci'(D, E), + B is E/C. + +% queries +true :='urn:example:fibonacci'(1, _). +true := 'urn:example:fibonacci'(2, _). +true := 'urn:example:fibonacci'(3, _). +true := 'urn:example:fibonacci'(4, _). +true := 'urn:example:fibonacci'(5, _). +true := 'urn:example:fibonacci'(91, _). +true := 'urn:example:fibonacci'(283, _). +true := 'urn:example:fibonacci'(3674, _). +true := 'urn:example:golden_ratio'(1, _). +true := 'urn:example:golden_ratio'(10, _). +true := 'urn:example:golden_ratio'(100, _). +true := 'urn:example:golden_ratio'(1000, _). diff --git a/logic-programming/fourcolor.pl b/logic-programming/fourcolor.pl new file mode 100644 index 000000000..114cbd4ec --- /dev/null +++ b/logic-programming/fourcolor.pl @@ -0,0 +1,45 @@ +% See https://en.wikipedia.org/wiki/Four_color_theorem + +'urn:example:colors'(_Map, Places) :- + findall([Place, _], 'urn:example:neighbours'(Place, _), Places), + places(Places), + !. + +places([]). +places([[Place, Color]|Tail]) :- + places(Tail), + 'urn:example:neighbours'(Place, Neighbours), + member(Color, ['urn:example:red', 'urn:example:green', 'urn:example:blue', 'urn:example:yellow']), + \+ (member([Neighbour, Color], Tail), member(Neighbour, Neighbours)). + +% map of European Union +'urn:example:neighbours'('urn:example:Belgium', ['urn:example:France', 'urn:example:Netherlands', 'urn:example:Luxemburg', 'urn:example:Germany']). +'urn:example:neighbours'('urn:example:Netherlands', ['urn:example:Belgium', 'urn:example:Germany']). +'urn:example:neighbours'('urn:example:Luxemburg', ['urn:example:Belgium', 'urn:example:France', 'urn:example:Germany']). +'urn:example:neighbours'('urn:example:France', ['urn:example:Spain', 'urn:example:Belgium', 'urn:example:Luxemburg', 'urn:example:Germany', 'urn:example:Italy']). +'urn:example:neighbours'('urn:example:Germany', ['urn:example:Netherlands', 'urn:example:Belgium''urn:example:Luxemburg', 'urn:example:Denmark', 'urn:example:France', 'urn:example:Austria', 'urn:example:Poland', 'urn:example:Czech_Republic']). +'urn:example:neighbours'('urn:example:Italy', ['urn:example:France', 'urn:example:Austria', 'urn:example:Slovenia']). +'urn:example:neighbours'('urn:example:Denmark', ['urn:example:Germany']). +'urn:example:neighbours'('urn:example:Ireland', []). +'urn:example:neighbours'('urn:example:Greece', ['urn:example:Bulgaria']). +'urn:example:neighbours'('urn:example:Spain', ['urn:example:France', 'urn:example:Portugal']). +'urn:example:neighbours'('urn:example:Portugal', ['urn:example:Spain']). +'urn:example:neighbours'('urn:example:Austria', ['urn:example:Czech_Republic', 'urn:example:Germany', 'urn:example:Hungary', 'urn:example:Italy', 'urn:example:Slovenia', 'urn:example:Slovakia']). +'urn:example:neighbours'('urn:example:Sweden', ['urn:example:Finland']). +'urn:example:neighbours'('urn:example:Finland', ['urn:example:Sweden']). +'urn:example:neighbours'('urn:example:Cyprus', []). +'urn:example:neighbours'('urn:example:Malta', []). +'urn:example:neighbours'('urn:example:Poland', ['urn:example:Germany', 'urn:example:Czech_Republic', 'urn:example:Slovakia', 'urn:example:Lithuania']). +'urn:example:neighbours'('urn:example:Hungary', ['urn:example:Austria', 'urn:example:Slovakia', 'urn:example:Romania', 'urn:example:Croatia', 'urn:example:Slovenia']). +'urn:example:neighbours'('urn:example:Czech_Republic', ['urn:example:Germany', 'urn:example:Poland', 'urn:example:Slovakia', 'urn:example:Austria']). +'urn:example:neighbours'('urn:example:Slovakia', ['urn:example:Czech_Republic', 'urn:example:Poland', 'urn:example:Hungary', 'urn:example:Austria']). +'urn:example:neighbours'('urn:example:Slovenia', ['urn:example:Austria', 'urn:example:Italy', 'urn:example:Hungary', 'urn:example:Croatia']). +'urn:example:neighbours'('urn:example:Estonia', ['urn:example:Latvia']). +'urn:example:neighbours'('urn:example:Latvia', ['urn:example:Estonia', 'urn:example:Lithuania']). +'urn:example:neighbours'('urn:example:Lithuania', ['urn:example:Latvia', 'urn:example:Poland']). +'urn:example:neighbours'('urn:example:Bulgaria', ['urn:example:Romania', 'urn:example:Greece']). +'urn:example:neighbours'('urn:example:Romania', ['urn:example:Hungary', 'urn:example:Bulgaria']). +'urn:example:neighbours'('urn:example:Croatia', ['urn:example:Slovenia', 'urn:example:Hungary']). + +% query +true := 'urn:example:colors'('urn:example:mapEU', _). diff --git a/logic-programming/fuse.pl b/logic-programming/fuse.pl new file mode 100644 index 000000000..976aa6063 --- /dev/null +++ b/logic-programming/fuse.pl @@ -0,0 +1,8 @@ +% inference fuse + +'urn:example:color'('urn:example:stone', 'urn:example:black'). +'urn:example:color'('urn:example:stone', 'urn:example:white'). + +false := + 'urn:example:color'(X, 'urn:example:black'), + 'urn:example:color'(X, 'urn:example:white'). diff --git a/logic-programming/gcc.pl b/logic-programming/gcc.pl new file mode 100644 index 000000000..054329a9b --- /dev/null +++ b/logic-programming/gcc.pl @@ -0,0 +1,49 @@ +% Gray Code Counter +% Code from the book "Clause and Effect" Chapter 8 + +'urn:example:gcc'([], _, []). +'urn:example:gcc'([C|Cs], S, [N|Ns]) :- + gcc(C, S, N), + 'urn:example:gcc'(Cs, N, Ns). + +gcc(C, [Qa, Qb, Qc], [Za, Zb, Zc]) :- + neta(Qa, Qb, D1), + netb(Qa, Qb, Qc, D2, D3), + dff(D1, C, Qc, Zc), + dff(D2, C, Qa, Za), + dff(D3, C, Qb, Zb). + +neta(A, B, Q) :- + and(A, B, T1), + inv(A, NA), + inv(B, NB), + and(NA, NB, T2), + or(T1, T2, Q). + +netb(A, B, C, Q1, Q2) :- + and(A, C, T1), + inv(C, NC), + and(B, NC, T2), + inv(A, NA), + and(NA, C, T3), + or(T1, T2, Q1), + or(T2, T3, Q2). + +dff(_, 0, Q, Q). +dff(D, 1, _, D). + +and(0, 0, 0). +and(0, 1, 0). +and(1, 0, 0). +and(1, 1, 1). + +or(0, 0, 0). +or(0, 1, 1). +or(1, 0, 1). +or(1, 1, 1). + +inv(0, 1). +inv(1, 0). + +% query +true := 'urn:example:gcc'([1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0], _). diff --git a/logic-programming/good-cobbler.pl b/logic-programming/good-cobbler.pl new file mode 100644 index 000000000..6e14a96be --- /dev/null +++ b/logic-programming/good-cobbler.pl @@ -0,0 +1,9 @@ +% Good Cobbler +% Example from https://shs.hal.science/halshs-04148373/document +% Using functional logic http://intrologic.stanford.edu/chapters/chapter_11.html + +% some x is a good cobbler +'urn:example:is'(_X, 'urn:example:good'('urn:example:Cobbler')) := true. + +% is there some x which is good at some y +true := ('urn:example:is'(_X, 'urn:example:good'(_)) := true). diff --git a/logic-programming/gps.pl b/logic-programming/gps.pl new file mode 100644 index 000000000..0cfdf08b4 --- /dev/null +++ b/logic-programming/gps.pl @@ -0,0 +1,118 @@ +% Goal driven Parallel Sequences -- Jos De Roo +% See background paper https://arxiv.org/pdf/2010.12027.pdf + +% find paths in the state space from initial state to goal state within limits +'urn:example:findpath'(_SCOPE, [Goal, Path, Duration, Cost, Belief, Comfort, Limits]) :- + findpaths([], Goal, [], 0.0, 0.0, 1.0, 1.0, Path, Duration, Cost, Belief, Comfort, Limits). + +findpaths(_Maps, Goal, Path, Duration, Cost, Belief, Comfort, Path, Duration, Cost, Belief, Comfort, _Limits) :- + Goal, + !. +findpaths(Maps_s, Goal, Path_s, Duration_s, Cost_s, Belief_s, Comfort_s, Path, Duration, Cost, Belief, Comfort, Limits) :- + Limits = [MaxDuration, MaxCost, MinBelief, MinComfort, MaxStagecount], + clause('urn:example:description'(Map, [From, Transition, To, Action, Duration_n, Cost_n, Belief_n, Comfort_n]), Where), + From, + Where, + 'urn:example:description'(Map, [From, Transition, To, Action, Duration_n, Cost_n, Belief_n, Comfort_n]), + append(Maps_s, [Map], Maps_t), + stagecount(Maps_t, Stagecount), + Stagecount =< MaxStagecount, + Duration_t is Duration_s+Duration_n, + Duration_t =< MaxDuration, + Cost_t is Cost_s+Cost_n, + Cost_t =< MaxCost, + Belief_t is Belief_s*Belief_n, + Belief_t >= MinBelief, + Comfort_t is Comfort_s*Comfort_n, + Comfort_t >= MinComfort, + append(Path_s, [Action], Path_t), + becomes(From, To), + call_cleanup(findpaths(Maps_t, Goal, Path_t, Duration_t, Cost_t, Belief_t, Comfort_t, Path, Duration, Cost, Belief, Comfort, Limits), becomes(To, From)). + +% counting the number of stages (a stage is a sequence of steps in the same map) +stagecount([], 1). +stagecount([C, E|_], B) :- + C \= E, + !, + stagecount(_, G), + B is G+1. +stagecount([_|D], B) :- + stagecount(D, B). + +% linear implication +becomes(A, B) :- + catch(A, _, fail), + conj_list(A, C), + forall(member(D, C), retract(D)), + conj_list(B, E), + forall(member(F, E), assertz(F)). + +% test data +:- dynamic('urn:example:location'/2). + +% partial map of Belgium +'urn:example:description'( + 'urn:example:map_be', + [ 'urn:example:location'(S, 'urn:example:gent'), + true, + 'urn:example:location'(S, 'urn:example:brugge'), + 'urn:example:drive_gent_brugge', + 1500.0, + 0.006, + 0.96, + 0.99 + ] +). +'urn:example:description'( + 'urn:example:map_be', + [ 'urn:example:location'(S, 'urn:example:gent'), + true, + 'urn:example:location'(S, 'urn:example:kortrijk'), + 'urn:example:drive_gent_kortrijk', + 1600.0, + 0.007, + 0.96, + 0.99 + ] +). +'urn:example:description'( + 'urn:example:map_be', + [ 'urn:example:location'(S, 'urn:example:kortrijk'), + true, + 'urn:example:location'(S, 'urn:example:brugge'), + 'urn:example:drive_kortrijk_brugge', + 1600.0, + 0.007, + 0.96, + 0.99 + ] +). +'urn:example:description'( + 'urn:example:map_be', + [ 'urn:example:location'(S, 'urn:example:brugge'), + true, + 'urn:example:location'(S, 'urn:example:oostende'), + 'urn:example:drive_brugge_oostende', + 900.0, + 0.004, + 0.98, + 1.0 + ] +). + +% current state +'urn:example:location'('urn:example:i1', 'urn:example:gent'). + +% query +true := + 'urn:example:findpath'( + 'urn:example:map_be', + [ 'urn:example:location'(_SUBJECT, 'urn:example:oostende'), + _PATH, + _DURATION, + _COST, + _BELIEF, + _COMFORT, + [5000.0, 5.0, 0.2, 0.4, 1] + ] + ). diff --git a/logic-programming/graph.pl b/logic-programming/graph.pl new file mode 100644 index 000000000..abfcc2270 --- /dev/null +++ b/logic-programming/graph.pl @@ -0,0 +1,21 @@ +% Traversing graph paths + +'urn:example:oneway'('urn:example:paris', 'urn:example:orleans'). +'urn:example:oneway'('urn:example:paris', 'urn:example:chartres'). +'urn:example:oneway'('urn:example:paris', 'urn:example:amiens'). +'urn:example:oneway'('urn:example:orleans', 'urn:example:blois'). +'urn:example:oneway'('urn:example:orleans', 'urn:example:bourges'). +'urn:example:oneway'('urn:example:blois', 'urn:example:tours'). +'urn:example:oneway'('urn:example:chartres', 'urn:example:lemans'). +'urn:example:oneway'('urn:example:lemans', 'urn:example:angers'). +'urn:example:oneway'('urn:example:lemans', 'urn:example:tours'). +'urn:example:oneway'('urn:example:angers', 'urn:example:nantes'). + +'urn:example:path'(A, B) := + 'urn:example:oneway'(A, B). +'urn:example:path'(A, C) := + 'urn:example:path'(A, B), + 'urn:example:path'(B, C). + +% query +true := 'urn:example:path'(_, 'urn:example:nantes'). diff --git a/logic-programming/hanoi.pl b/logic-programming/hanoi.pl new file mode 100644 index 000000000..f9c8dc1ae --- /dev/null +++ b/logic-programming/hanoi.pl @@ -0,0 +1,12 @@ +% Towers of Hanoi +% See https://en.wikipedia.org/wiki/Tower_of_Hanoi + +'urn:example:move'(0, [_, _, _]) :- + !. +'urn:example:move'(N, [A, B, C]) :- + M is N-1, + 'urn:example:move'(M, [A, C, B]), + 'urn:example:move'(M, [C, B, A]). + +% query +true := 'urn:example:move'(14, [left, centre, right]). diff --git a/logic-programming/lee.pl b/logic-programming/lee.pl new file mode 100644 index 000000000..b235af901 --- /dev/null +++ b/logic-programming/lee.pl @@ -0,0 +1,68 @@ +% Lee routing for VLSI circuits +% Code from the book "The Art of Prolog" Chapter 16 + +'urn:example:route'([Source, Destination, Obstacles], Path) :- + waves(Destination, [[Source], []], Obstacles, Waves), + path(Source, Destination, Waves, Path). + +% waves(Destination, Wavessofar, Obstacles, Waves) +waves(B, [Wave|Waves], _, Waves) :- + member(B, Wave), + !. +waves(B, [Wave, LastWave|LastWaves], Obstacles, Waves) :- + next_wave(Wave, LastWave, Obstacles, NextWave), + waves(B, [NextWave, Wave, LastWave|LastWaves], Obstacles, Waves). + +% next_waves(Wave, LastWave, Obstacles, NextWave) +next_wave(Wave, LastWave, Obstacles, NextWave) :- + setof(X, admissible(X, Wave, LastWave, Obstacles), NextWave). + +admissible(X, Wave, LastWave, Obstacles) :- + adjacent(X, Wave, Obstacles), + \+ member(X, LastWave), + \+ member(X, Wave). + +adjacent(X, Wave, Obstacles) :- + member(X1, Wave), + neighbor(X1, X), + \+ obstructed(X, Obstacles). + +neighbor([X1, Y], [X2, Y]) :- + next_to(X1, X2). +neighbor([X, Y1], [X, Y2]) :- + next_to(Y1, Y2). + +next_to(X, X1) :- + X1 is X+1. +next_to(X, X1) :- + X > 0, + X1 is X-1. + +obstructed(Point, Obstacles) :- + member(Obstacle, Obstacles), + obstructs(Point, Obstacle). + +obstructs([X, Y], [[X, Y1], [_, Y2]]) :- + Y1 =< Y, + Y =< Y2. +obstructs([X, Y], [[_, Y1], [X, Y2]]) :- + Y1 =< Y, + Y =< Y2. +obstructs([X, Y], [[X1, Y], [X2, _]]) :- + X1 =< X, + X =< X2. +obstructs([X, Y], [[X1, _], [X2, Y]]) :- + X1 =< X, + X =< X2. + +% path(Source, Destination, Waves, Path) +path(A, A, _, [A]) :- + !. +path(A, B, [Wave|Waves], [B|Path]) :- + member(B1, Wave), + neighbor(B, B1), + !, + path(A, B1, Waves, Path). + +% query +true := 'urn:example:route'([[1, 1], [9, 8], [[[2, 3], [4, 5]], [[6, 6], [8, 8]]]], _). diff --git a/logic-programming/matrix.pl b/logic-programming/matrix.pl new file mode 100644 index 000000000..711928522 --- /dev/null +++ b/logic-programming/matrix.pl @@ -0,0 +1,279 @@ +% See https://en.wikipedia.org/wiki/Matrix_(mathematics) +% Original code from https://github.com/friguzzi/matrix + +% This module performs matrix operations. +% Impemented operations: +% - sum +% - difference +% - multiplication +% - Cholesky decomposition https://en.wikipedia.org/wiki/Cholesky_decomposition +% - determinant for positive semi-definite matrices (using Cholesky decomposition) +% - inversion for positive semi-definite matrices (using Cholesky decomposition) +% - inversion for lower triangular matrices +% +% The library was developed for dealing with multivariate Gaussian distributions, +% thats the reson for the focus on positive semi-definite matrices +% +% @author Fabrizio Riguzzi +% @license Artistic License 2.0 +% @copyright Fabrizio Riguzzi + +:- use_module(library(apply)). +:- use_module(library(clpfd)). + +%% matrix_div_scal(+A, +V, -B) is det. +% divide matrix A by scalar V +% +matrix_div_scal(A, V, B) :- + maplist(maplist(div(V)), A, B). + +div(A, B, C) :- + C is B/A. +%% matrix_mult_scal(+A, +V, -B) is det. +% multiply matrix A by scalar V +% +matrix_mult_scal(A, V, B) :- + maplist(maplist(mult(V)), A, B). + +mult(A, B, C) :- + C is A*B. + +%% 'urn:example:determinant'(+A, -D) is det. +% computes the determinant for a positive semi-definite matrix. +% Uses the Cholenski decomposition +% == +% := 'urn:example:determinant'([[2, -1, 0], [-1, 2, -1], [0, -1, 2]], D). +% D = 3.999999999999999. +% == +'urn:example:determinant'(A, Det) :- + 'urn:example:cholesky_decomposition'(A, L), + get_diagonal(L, D), + foldl(prod, D, 1, DetL), + Det is DetL*DetL. + +prod(A, P0, P) :- + P is P0*A. + +%% 'urn:example:matrix_inversion'(+M, -IM) is det. +% inversion of a positive semi-definite matrix. Uses the Cholenski +% decomposition +% == +% := 'urn:example:matrix_inversion'([[2, -1, 0], [-1, 2, -1], [0, -1, 2]], L). +% L = [[0.7499999999999999, 0.5000000000000001, 0.2500000000000001], [0.5000000000000001, 1.0000000000000004, 0.5000000000000002], [0.2500000000000001, 0.5000000000000002, 0.7500000000000001]]. +% == +'urn:example:matrix_inversion'(A, B) :- + 'urn:example:cholesky_decomposition'(A, L), + 'urn:example:matrix_inv_triang'(L, LI), + transpose(LI, LIT), + 'urn:example:matrix_multiply'([LIT, LI], B). + +%% 'urn:example:matrix_inv_triang'(+M, -IM) is det. +% inversion of a lower triangular matrix +% code from +% http://www.mymathlib.com/c_source/matrices/linearsystems/unit_lower_triangular.c +% http://www.mcs.csueastbay.edu/~malek/TeX/Triangle.pdf +% code from +% == +% := 'urn:example:matrix_inv_triang'([[2, 0, 0], [-1, 2, 0], [0, -1, 2]], L). +% L = [[0.5, 0.0, 0.0], [0.25, 0.5, 0.0], [0.125, 0.25, 0.5]]. +% == +'urn:example:matrix_inv_triang'(L1, L2) :- + get_diagonal(L1, D), + maplist(inv, D, ID), + length(ID, N), + NN is N*N, + listd(NN, N, ID, L0), + identify_rows(L0, N, IDM), + 'urn:example:matrix_multiply'([IDM, L1], LL1), + append(LL1, LT), + length(LL1, N), + matrix_inv_i(1, N, LT, LTT), + identify_rows(LTT, N, LL2), + 'urn:example:matrix_multiply'([LL2, IDM], L2). + +matrix_inv_i(N, N, LT, LT) :- + !. +matrix_inv_i(I, N, LT, LTTT) :- + matrix_inv_j(0, I, N, LT, LTT), + I1 is I+1, + matrix_inv_i(I1, N, LTT, LTTT). + +matrix_inv_j(I, I, _N, LT, LT) :- + !. +matrix_inv_j(I, I, _N, LT, LT) :- + !. +matrix_inv_j(J, I, N, LT, LTTTT) :- + get_v(I, J, N, LT, Vij), + V_ij is -Vij, + set_v(I, J, N, LT, LTT, V_ij), + J1 is J+1, + matrix_inv_k(J1, J, I, N, LTT, LTTT), + matrix_inv_j(J1, I, N, LTTT, LTTTT). + +matrix_inv_k(I, _J, I, _N, LT, LT) :- + !. +matrix_inv_k(K, J, I, N, LT, LTTT) :- + get_v(I, K, N, LT, Vik), + get_v(K, J, N, LT, Vkj), + get_v(I, J, N, LT, Vij), + NVij is Vij-Vik*Vkj, + set_v(I, J, N, LT, LTT, NVij), + K1 is K+1, + matrix_inv_k(K1, J, I, N, LTT, LTTT). + +inv(A, B) :- + B is 1.0/A. + +get_diagonal(L, D) :- + length(L, N), + append(L, LT), + get_diag(0, N, LT, D). + +get_diag(N, N, _L, []) :- + !. +get_diag(N0, N, L, [H|R]) :- + get_v(N0, N0, N, L, H), + N1 is N0+1, + get_diag(N1, N, L, R). + +%% 'urn:example:matrix_multiply'([+X, +Y], -M) is det. +% +% X(N*P), Y(P*M), M(N*M) +% == +% := 'urn:example:matrix_multiply'([[[1, 2], [3, 4], [5, 6]], [[1, 1, 1], [1, 1, 1]]], R). +% R = [[3, 3, 3], [7, 7, 7], [11, 11, 11]]. +% == +% code from http://stackoverflow.com/questions/34206275/matrix-multiplication-with-prolog +'urn:example:matrix_multiply'([X, Y], M) :- + matrix_mul(X, Y, M0), + maplist(maplist(is), M, M0). + +matrix_mul(X, Y, M) :- + transpose(Y, T), + maplist(row_multiply(T), X, M). + +row_multiply(T, X, M) :- + maplist(dot_product(X), T, M). + +%% dot_product(+X, +Y, -D) is det. +% computes the dot produce of two vectors +% +dot_product([X|Xs], [T|Ts], M) :- + foldl(mul, Xs, Ts, X*T, M). + +mul(X, T, M, M+X*T). + +%% matrix_diff(+A, +B, -C) is det +matrix_diff(X, Y, S) :- + maplist(maplist(diff), X, Y, S). + +diff(A, B, C) :- + C is A-B. + +%% 'urn:example:matrix_sum'([+A, +B], -C) is det +% == +% := 'urn:example:matrix_sum'([[[1, 2], [3, 4], [5, 6]], [[1, 2], [3, 4], [5, 6]]], M). +% == +'urn:example:matrix_sum'([X, Y], S) :- + maplist(maplist(plus), X, Y, S). + +plus(A, B, C) :- + C is A+B. + +%% 'urn:example:cholesky_decomposition'(+A, -L) is det. +% computes the Cholesky decomposition of a positive semi-definite matrix +% code from https://rosettacode.org/wiki/Cholesky_decomposition#C +% == +% := 'urn:example:cholesky_decomposition'([[25, 15, -5], [15, 18, 0], [-5, 0, 11]], L). +% L = [[5.0, 0, 0], [3.0, 3.0, 0], [-1.0, 1.0, 3.0]]. +% := 'urn:example:cholesky_decomposition'([[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], L). +% L = [[4.242640687119285, 0, 0, 0], [5.185449728701349, 6.565905201197403, 0, 0], [12.727922061357857, 3.0460384954008553, 1.6497422479090704, 0], [9.899494936611667, 1.624553864213788, 1.8497110052313648, 1.3926212476456026]]. +% == +'urn:example:cholesky_decomposition'(A, L) :- + append(A, AL), + length(AL, NL), + list0(NL, LL), + length(A, N), + cholesky_i(0, N, AL, LL, LLL), + identify_rows(LLL, N, L). + +cholesky_i(N, N, _A, L, L) :- + !. +cholesky_i(I, N, A, L, LLL) :- + cholesky_j(0, I, N, A, L, LL), + I1 is I+1, + cholesky_i(I1, N, A, LL, LLL). + +cholesky_j(I, I, N, A, L, LLL) :- + !, + cholesky_k(0, I, I, N, 0, S, L, LL), + get_v(I, I, N, A, Aii), + V is sqrt(Aii-S), + set_v(I, I, N, LL, LLL, V). +cholesky_j(J, I, N, A, L, LLLL) :- + cholesky_k(0, J, I, N, 0, S, L, LL), + get_v(I, J, N, A, Aij), + get_v(J, J, N, LL, Ljj), + V is 1.0/Ljj*(Aij-S), + set_v(I, J, N, LL, LLL, V), + J1 is J+1, + cholesky_j(J1, I, N, A, LLL, LLLL). + +cholesky_k(J, J, _I, _N, S, S, L, L) :- + !. +cholesky_k(K, J, I, N, S0, S, L, LL) :- + get_v(I, K, N, L, Lik), + get_v(J, K, N, L, Ljk), + S1 is S0+Lik*Ljk, + K1 is K+1, + cholesky_k(K1, J, I, N, S1, S, L, LL). + +get_v(I, J, N, M, V) :- + E is I*N+J, + append(C, [V|_D], M), + length(C, E), + !. + +set_v(I, J, N, M, MM, V) :- + E is I*N+J, + append(C, [_|D], M), + length(C, E), + !, + append(C, [V|D], MM). + +identify_rows([], _N, []) :- + !. +identify_rows(E, N, [R|L]) :- + length(R, N), + append(R, Rest, E), + identify_rows(Rest, N, L). + +%% list0(+N, -L) is det +% returns a list of N zeros +list0(0, []) :- + !. +list0(N, [0|T]) :- + N1 is N-1, + list0(N1, T). + +listd(0, _D, _L, []) :- + !. +listd(N, D, [E|R], [E|T]) :- + N rem (D+1) =:= 1, + !, + N1 is N-1, + listd(N1, D, R, T). +listd(N, D, L, [0|T]) :- + N1 is N-1, + listd(N1, D, L, T). + +% queries +true := 'urn:example:determinant'([[2, -1, 0], [-1, 2, -1], [0, -1, 2]], _). +true := 'urn:example:matrix_inversion'([[2, -1, 0], [-1, 2, -1], [0, -1, 2]], _). +true := 'urn:example:matrix_inversion'([[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], _). +true := 'urn:example:matrix_inv_triang'([[2, 0, 0], [-1, 2, 0], [0, -1, 2]], _). +true := 'urn:example:matrix_multiply'([[[1, 2], [3, 4], [5, 6]], [[1, 1, 1], [1, 1, 1]]], _). +true := 'urn:example:matrix_multiply'([[[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], [[2.515624999999984, 0.4843749999999933, -1.296874999999973, 0.3593749999999767], [0.4843749999999933, 0.1406249999999978, -0.3281249999999918, 0.1406249999999936], [-1.296874999999973, -0.3281249999999918, 1.015624999999971, -0.5781249999999781], [0.3593749999999767, 0.1406249999999936, -0.5781249999999781, 0.5156249999999853]]], _). +true := 'urn:example:matrix_sum'([[[1, 2], [3, 4], [5, 6]], [[1, 2], [3, 4], [5, 6]]], _). +true := 'urn:example:cholesky_decomposition'([[25, 15, -5], [15, 18, 0], [-5, 0, 11]], _). +true := 'urn:example:cholesky_decomposition'([[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], _). diff --git a/logic-programming/mi.pl b/logic-programming/mi.pl new file mode 100644 index 000000000..b035fb0c3 --- /dev/null +++ b/logic-programming/mi.pl @@ -0,0 +1,25 @@ +% Meta-interpretation +% Original code from https://www.youtube.com/watch?v=nmBkU-l1zyc&t=1870s + +'urn:example:mi'([], []). +'urn:example:mi'([G|Gs], []) :- + head_body_(G, Goals, Gs), + 'urn:example:mi'(Goals, []). + +head_body_('urn:example:mi'([], []), Rs, Rs). +head_body_('urn:example:mi'([G|Gs], []), [head_body_(G, Goals, Gs), 'urn:example:mi'(Goals, [])|Rs], Rs). + +head_body_(head_body_(Head, Goals0, Goals), Rs, Rs) :- + head_body_(Head, Goals0, Goals). + +head_body_('urn:example:factorial'(0, s(0)), Rs, Rs). +head_body_('urn:example:factorial'(s(N), F), ['urn:example:factorial'(N, F1), prod(s(N), F1, F)|Rs], Rs). + +head_body_(prod(0, _, 0), Rs, Rs). +head_body_(prod(s(N), M, P), [prod(N, M, K), sum(K, M, P)|Rs], Rs). + +head_body_(sum(0, M, M), Rs, Rs). +head_body_(sum(s(N), M, s(K)), [sum(N, M, K)|Rs], Rs). + +% query +true := 'urn:example:mi'(['urn:example:mi'(['urn:example:factorial'(s(s(s(s(s(0))))), _)], [])], []). diff --git a/logic-programming/multi-agent.pl b/logic-programming/multi-agent.pl new file mode 100644 index 000000000..db1c9ae77 --- /dev/null +++ b/logic-programming/multi-agent.pl @@ -0,0 +1,87 @@ +% multi-agent example +% obligations, permissions and prohibitions depend on the roles, goals and interactions between agents + +:- dynamic('urn:example:completed'/1). + +% define agents +'urn:example:agent'('urn:example:agent1'). +'urn:example:agent'('urn:example:agent2'). + +% define roles +'urn:example:role'('urn:example:agent1', 'urn:example:manager'). +'urn:example:role'('urn:example:agent2', 'urn:example:employee'). + +% define tasks and deadlines +'urn:example:task'('urn:example:task1'). +'urn:example:deadline'('urn:example:task1', 10). + +% current time +'urn:example:time:current'(15). + +% task assignment +'urn:example:assigned'('urn:example:task1', 'urn:example:agent2'). + +% task reporting +'urn:example:reported'('urn:example:task1', 'urn:example:agent2'). + +% obligations +'urn:example:obligatory'('urn:example:assign:task'(Manager, Employee, Task)) := + 'urn:example:role'(Manager, 'urn:example:manager'), + 'urn:example:role'(Employee, 'urn:example:employee'), + 'urn:example:task'(Task), + \+'urn:example:assigned'(Task, Employee). + +'urn:example:obligatory'('urn:example:report:progress'(Employee, Task)) := + 'urn:example:assigned'(Task, Employee), + \+'urn:example:reported'(Task, Employee). + +'urn:example:obligatory'('urn:example:complete:task'(Employee, Task)) := + 'urn:example:assigned'(Task, Employee). + +'urn:example:obligatory'('urn:example:escalate:task'(Manager, Task)) := + 'urn:example:role'(Manager, 'urn:example:manager'), + 'urn:example:assigned'(Task, _Employee), + 'urn:example:deadline'(Task, Time), + 'urn:example:time:current'(T), + T >= Time, + \+'urn:example:completed'(Task). + +% permissions +'urn:example:permitted'('urn:example:execute:task'(Employee, Task)) := + 'urn:example:role'(Employee, 'urn:example:employee'), + 'urn:example:assigned'(Task, Employee). + +% prohibitions +'urn:example:forbidden'('urn:example:modify:task'(Agent, Task)) := + \+'urn:example:assigned'(Agent, Task). + +% conflict detection +'urn:example:conflict'(Action) := + 'urn:example:obligatory'(Action), + 'urn:example:forbidden'(Action). + +% resolve conflicts with priority +'urn:example:resolve:conflict'(Action) := + 'urn:example:role'(_Agent, 'urn:example:manager'), + 'urn:example:conflict'(Action), + 'urn:example:obligatory'(Action). + +% violations +'urn:example:violation'(Task) := + 'urn:example:obligatory'('urn:example:complete:task'(_Employee, Task)), + 'urn:example:time:current'(T), + 'urn:example:deadline'(Task, Time), + T > Time, + \+'urn:example:completed'(Task). + +% sanctions +'urn:example:sanction'(Employee) := + 'urn:example:violation'(Task), + 'urn:example:assigned'(Task, Employee). + +% queries +true := 'urn:example:obligatory'(_Action). +true := 'urn:example:permitted'(_Action). +true := 'urn:example:forbidden'(_Action). +true := 'urn:example:violation'(_Task). +true := 'urn:example:sanction'(_Employee). diff --git a/logic-programming/output/ackermann.pl b/logic-programming/output/ackermann.pl new file mode 100644 index 000000000..7a07b86e0 --- /dev/null +++ b/logic-programming/output/ackermann.pl @@ -0,0 +1,13 @@ +:- op(1200, xfx, :=). + +answer('urn:example:ackermann'([0, 6], 7)). +answer('urn:example:ackermann'([1, 2], 4)). +answer('urn:example:ackermann'([1, 7], 9)). +answer('urn:example:ackermann'([2, 2], 7)). +answer('urn:example:ackermann'([2, 9], 21)). +answer('urn:example:ackermann'([3, 4], 125)). +answer('urn:example:ackermann'([3, 14], 131069)). +answer('urn:example:ackermann'([4, 0], 13)). +answer('urn:example:ackermann'([4, 1], 65533)). +answer('urn:example:ackermann'([4, 2], 2003529930406846464979072351560255750447825475569751419265016973710894059556311453089506130880933348101038234342907263181822949382118812668869506364761547029165041871916351587966347219442930927982084309104855990570159318959639524863372367203002916969592156108764948889254090805911457037675208500206671563702366126359747144807111774815880914135742720967190151836282560618091458852699826141425030123391108273603843767876449043205960379124490905707560314035076162562476031863793126484703743782954975613770981604614413308692118102485959152380195331030292162800160568670105651646750568038741529463842244845292537361442533614373729088303794601274724958414864915930647252015155693922628180691650796381064132275307267143998158508811292628901134237782705567421080070065283963322155077831214288551675554073345107213112427399562982719769150054883905223804357045848197956393157853510018992000024141963706813559840464039472194016069517690156119726982337890017641517190051133466306898140219383481435426387306539552969691388024158161859561100640362119796101859534802787167200122604642492385111393400464351623867567078745259464670903886547743483217897012764455529409092021959585751622973333576159552394885297579954028471943529913543763705986928913757153740001986394332464890052543106629669165243419174691389632476560289415199775477703138064781342309596190960654591300890188887588084733625956065444888501447335706058817090162108499714529568344061979690565469813631162053579369791403236328496233046421066136200220175787851857409162050489711781820400187282939943446186224328009837323764931814789848119452713007440220765680910376203999203492023906626264491909167985461515778839060397720759279378852241294301017458086862263369284725851403039615558564330385450688652213114813638408384778263790459607186876728509763471271988890680478243230394718650525660978150729861141430305816927924971409161059417185352275887504477592218301158780701975535722241400019548102005661773589781499532325208589753463547007786690406429016763808161740550405117670093673202804549339027992491867306539931640720492238474815280619166900933805732120816350707634351669869625020969023162859350071874190579161241536897514808261904847946571736601005892476655445840838334790544144817684255327207315586349347605137419779525190365032198020108764738368682531025183377533908861426184800374008082238104076468878471647552945326947661700424461063311238021134588694532200116564076327023074292426051582811070387018345324567635625951430032037432740780879056283663406965030844225855967039271869461158513793386475699748568670079823960604393478850861649260304945061743412365828352144806726676841807083754862211408236579802961200027441324438432402331257403545019352428776430880232850855886089962774458164680857875115807014743763867976955049991643998284357290415378143438847303484261903388841494031366139854257635577105335580206622185577060082551288893332226436281984838613239570676191409638533832374343758830859233722284644287996245605476932428998432652677378373173288063210753211238680604674708428051166488709084770291208161104912555598322366244868556651402684641209694982590565519216188104341226838996283071654868525536914850299539675503954938371853405900096187489473992880432496373165753803673586710175783994818471798498246948060532081996066183434012476096639519778021441199752546704080608499344178256285092726523709898651539462193004607364507926212975917698293892367015170992091531567814439791248475706237804600009918293321306880570046591458387208088016887445835557926258465124763087148566313528934166117490617526671492672176128330845273936469244582892571388877839056300482483799839692029222215486145902373478222682521639957440801727144146179559226175083889020074169926238300282286249284182671243405751424188569994272331606998712986882771820617214453142574944015066139463169197629181506579745526236191224848063890033669074365989226349564114665503062965960199720636202603521917776740668777463549375318899587866282125469797102065747232721372918144666659421872003474508942830911535189271114287108376159222380276605327823351661555149369375778466670145717971901227117812780450240026384758788339396817962950690798817121690686929538248529830023476068454114178139110648560236549754227497231007615131870024053910510913817843721791422528587432098524957878034683703337818421444017138688124249984418618129271198533315382567321870421530631197748535214670955334626336610864667332292409879849256691109516143618601548909740241913509623043612196128165950518666022030715613684732364660868905014263913906515063908199378852318365059897299125404479443425166774299659811849233151555272883274028352688442408752811283289980625912673699546247341543333500147231430612750390307397135252069338173843322950701049061867539433130784798015655130384758155685236218010419650255596181934986315913233036096461905990236112681196023441843363334594927631946101716652913823717182394299216272538461776065694542297877071383198817036964588689811863210976900355735884624464835706291453052757101278872027965364479724025405448132748391794128826423835171949197209797145936887537198729130831738033911016128547415377377715951728084111627597186384924222802373441925469991983672192131287035585307966942713416391033882754318613643490100943197409047331014476299861725424423355612237435715825933382804986243892498222780715951762757847109475119033482241412025182688713728193104253478196128440176479531505057110722974314569915223451643121848657575786528197564843508958384722923534559464521215831657751471298708225909292655638836651120681943836904116252668710044560243704200663709001941185557160472044643696932850060046928140507119069261393993902735534545567470314903886022024639948260501762431969305640666366626090207048887438898907498152865444381862917382901051820869936382661868303915273264581286782806601337500096593364625146091723180312930347877421234679118454791311109897794648216922505629399956793483801699157439700537542134485874586856047286751065423341893839099110586465595113646061055156838541217459801807133163612573079611168343863767667307354583494789788316330129240800836356825939157113130978030516441716682518346573675934198084958947940983292500086389778563494693212473426103062713745077286156922596628573857905533240641849018451328284632709269753830867308409142247659474439973348130810986399417379789657010687026734161967196591599588537834822988270125605842365589539690306474965584147981310997157542043256395776070485100881578291408250777738559790129129407309462785944505859412273194812753225152324801503466519048228961406646890305102510916237770448486230229488966711380555607956620732449373374027836767300203011615227008921843515652121379215748206859356920790214502277133099987729459596952817044582181956080965811702798062669891205061560742325686842271306295009864421853470810407128917646906550836129916694778023822502789667843489199409657361704586786242554006942516693979292624714524945408858422726153755260071904336329196375777502176005195800693847635789586878489536872122898557806826518192703632099480155874455575175312736471421295536494084385586615208012115079075068553344489258693283859653013272046970694571546959353658571788894862333292465202735853188533370948455403336565356988172582528918056635488363743793348411845580168331827676834646291995605513470039147876808640322629616641560667508153710646723108461964247537490553744805318226002710216400980584497526023035640038083472053149941172965736785066421400842696497103241919182121213206939769143923368374709228267738708132236680086924703491586840991153098315412063566123187504305467536983230827966457417620806593177265685841681837966106144963432544111706941700222657817358351259821080769101961052229263879745049019254311900620561906577452416191913187533984049343976823310298465893318373015809592522829206820862230332585280119266496314441316442773003237792274712330696417149945532261035475145631290668854345426869788447742981777493710117614651624183616680254815296335308490849943006763654806102940094693750609845588558043970485914449584445079978497045583550685408745163316464118083123079704389849190506587586425810738422420591191941674182490452700288263983057950057341711487031187142834184499153456702915280104485145176055306971441761368582384102787659324662689978418319620312262421177391477208004883578333569204533935953254564897028558589735505751235129536540502842081022785248776603574246366673148680279486052445782673626230852978265057114624846595914210278122788941448163994973881884622768244851622051817076722169863265701654316919742651230041757329904473537672536845792754365412826553581858046840069367718605020070547247548400805530424951854495267247261347318174742180078574693465447136036975884118029408039616746946288540679172138601225419503819704538417268006398820656328792839582708510919958839448297775647152026132871089526163417707151642899487953564854553553148754978134009964854498635824847690590033116961303766127923464323129706628411307427046202032013368350385425360313636763575212604707425311209233402837482949453104727418969287275572027615272268283376741393425652653283068469997597097750005560889932685025049212884068274139881631540456490350775871680074055685724021758685439053228133770707415830756269628316955687424060527726485853050611356384851965918968649596335568216975437621430778665934730450164822432964891270709898076676625671517269062058815549666382573829274182082278960684488222983394816670984039024283514306813767253460126007269262969468672750794346190439996618979611928750519442356402644303271737341591281496056168353988188569484045342311424613559925272330064881627466723523751234311893442118885085079358163848994487544756331689213869675574302737953785262542329024881047181939037220666894702204258836895840939998453560948869946833852579675161882159410981624918741813364726965123980677561947912557957446471427868624053750576104204267149366084980238274680575982591331006919941904651906531171908926077949119217946407355129633864523035673345588033313197080365457184791550432654899559705862888286866606618021882248602144999973122164138170653480175510438406624412822803616648904257377640956326482825258407669045608439490325290526337532316509087681336614242398309530806549661879381949120033919489494065132398816642080088395554942237096734840072642705701165089075196155370186264797456381187856175457113400473810762763014953309735174180655479112660938034311378532532883533352024934365979129341284854970946826329075830193072665337782559314331110963848053940859283988907796210479847919686876539987477095912788727475874439806779824968278272200926449944559380414608770641941810440758269805688038949654616587983904660587645341810289907194293021774519976104495043196841503455514044820928933378657363052830619990077748726922998608279053171691876578860908941817057993404890218441559791092676862796597583952483926734883634745651687016166240642424241228961118010615682342539392180052483454723779219911228595914191877491793823340010078128326506710281781396029120914720100947878752551263372884222353869490067927664511634758101193875319657242121476038284774774571704578610417385747911301908583877890152334343013005282797038580359815182929600305682612091950943737325454171056383887047528950563961029843641360935641632589408137981511693338619797339821670761004607980096016024823096943043806956620123213650140549586250615282588033022908385812478469315720323233601899469437647726721879376826431828382603564520699468630216048874528424363593558622333506235945002890558581611275341783750455936126130852640828051213873177490200249552738734585956405160830583053770732533971552620444705429573538361113677523169972740292941674204423248113875075631319078272188864053374694213842169928862940479635305150560788126366206497231257579019598873041195626227343728900516561111094111745277965482790471250581999077498063821559376885546498822938985408291325129076478386322494781016753491693489288104203015610283386143827378160946341335383578340765314321417150655877547820252454780657301342277470616744241968952613164274104695474621483756288299771804186785084546965619150908695874251184435837306590951460980451247409411373899927822492983367796011015387096129749705566301637307202750734759922943792393824427421186158236161317886392553095117188421298508307238259729144142251579403883011359083331651858234967221259621812507058113759495525022747274674369887131926670769299199084467161228738858457584622726573330753735572823951616964175198675012681745429323738294143824814377139861906716657572945807804820559511881687188075212971832636442155336787751274766940790117057509819575084563565217389544179875074523854455200133572033332379895074393905312918212255259833790909463630202185353848854825062897715616963860712382771725621313460549401770413581731931763370136332252819127547191443450920711848838366818174263342949611870091503049165339464763717766439120798347494627397822171502090670190302469762151278521956142070806461631373236517853976292092025500288962012970141379640038055734949269073535145961208674796547733692958773628635660143767964038430796864138563447801328261284589184898528048048844180821639423974014362903481665458114454366460032490618763039502356402044530748210241366895196644221339200757479128683805175150634662569391937740283512075666260829890491877287833852178522792045771846965855278790447562192663992008409302075673925363735628390829817577902153202106409617373283598494066652141198183810884515459772895164572131897797907491941013148368544639616904607030107596818933741217575988165127000761262789169510406315857637534787420070222051070891257612361658026806815858499852631465878086616800733264676830206391697203064894405628195406190685242003053463156621891327309069687353181641094514288036605995220248248886711554429104721929134248346438705368508648749099178812670565665387191049721820042371492740164460943459845392536706132210616533085662021188968234005752675486101476993688738209584552211571923479686888160853631615862880150395949418529489227074410828207169303387818084936204018255222271010985653444817207470756019245915599431072949578197878590578940052540122867517142511184356437184053563024181225473266093302710397968091064939272722683035410467632591355279683837705019855234621222858410557119921731717969804339317707750755627056047831779844447637560254637033369247114220815519973691371975163241302748712199863404548248524570118553342675264715978310731245663429805221455494156252724028915333354349341217862037007260315279870771872491234494477147909520734761385425485311552773301030342476835865496093722324007154518129732692081058424090557725645803681462234493189708138897143299831347617799679712453782310703739151473878692119187566700319321281896803322696594459286210607438827416919465162267632540665070881071030394178860564893769816734159025925194611823642945652669372203155504700213598846292758012527715422016629954863130324912311029627923723899766416803497141226527931907636326136814145516376656559839788489381733082668779901962886932296597379951931621187215455287394170243669885593888793316744533363119541518404088283815193421234122820030950313341050704760159987985472529190665222479319715440331794836837373220821885773341623856441380700541913530245943913502554531886454796252260251762928374330465102361057583514550739443339610216229675461415781127197001738611494279501411253280621254775810512972088465263158094806633687670147310733540717710876615935856814098212967730759197382973441445256688770855324570888958320993823432102718224114763732791357568615421252849657903335093152776925505845644010552192644505312073756287744998163646332835816140330175813967359427327690448920361880386754955751806890058532927201493923500525845146706982628548257883267398735220457228239290207144822219885587102896991935873074277815159757620764023951243860202032596596250212578349957710085626386118233813318509014686577064010676278617583772772895892746039403930337271873850536912957126715066896688493880885142943609962012966759079225082275313812849851526902931700263136328942095797577959327635531162066753488651317323872438748063513314512644889967589828812925480076425186586490241111127301357197181381602583178506932244007998656635371544088454866393181708395735780799059730839094881804060935959190907473960904410150516321749681412100765719177483767355751000733616922386537429079457803200042337452807566153042929014495780629634138383551783599764708851349004856973697965238695845994595592090709058956891451141412684505462117945026611750166928260250950770778211950432617383223562437601776799362796099368975191394965033358507155418436456852616674243688920371037495328425927131610537834980740739158633817967658425258036737206469351248652238481341663808061505704829059890696451936440018597120425723007316410009916987524260377362177763430621616744884930810929901009517974541564251204822086714586849255132444266777127863728211331536224301091824391243380214046242223349153559516890816288487989988273630445372432174280215755777967021666317047969728172483392841015642274507271779269399929740308072770395013581545142494049026536105825409373114653104943382484379718606937214444600826798002471229489405761853892203425608302697052876621377373594394224114707074072902725461307358541745691419446487624357682397065703184168467540733466346293673983620004041400714054277632480132742202685393698869787607009590048684650626771363070979821006557285101306601010780633743344773073478653881742681230743766066643312775356466578603715192922768440458273283243808212841218776132042460464900801054731426749260826922155637405486241717031027919996942645620955619816454547662045022411449404749349832206807191352767986747813458203859570413466177937228534940031631599544093684089572533438702986717829770373332806801764639502090023941931499115009105276821119510999063166150311585582835582607179410052528583611369961303442790173811787412061288182062023263849861515656451230047792967563618345768105043341769543067538041113928553792529241347339481050532025708728186307291158911335942014761872664291564036371927602306283840650425441742335464549987055318726887926424102147363698625463747159744354943443899730051742525110877357886390946812096673428152585919924857640488055071329814299359911463239919113959926752576359007446572810191805841807342227734721397723218231771716916400108826112549093361186780575722391018186168549108500885272274374212086524852372456248697662245384819298671129452945515497030585919307198497105414181636968976131126744027009648667545934567059936995464500558921628047976365686133316563907395703272034389175415267500915011198856872708848195531676931681272892143031376818016445477367518353497857924276463354162433601125960252109501612264110346083465648235597934274056868849224458745493776752120324703803035491157544831295275891939893680876327685438769557694881422844311998595700727521393176837831770339130423060958999137314684569010422095161967070506420256733873446115655276175992727151877660010238944760539789516945708802728736225121076224091810066700883474737605156285533943565843756271241244457651663064085939507947550920463932245202535463634444791755661725962187199279186575490857852950012840229035061514937310107009446151011613712423761426722541732055959202782129325725947146417224977321316381845326555279604270541871496236585252458648933254145062642337885651464670604298564781968461593663288954299780722542264790400616019751975007460545150060291806638271497016110987951336633771378434416194053121445291855180136575558667615019373029691932076120009255065081583275508499340768797252369987023567931026804136745718956641431852679054717169962990363015545645090044802789055701968328313630718997699153166679208958768572290600915472919636381673596673959975710326015571920237348580521128117458610065152598883843114511894880552129145775699146577530041384717124577965048175856395072895337539755822087777506072339445587895905719156733)). +answer('urn:example:ackermann'([5, 0], 65533)). diff --git a/logic-programming/output/acp.pl b/logic-programming/output/acp.pl new file mode 100644 index 000000000..168c44549 --- /dev/null +++ b/logic-programming/output/acp.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer(('urn:example:Policy'('urn:example:PolicyX'), 'urn:example:pass'('urn:example:PolicyX', 'urn:example:allOfTest'), 'urn:example:pass'('urn:example:PolicyX', 'urn:example:anyOfTest'), 'urn:example:pass'('urn:example:PolicyX', 'urn:example:noneOfTest'))). diff --git a/logic-programming/output/age.pl b/logic-programming/output/age.pl new file mode 100644 index 000000000..901e24441 --- /dev/null +++ b/logic-programming/output/age.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:ageAbove'('urn:example:patH', 80)). diff --git a/logic-programming/output/bmt.pl b/logic-programming/output/bmt.pl new file mode 100644 index 000000000..14a4efa36 --- /dev/null +++ b/logic-programming/output/bmt.pl @@ -0,0 +1,1520 @@ +:- op(1200, xfx, :=). + +answer('urn:example:cycle'('urn:example:i89', ['urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i89', ['urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i88', ['urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i88', ['urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i88', ['urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i94', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i93', ['urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i93', ['urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48', 'urn:example:i33', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i93', ['urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i93', ['urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69', 'urn:example:i54', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i93', ['urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i92', ['urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i92', ['urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84', 'urn:example:i45', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i98', ['urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i98', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i97', ['urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i97', ['urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i97', ['urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i97', ['urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69', 'urn:example:i18', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i97', ['urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i97', ['urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i48', 'urn:example:i33', 'urn:example:i69', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i96', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i48', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i95', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i9', ['urn:example:i9', 'urn:example:i84', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9', 'urn:example:i54', 'urn:example:i30', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i76', ['urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i76', ['urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78', 'urn:example:i60', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i75', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i74', ['urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i74', ['urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i74', ['urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57', 'urn:example:i27', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i74', ['urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60', 'urn:example:i33', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i74', ['urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i7', ['urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i7', ['urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i7', ['urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i7', ['urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i7', ['urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i7', ['urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84', 'urn:example:i72', 'urn:example:i57', 'urn:example:i18', 'urn:example:i75', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i81', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i39', 'urn:example:i3', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i79', ['urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9', 'urn:example:i69', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i78', ['urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i77', ['urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i77', ['urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i77', ['urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i77', ['urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96', 'urn:example:i69', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i83', ['urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i6', 'urn:example:i84', 'urn:example:i69', 'urn:example:i0', 'urn:example:i6', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i82', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i82', ['urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i60', 'urn:example:i21', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75', 'urn:example:i30', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i81', ['urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84', 'urn:example:i27', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45', 'urn:example:i12', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i42', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81', 'urn:example:i54', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i80', ['urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i86', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i84', ['urn:example:i93', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i51', 'urn:example:i30', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i60', ['urn:example:i99', 'urn:example:i33', 'urn:example:i12', 'urn:example:i63', 'urn:example:i93', 'urn:example:i27', 'urn:example:i39', 'urn:example:i48', 'urn:example:i42', 'urn:example:i45', 'urn:example:i99'])). +answer('urn:example:cycle'('urn:example:i59', ['urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i81', 'urn:example:i15', 'urn:example:i60', 'urn:example:i48', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9', 'urn:example:i0', 'urn:example:i63', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i5', ['urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9', 'urn:example:i93', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i64', ['urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i64', ['urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i64', ['urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i64', ['urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9', 'urn:example:i3', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i78', 'urn:example:i9', 'urn:example:i3', 'urn:example:i84', 'urn:example:i45', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i72', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i65', ['urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9', 'urn:example:i96', 'urn:example:i18', 'urn:example:i57', 'urn:example:i78', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i24', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i62', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i63', ['urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i63', ['urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i69', ['urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i69', ['urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i66', ['urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i67', ['urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9', 'urn:example:i15', 'urn:example:i15', 'urn:example:i54', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i71', ['urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i21', 'urn:example:i0', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i72', ['urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i6', ['urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i6', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18', 'urn:example:i0', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i87', 'urn:example:i69', 'urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i75', 'urn:example:i69', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i70', ['urn:example:i90', 'urn:example:i39', 'urn:example:i48', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i84', 'urn:example:i87', 'urn:example:i69', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i44', ['urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i44', ['urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i44', ['urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i44', ['urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i44', ['urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63', 'urn:example:i48', 'urn:example:i27', 'urn:example:i54', 'urn:example:i51', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i45', ['urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i4', ['urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i4', ['urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i78', 'urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i84', 'urn:example:i12', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i87', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i15', 'urn:example:i21', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i87', 'urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99', 'urn:example:i54', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i99', 'urn:example:i66', 'urn:example:i57', 'urn:example:i69', 'urn:example:i66', 'urn:example:i51', 'urn:example:i84', 'urn:example:i72', 'urn:example:i78', 'urn:example:i87', 'urn:example:i99'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i48', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i12', 'urn:example:i27', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i27', 'urn:example:i15', 'urn:example:i30', 'urn:example:i39', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i50', ['urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9', 'urn:example:i33', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i48', ['urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i48', ['urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i48', ['urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90', 'urn:example:i72', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i53', ['urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i53', ['urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i53', ['urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i53', ['urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i53', ['urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i53', ['urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96', 'urn:example:i6', 'urn:example:i21', 'urn:example:i75', 'urn:example:i78', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i54', ['urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i54', ['urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i54', ['urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i54', ['urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i54', ['urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9', 'urn:example:i51', 'urn:example:i66', 'urn:example:i33', 'urn:example:i96', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i52', ['urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i52', ['urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78', 'urn:example:i21', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i57', ['urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i57', ['urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i57', ['urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69', 'urn:example:i48', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i57', ['urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84', 'urn:example:i51', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i58', ['urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i58', ['urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i55', ['urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i55', ['urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i56', ['urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i56', ['urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i2', ['urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i2', ['urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i2', ['urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66', 'urn:example:i27', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63', 'urn:example:i0', 'urn:example:i33', 'urn:example:i15', 'urn:example:i60', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i32', ['urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90', 'urn:example:i6', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i31', ['urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i31', ['urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3', 'urn:example:i15', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i31', ['urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i34', ['urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i34', ['urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i34', ['urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i34', ['urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i34', ['urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i34', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i33', ['urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i72', 'urn:example:i24', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i24', 'urn:example:i84', 'urn:example:i51', 'urn:example:i36', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i36', ['urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93', 'urn:example:i36', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i35', ['urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i37', ['urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i3', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i39', ['urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90', 'urn:example:i90'])). +answer('urn:example:cycle'('urn:example:i39', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i43', ['urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i43', ['urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i42', ['urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i42', ['urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75', 'urn:example:i72', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i42', ['urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i42', ['urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i42', ['urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i87', 'urn:example:i27', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i45', 'urn:example:i93', 'urn:example:i39', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i16', ['urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93', 'urn:example:i63', 'urn:example:i21', 'urn:example:i42', 'urn:example:i45', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i36', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96', 'urn:example:i96'])). +answer('urn:example:cycle'('urn:example:i15', ['urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i18', ['urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i63', 'urn:example:i42', 'urn:example:i54', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i17', ['urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75', 'urn:example:i0', 'urn:example:i30', 'urn:example:i33', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i69', 'urn:example:i36', 'urn:example:i72', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i19', ['urn:example:i93', 'urn:example:i66', 'urn:example:i36', 'urn:example:i72', 'urn:example:i66', 'urn:example:i36', 'urn:example:i21', 'urn:example:i87', 'urn:example:i33', 'urn:example:i12', 'urn:example:i93'])). +answer('urn:example:cycle'('urn:example:i21', ['urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i25', ['urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27', 'urn:example:i27'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33', 'urn:example:i24', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57', 'urn:example:i57'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i24', ['urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87', 'urn:example:i60', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i27', ['urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21'])). +answer('urn:example:cycle'('urn:example:i27', ['urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i27', ['urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72', 'urn:example:i21', 'urn:example:i72'])). +answer('urn:example:cycle'('urn:example:i27', ['urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84', 'urn:example:i39', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i29', ['urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i29', ['urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78', 'urn:example:i18', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i28', ['urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87', 'urn:example:i81', 'urn:example:i15', 'urn:example:i36', 'urn:example:i6', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6', 'urn:example:i6'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84', 'urn:example:i75', 'urn:example:i84'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9', 'urn:example:i12', 'urn:example:i66', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i0', ['urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9', 'urn:example:i12', 'urn:example:i9'])). +answer('urn:example:cycle'('urn:example:i10', ['urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i10', ['urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33'])). +answer('urn:example:cycle'('urn:example:i10', ['urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i10', ['urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i10', ['urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87', 'urn:example:i15', 'urn:example:i78', 'urn:example:i60', 'urn:example:i33', 'urn:example:i87'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39', 'urn:example:i39'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3', 'urn:example:i3'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51'])). +answer('urn:example:cycle'('urn:example:i11', ['urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78', 'urn:example:i45', 'urn:example:i51', 'urn:example:i15', 'urn:example:i30', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i12', ['urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i12', ['urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66', 'urn:example:i66'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60', 'urn:example:i12', 'urn:example:i60'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81'])). +answer('urn:example:cycle'('urn:example:i13', ['urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87', 'urn:example:i45', 'urn:example:i48', 'urn:example:i78', 'urn:example:i81', 'urn:example:i87'])). diff --git a/logic-programming/output/complex.pl b/logic-programming/output/complex.pl new file mode 100644 index 000000000..af1e5e7b7 --- /dev/null +++ b/logic-programming/output/complex.pl @@ -0,0 +1,13 @@ +:- op(1200, xfx, :=). + +answer('urn:example:complex:quotient'([[1, 0], [0, 1]], [0, -1])). +answer('urn:example:complex:exponentiation'([[-1, 0], [0.5, 0]], [6.123233995736766e-17, 1.0])). +answer('urn:example:complex:exponentiation'([[e, 0], [0, pi]], [-1.0, 1.2246467991473532e-16])). +answer('urn:example:complex:log'([[e, 0], [-1, 0]], [0.0, 3.141592653589793])). +answer('urn:example:complex:log'([[0, 1], [0, 1]], [1.0, 0.0])). +answer('urn:example:complex:sin'([1.570796326794897, 1.316957896924817], [2.0000000000000004, -6.631275506809351e-16])). +answer('urn:example:complex:cos'([0, -1.316957896924817], [2.0000000000000004, 0.0])). +answer('urn:example:complex:tan'([1.338972522294493, 0.4023594781085251], [1.000000000000001, 1.9999999999999982])). +answer('urn:example:complex:asin'([2, 0], [1.5707963267948966, 1.3169578969248166])). +answer('urn:example:complex:acos'([2, 0], [0.0, -1.3169578969248166])). +answer('urn:example:complex:atan'([1, 2], [1.3389725222944935, 0.40235947810852507])). diff --git a/logic-programming/output/control.pl b/logic-programming/output/control.pl new file mode 100644 index 000000000..cca3aaa82 --- /dev/null +++ b/logic-programming/output/control.pl @@ -0,0 +1,4 @@ +:- op(1200, xfx, :=). + +answer('urn:example:control1'('urn:example:actuator1', 39.27346198678276)). +answer('urn:example:control1'('urn:example:actuator2', 26.08)). diff --git a/logic-programming/output/derivative.pl b/logic-programming/output/derivative.pl new file mode 100644 index 000000000..cda44b105 --- /dev/null +++ b/logic-programming/output/derivative.pl @@ -0,0 +1,6 @@ +:- op(1200, xfx, :=). + +answer('urn:example:derivative'((x+1)*((x^2+2)*(x^3+3)), x, (x^2+2)*(x^3+3)+(x+1)*(2*x*(x^3+3)+(x^2+2)*(3*x^2)))). +answer('urn:example:derivative'(x/x/x/x/x/x/x/x/x/x, x, (((((((((x-x)/x^2*x-x/x)/x^2*x-x/x/x)/x^2*x-x/x/x/x)/x^2*x-x/x/x/x/x)/x^2*x-x/x/x/x/x/x)/x^2*x-x/x/x/x/x/x/x)/x^2*x-x/x/x/x/x/x/x/x)/x^2*x-x/x/x/x/x/x/x/x/x)/x^2)). +answer('urn:example:derivative'(log(log(log(log(log(log(log(log(log(log(x)))))))))), x, 1/x/log(x)/log(log(x))/log(log(log(x)))/log(log(log(log(x))))/log(log(log(log(log(x)))))/log(log(log(log(log(log(x))))))/log(log(log(log(log(log(log(x)))))))/log(log(log(log(log(log(log(log(x))))))))/log(log(log(log(log(log(log(log(log(x))))))))))). +answer('urn:example:derivative'(x*x*x*x*x*x*x*x*x*x, x, ((((((((x+x)*x+x*x)*x+x*x*x)*x+x*x*x*x)*x+x*x*x*x*x)*x+x*x*x*x*x*x)*x+x*x*x*x*x*x*x)*x+x*x*x*x*x*x*x*x)*x+x*x*x*x*x*x*x*x*x)). diff --git a/logic-programming/output/dt.pl b/logic-programming/output/dt.pl new file mode 100644 index 000000000..36e19c7c4 --- /dev/null +++ b/logic-programming/output/dt.pl @@ -0,0 +1,30008 @@ +:- op(1200, xfx, :=). + +answer('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N10000')). + +% +% Proof steps +% + +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N0')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N0'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N0')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N0'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N0')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N0'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N10'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N10')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I10'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I10')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J10'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J10')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N11'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N10')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N10'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N11')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I11'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N10')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N10'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I11')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J11'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N10')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N10'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J11')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N12'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N11')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N11'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N12')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I12'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N11')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N11'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I12')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J12'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N11')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N11'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J12')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N13'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N12')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N12'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N13')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I13'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N12')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N12'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I13')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J13'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N12')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N12'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J13')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N14'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N13')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N13'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N14')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I14'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N13')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N13'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I14')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J14'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N13')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N13'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J14')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N15'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N14')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N14'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N15')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I15'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N14')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N14'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I15')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J15'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N14')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N14'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J15')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N16'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N15')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N15'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N16')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I16'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N15')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N15'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I16')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J16'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N15')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N15'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J16')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N17'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N16')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N16'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N17')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I17'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N16')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N16'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I17')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J17'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N16')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N16'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J17')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N18'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N17')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N17'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N18')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I18'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N17')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N17'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I18')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J18'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N17')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N17'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J18')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N19'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N18')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N18'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N19')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I19'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N18')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N18'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I19')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J19'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N18')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N18'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J19')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N20'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N19')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N19'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N20')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I20'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N19')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N19'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I20')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J20'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N19')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N19'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J20')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N21'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N20')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N20'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N21')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I21'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N20')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N20'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I21')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J21'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N20')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N20'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J21')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N22'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N21')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N21'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N22')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I22'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N21')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N21'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I22')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J22'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N21')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N21'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J22')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N23'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N22')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N22'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N23')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I23'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N22')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N22'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I23')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J23'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N22')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N22'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J23')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N24'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N23')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N23'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N24')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I24'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N23')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N23'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I24')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J24'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N23')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N23'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J24')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N25'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N24')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N24'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N25')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I25'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N24')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N24'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I25')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J25'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N24')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N24'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J25')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N26'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N25')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N25'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N26')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I26'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N25')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N25'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I26')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J26'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N25')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N25'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J26')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N27'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N26')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N26'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N27')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I27'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N26')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N26'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I27')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J27'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N26')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N26'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J27')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N28'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N27')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N27'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N28')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I28'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N27')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N27'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I28')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J28'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N27')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N27'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J28')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N29'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N28')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N28'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N29')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I29'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N28')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N28'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I29')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J29'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N28')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N28'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J29')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N30'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N29')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N29'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N30')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I30'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N29')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N29'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I30')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J30'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N29')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N29'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J30')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N31'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N30')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N30'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N31')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I31'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N30')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N30'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I31')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J31'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N30')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N30'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J31')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N32'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N31')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N31'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N32')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I32'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N31')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N31'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I32')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J32'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N31')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N31'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J32')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N33'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N32')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N32'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N33')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I33'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N32')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N32'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I33')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J33'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N32')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N32'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J33')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N34'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N33')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N33'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N34')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I34'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N33')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N33'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I34')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J34'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N33')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N33'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J34')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N35'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N34')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N34'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N35')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I35'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N34')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N34'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I35')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J35'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N34')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N34'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J35')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N36'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N35')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N35'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N36')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I36'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N35')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N35'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I36')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J36'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N35')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N35'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J36')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N37'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N36')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N36'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N37')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I37'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N36')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N36'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I37')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J37'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N36')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N36'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J37')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N38'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N37')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N37'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N38')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I38'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N37')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N37'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I38')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J38'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N37')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N37'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J38')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N39'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N38')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N38'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N39')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I39'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N38')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N38'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I39')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J39'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N38')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N38'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J39')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N40'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N39')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N39'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N40')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I40'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N39')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N39'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I40')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J40'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N39')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N39'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J40')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N41'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N40')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N40'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N41')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I41'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N40')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N40'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I41')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J41'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N40')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N40'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J41')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N42'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N41')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N41'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N42')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I42'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N41')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N41'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I42')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J42'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N41')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N41'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J42')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N43'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N42')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N42'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N43')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I43'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N42')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N42'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I43')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J43'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N42')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N42'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J43')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N44'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N43')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N43'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N44')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I44'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N43')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N43'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I44')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J44'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N43')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N43'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J44')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N45'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N44')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N44'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N45')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I45'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N44')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N44'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I45')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J45'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N44')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N44'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J45')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N46'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N45')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N45'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N46')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I46'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N45')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N45'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I46')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J46'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N45')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N45'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J46')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N47'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N46')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N46'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N47')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I47'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N46')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N46'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I47')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J47'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N46')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N46'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J47')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N48'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N47')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N47'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N48')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I48'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N47')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N47'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I48')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J48'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N47')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N47'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J48')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N49'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N48')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N48'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N49')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I49'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N48')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N48'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I49')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J49'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N48')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N48'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J49')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N50'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N49')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N49'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N50')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I50'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N49')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N49'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I50')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J50'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N49')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N49'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J50')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N51'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N50')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N50'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N51')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I51'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N50')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N50'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I51')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J51'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N50')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N50'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J51')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N52'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N51')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N51'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N52')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I52'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N51')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N51'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I52')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J52'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N51')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N51'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J52')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N53'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N52')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N52'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N53')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I53'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N52')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N52'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I53')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J53'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N52')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N52'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J53')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N54'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N53')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N53'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N54')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I54'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N53')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N53'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I54')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J54'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N53')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N53'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J54')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N55'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N54')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N54'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N55')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I55'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N54')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N54'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I55')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J55'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N54')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N54'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J55')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N56'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N55')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N55'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N56')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I56'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N55')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N55'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I56')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J56'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N55')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N55'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J56')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N57'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N56')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N56'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N57')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I57'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N56')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N56'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I57')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J57'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N56')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N56'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J57')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N58'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N57')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N57'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N58')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I58'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N57')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N57'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I58')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J58'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N57')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N57'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J58')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N59'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N58')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N58'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N59')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I59'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N58')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N58'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I59')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J59'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N58')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N58'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J59')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N60'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N59')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N59'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N60')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I60'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N59')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N59'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I60')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J60'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N59')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N59'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J60')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N61'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N60')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N60'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N61')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I61'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N60')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N60'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I61')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J61'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N60')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N60'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J61')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N62'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N61')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N61'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N62')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I62'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N61')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N61'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I62')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J62'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N61')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N61'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J62')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N63'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N62')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N62'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N63')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I63'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N62')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N62'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I63')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J63'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N62')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N62'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J63')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N64'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N63')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N63'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N64')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I64'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N63')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N63'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I64')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J64'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N63')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N63'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J64')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N65'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N64')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N64'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N65')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I65'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N64')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N64'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I65')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J65'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N64')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N64'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J65')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N66'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N65')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N65'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N66')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I66'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N65')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N65'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I66')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J66'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N65')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N65'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J66')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N67'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N66')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N66'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N67')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I67'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N66')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N66'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I67')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J67'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N66')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N66'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J67')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N68'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N67')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N67'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N68')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I68'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N67')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N67'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I68')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J68'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N67')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N67'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J68')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N69'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N68')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N68'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N69')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I69'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N68')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N68'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I69')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J69'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N68')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N68'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J69')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N70'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N69')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N69'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N70')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I70'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N69')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N69'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I70')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J70'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N69')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N69'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J70')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N71'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N70')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N70'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N71')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I71'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N70')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N70'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I71')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J71'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N70')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N70'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J71')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N72'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N71')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N71'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N72')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I72'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N71')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N71'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I72')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J72'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N71')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N71'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J72')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N73'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N72')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N72'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N73')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I73'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N72')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N72'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I73')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J73'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N72')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N72'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J73')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N74'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N73')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N73'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N74')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I74'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N73')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N73'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I74')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J74'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N73')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N73'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J74')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N75'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N74')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N74'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N75')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I75'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N74')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N74'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I75')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J75'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N74')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N74'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J75')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N76'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N75')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N75'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N76')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I76'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N75')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N75'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I76')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J76'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N75')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N75'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J76')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N77'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N76')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N76'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N77')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I77'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N76')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N76'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I77')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J77'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N76')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N76'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J77')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N78'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N77')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N77'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N78')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I78'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N77')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N77'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I78')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J78'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N77')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N77'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J78')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N79'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N78')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N78'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N79')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I79'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N78')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N78'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I79')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J79'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N78')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N78'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J79')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N80'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N79')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N79'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N80')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I80'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N79')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N79'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I80')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J80'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N79')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N79'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J80')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N81'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N80')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N80'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N81')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I81'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N80')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N80'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I81')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J81'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N80')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N80'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J81')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N82'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N81')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N81'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N82')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I82'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N81')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N81'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I82')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J82'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N81')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N81'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J82')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N83'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N82')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N82'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N83')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I83'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N82')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N82'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I83')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J83'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N82')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N82'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J83')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N84'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N83')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N83'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N84')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I84'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N83')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N83'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I84')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J84'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N83')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N83'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J84')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N85'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N84')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N84'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N85')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I85'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N84')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N84'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I85')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J85'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N84')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N84'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J85')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N86'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N85')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N85'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N86')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I86'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N85')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N85'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I86')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J86'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N85')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N85'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J86')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N87'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N86')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N86'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N87')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I87'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N86')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N86'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I87')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J87'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N86')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N86'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J87')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N88'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N87')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N87'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N88')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I88'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N87')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N87'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I88')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J88'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N87')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N87'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J88')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N89'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N88')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N88'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N89')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I89'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N88')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N88'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I89')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J89'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N88')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N88'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J89')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N90'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N89')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N89'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N90')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I90'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N89')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N89'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I90')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J90'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N89')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N89'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J90')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N91'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N90')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N90'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N91')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I91'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N90')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N90'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I91')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J91'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N90')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N90'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J91')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N92'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N91')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N91'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N92')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I92'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N91')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N91'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I92')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J92'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N91')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N91'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J92')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N93'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N92')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N92'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N93')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I93'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N92')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N92'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I93')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J93'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N92')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N92'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J93')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N94'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N93')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N93'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N94')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I94'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N93')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N93'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I94')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J94'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N93')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N93'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J94')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N95'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N94')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N94'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N95')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I95'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N94')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N94'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I95')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J95'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N94')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N94'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J95')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N96'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N95')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N95'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N96')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I96'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N95')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N95'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I96')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J96'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N95')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N95'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J96')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N97'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N96')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N96'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N97')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I97'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N96')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N96'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I97')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J97'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N96')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N96'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J97')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N98'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N97')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N97'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N98')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I98'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N97')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N97'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I98')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J98'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N97')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N97'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J98')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N99'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N98')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N98'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N99')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I99'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N98')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N98'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I99')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J99'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N98')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N98'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J99')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N99')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N99'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N99')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N99'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N99')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N99'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I1999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I1999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J1999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J1999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N1999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N1999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I2999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I2999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J2999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J2999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N2999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N2999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I3999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I3999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J3999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J3999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N3999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N3999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I4999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I4999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J4999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J4999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N4999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N4999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I5999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I5999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J5999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J5999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N5999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N5999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I6999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I6999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J6999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J6999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N6999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N6999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I7999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I7999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J7999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J7999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N7999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N7999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I8999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I8999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J8999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J8999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N8999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N8999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9001'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9000')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9000'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9001')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9002'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9001')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9001'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9002')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9003'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9002')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9002'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9003')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9004'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9003')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9003'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9004')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9005'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9004')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9004'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9005')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9006'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9005')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9005'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9006')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9007'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9006')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9006'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9007')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9008'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9007')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9007'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9008')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9009'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9008')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9008'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9009')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9010'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9009')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9009'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9010')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9011'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9010')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9010'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9011')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9012'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9011')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9011'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9012')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9013'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9012')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9012'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9013')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9014'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9013')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9013'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9014')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9015'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9014')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9014'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9015')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9016'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9015')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9015'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9016')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9017'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9016')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9016'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9017')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9018'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9017')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9017'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9018')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9019'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9018')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9018'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9019')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9020'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9019')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9019'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9020')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9021'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9020')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9020'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9021')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9022'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9021')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9021'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9022')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9023'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9022')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9022'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9023')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9024'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9023')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9023'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9024')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9025'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9024')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9024'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9025')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9026'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9025')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9025'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9026')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9027'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9026')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9026'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9027')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9028'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9027')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9027'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9028')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9029'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9028')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9028'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9029')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9030'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9029')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9029'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9030')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9031'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9030')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9030'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9031')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9032'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9031')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9031'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9032')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9033'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9032')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9032'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9033')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9034'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9033')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9033'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9034')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9035'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9034')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9034'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9035')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9036'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9035')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9035'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9036')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9037'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9036')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9036'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9037')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9038'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9037')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9037'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9038')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9039'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9038')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9038'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9039')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9040'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9039')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9039'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9040')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9041'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9040')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9040'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9041')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9042'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9041')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9041'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9042')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9043'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9042')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9042'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9043')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9044'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9043')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9043'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9044')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9045'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9044')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9044'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9045')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9046'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9045')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9045'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9046')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9047'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9046')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9046'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9047')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9048'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9047')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9047'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9048')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9049'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9048')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9048'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9049')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9050'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9049')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9049'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9050')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9051'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9050')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9050'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9051')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9052'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9051')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9051'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9052')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9053'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9052')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9052'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9053')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9054'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9053')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9053'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9054')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9055'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9054')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9054'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9055')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9056'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9055')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9055'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9056')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9057'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9056')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9056'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9057')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9058'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9057')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9057'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9058')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9059'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9058')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9058'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9059')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9060'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9059')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9059'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9060')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9061'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9060')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9060'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9061')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9062'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9061')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9061'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9062')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9063'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9062')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9062'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9063')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9064'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9063')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9063'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9064')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9065'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9064')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9064'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9065')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9066'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9065')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9065'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9066')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9067'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9066')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9066'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9067')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9068'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9067')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9067'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9068')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9069'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9068')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9068'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9069')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9070'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9069')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9069'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9070')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9071'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9070')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9070'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9071')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9072'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9071')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9071'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9072')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9073'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9072')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9072'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9073')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9074'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9073')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9073'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9074')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9075'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9074')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9074'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9075')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9076'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9075')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9075'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9076')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9077'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9076')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9076'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9077')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9078'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9077')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9077'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9078')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9079'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9078')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9078'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9079')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9080'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9079')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9079'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9080')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9081'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9080')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9080'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9081')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9082'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9081')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9081'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9082')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9083'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9082')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9082'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9083')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9084'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9083')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9083'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9084')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9085'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9084')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9084'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9085')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9086'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9085')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9085'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9086')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9087'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9086')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9086'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9087')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9088'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9087')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9087'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9088')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9089'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9088')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9088'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9089')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9090'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9089')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9089'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9090')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9091'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9090')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9090'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9091')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9092'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9091')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9091'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9092')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9093'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9092')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9092'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9093')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9094'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9093')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9093'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9094')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9095'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9094')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9094'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9095')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9096'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9095')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9095'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9096')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9097'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9096')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9096'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9097')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9098'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9097')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9097'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9098')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9099'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9098')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9098'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9099')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9100'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9099')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9099'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9100')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9101'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9100')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9100'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9101')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9102'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9101')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9101'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9102')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9103'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9102')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9102'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9103')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9104'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9103')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9103'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9104')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9105'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9104')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9104'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9105')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9106'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9105')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9105'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9106')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9107'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9106')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9106'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9107')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9108'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9107')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9107'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9108')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9109'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9108')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9108'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9109')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9110'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9109')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9109'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9110')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9111'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9110')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9110'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9111')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9112'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9111')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9111'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9112')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9113'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9112')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9112'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9113')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9114'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9113')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9113'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9114')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9115'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9114')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9114'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9115')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9116'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9115')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9115'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9116')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9117'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9116')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9116'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9117')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9118'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9117')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9117'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9118')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9119'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9118')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9118'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9119')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9120'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9119')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9119'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9120')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9121'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9120')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9120'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9121')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9122'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9121')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9121'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9122')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9123'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9122')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9122'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9123')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9124'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9123')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9123'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9124')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9125'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9124')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9124'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9125')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9126'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9125')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9125'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9126')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9127'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9126')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9126'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9127')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9128'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9127')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9127'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9128')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9129'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9128')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9128'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9129')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9130'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9129')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9129'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9130')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9131'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9130')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9130'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9131')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9132'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9131')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9131'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9132')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9133'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9132')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9132'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9133')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9134'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9133')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9133'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9134')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9135'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9134')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9134'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9135')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9136'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9135')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9135'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9136')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9137'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9136')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9136'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9137')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9138'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9137')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9137'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9138')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9139'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9138')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9138'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9139')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9140'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9139')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9139'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9140')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9141'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9140')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9140'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9141')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9142'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9141')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9141'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9142')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9143'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9142')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9142'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9143')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9144'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9143')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9143'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9144')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9145'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9144')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9144'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9145')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9146'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9145')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9145'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9146')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9147'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9146')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9146'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9147')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9148'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9147')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9147'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9148')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9149'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9148')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9148'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9149')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9150'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9149')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9149'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9150')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9151'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9150')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9150'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9151')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9152'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9151')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9151'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9152')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9153'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9152')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9152'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9153')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9154'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9153')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9153'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9154')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9155'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9154')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9154'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9155')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9156'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9155')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9155'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9156')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9157'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9156')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9156'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9157')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9158'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9157')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9157'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9158')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9159'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9158')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9158'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9159')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9160'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9159')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9159'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9160')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9161'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9160')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9160'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9161')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9162'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9161')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9161'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9162')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9163'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9162')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9162'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9163')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9164'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9163')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9163'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9164')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9165'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9164')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9164'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9165')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9166'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9165')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9165'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9166')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9167'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9166')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9166'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9167')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9168'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9167')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9167'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9168')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9169'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9168')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9168'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9169')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9170'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9169')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9169'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9170')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9171'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9170')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9170'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9171')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9172'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9171')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9171'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9172')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9173'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9172')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9172'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9173')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9174'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9173')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9173'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9174')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9175'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9174')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9174'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9175')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9176'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9175')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9175'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9176')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9177'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9176')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9176'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9177')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9178'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9177')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9177'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9178')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9179'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9178')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9178'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9179')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9180'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9179')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9179'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9180')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9181'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9180')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9180'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9181')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9182'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9181')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9181'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9182')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9183'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9182')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9182'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9183')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9184'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9183')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9183'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9184')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9185'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9184')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9184'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9185')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9186'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9185')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9185'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9186')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9187'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9186')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9186'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9187')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9188'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9187')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9187'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9188')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9189'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9188')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9188'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9189')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9190'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9189')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9189'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9190')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9191'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9190')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9190'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9191')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9192'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9191')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9191'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9192')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9193'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9192')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9192'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9193')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9194'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9193')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9193'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9194')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9195'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9194')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9194'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9195')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9196'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9195')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9195'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9196')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9197'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9196')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9196'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9197')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9198'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9197')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9197'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9198')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9199'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9198')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9198'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9199')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9200'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9199')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9199'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9200')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9201'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9200')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9200'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9201')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9202'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9201')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9201'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9202')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9203'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9202')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9202'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9203')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9204'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9203')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9203'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9204')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9205'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9204')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9204'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9205')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9206'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9205')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9205'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9206')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9207'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9206')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9206'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9207')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9208'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9207')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9207'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9208')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9209'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9208')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9208'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9209')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9210'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9209')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9209'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9210')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9211'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9210')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9210'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9211')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9212'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9211')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9211'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9212')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9213'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9212')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9212'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9213')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9214'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9213')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9213'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9214')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9215'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9214')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9214'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9215')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9216'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9215')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9215'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9216')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9217'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9216')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9216'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9217')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9218'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9217')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9217'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9218')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9219'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9218')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9218'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9219')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9220'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9219')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9219'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9220')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9221'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9220')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9220'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9221')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9222'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9221')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9221'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9222')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9223'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9222')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9222'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9223')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9224'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9223')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9223'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9224')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9225'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9224')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9224'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9225')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9226'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9225')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9225'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9226')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9227'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9226')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9226'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9227')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9228'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9227')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9227'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9228')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9229'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9228')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9228'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9229')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9230'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9229')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9229'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9230')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9231'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9230')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9230'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9231')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9232'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9231')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9231'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9232')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9233'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9232')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9232'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9233')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9234'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9233')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9233'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9234')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9235'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9234')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9234'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9235')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9236'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9235')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9235'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9236')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9237'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9236')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9236'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9237')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9238'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9237')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9237'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9238')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9239'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9238')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9238'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9239')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9240'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9239')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9239'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9240')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9241'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9240')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9240'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9241')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9242'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9241')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9241'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9242')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9243'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9242')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9242'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9243')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9244'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9243')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9243'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9244')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9245'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9244')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9244'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9245')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9246'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9245')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9245'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9246')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9247'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9246')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9246'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9247')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9248'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9247')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9247'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9248')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9249'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9248')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9248'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9249')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9250'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9249')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9249'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9250')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9251'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9250')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9250'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9251')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9252'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9251')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9251'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9252')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9253'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9252')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9252'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9253')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9254'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9253')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9253'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9254')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9255'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9254')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9254'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9255')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9256'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9255')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9255'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9256')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9257'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9256')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9256'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9257')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9258'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9257')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9257'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9258')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9259'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9258')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9258'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9259')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9260'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9259')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9259'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9260')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9261'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9260')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9260'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9261')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9262'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9261')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9261'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9262')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9263'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9262')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9262'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9263')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9264'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9263')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9263'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9264')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9265'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9264')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9264'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9265')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9266'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9265')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9265'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9266')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9267'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9266')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9266'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9267')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9268'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9267')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9267'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9268')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9269'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9268')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9268'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9269')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9270'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9269')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9269'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9270')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9271'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9270')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9270'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9271')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9272'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9271')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9271'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9272')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9273'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9272')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9272'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9273')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9274'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9273')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9273'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9274')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9275'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9274')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9274'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9275')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9276'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9275')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9275'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9276')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9277'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9276')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9276'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9277')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9278'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9277')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9277'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9278')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9279'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9278')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9278'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9279')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9280'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9279')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9279'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9280')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9281'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9280')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9280'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9281')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9282'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9281')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9281'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9282')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9283'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9282')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9282'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9283')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9284'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9283')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9283'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9284')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9285'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9284')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9284'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9285')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9286'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9285')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9285'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9286')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9287'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9286')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9286'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9287')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9288'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9287')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9287'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9288')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9289'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9288')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9288'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9289')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9290'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9289')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9289'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9290')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9291'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9290')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9290'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9291')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9292'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9291')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9291'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9292')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9293'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9292')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9292'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9293')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9294'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9293')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9293'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9294')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9295'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9294')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9294'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9295')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9296'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9295')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9295'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9296')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9297'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9296')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9296'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9297')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9298'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9297')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9297'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9298')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9299'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9298')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9298'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9299')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9300'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9299')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9299'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9300')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9301'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9300')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9300'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9301')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9302'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9301')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9301'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9302')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9303'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9302')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9302'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9303')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9304'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9303')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9303'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9304')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9305'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9304')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9304'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9305')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9306'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9305')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9305'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9306')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9307'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9306')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9306'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9307')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9308'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9307')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9307'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9308')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9309'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9308')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9308'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9309')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9310'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9309')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9309'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9310')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9311'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9310')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9310'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9311')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9312'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9311')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9311'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9312')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9313'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9312')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9312'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9313')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9314'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9313')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9313'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9314')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9315'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9314')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9314'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9315')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9316'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9315')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9315'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9316')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9317'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9316')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9316'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9317')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9318'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9317')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9317'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9318')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9319'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9318')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9318'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9319')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9320'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9319')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9319'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9320')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9321'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9320')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9320'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9321')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9322'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9321')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9321'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9322')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9323'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9322')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9322'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9323')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9324'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9323')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9323'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9324')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9325'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9324')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9324'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9325')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9326'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9325')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9325'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9326')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9327'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9326')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9326'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9327')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9328'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9327')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9327'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9328')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9329'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9328')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9328'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9329')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9330'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9329')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9329'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9330')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9331'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9330')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9330'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9331')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9332'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9331')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9331'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9332')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9333'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9332')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9332'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9333')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9334'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9333')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9333'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9334')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9335'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9334')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9334'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9335')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9336'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9335')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9335'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9336')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9337'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9336')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9336'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9337')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9338'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9337')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9337'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9338')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9339'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9338')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9338'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9339')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9340'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9339')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9339'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9340')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9341'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9340')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9340'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9341')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9342'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9341')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9341'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9342')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9343'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9342')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9342'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9343')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9344'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9343')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9343'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9344')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9345'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9344')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9344'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9345')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9346'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9345')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9345'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9346')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9347'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9346')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9346'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9347')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9348'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9347')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9347'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9348')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9349'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9348')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9348'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9349')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9350'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9349')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9349'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9350')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9351'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9350')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9350'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9351')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9352'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9351')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9351'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9352')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9353'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9352')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9352'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9353')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9354'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9353')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9353'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9354')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9355'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9354')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9354'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9355')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9356'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9355')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9355'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9356')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9357'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9356')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9356'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9357')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9358'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9357')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9357'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9358')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9359'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9358')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9358'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9359')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9360'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9359')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9359'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9360')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9361'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9360')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9360'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9361')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9362'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9361')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9361'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9362')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9363'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9362')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9362'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9363')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9364'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9363')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9363'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9364')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9365'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9364')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9364'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9365')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9366'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9365')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9365'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9366')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9367'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9366')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9366'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9367')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9368'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9367')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9367'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9368')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9369'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9368')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9368'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9369')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9370'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9369')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9369'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9370')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9371'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9370')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9370'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9371')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9372'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9371')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9371'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9372')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9373'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9372')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9372'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9373')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9374'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9373')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9373'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9374')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9375'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9374')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9374'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9375')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9376'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9375')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9375'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9376')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9377'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9376')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9376'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9377')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9378'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9377')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9377'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9378')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9379'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9378')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9378'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9379')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9380'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9379')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9379'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9380')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9381'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9380')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9380'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9381')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9382'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9381')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9381'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9382')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9383'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9382')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9382'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9383')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9384'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9383')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9383'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9384')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9385'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9384')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9384'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9385')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9386'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9385')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9385'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9386')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9387'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9386')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9386'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9387')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9388'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9387')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9387'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9388')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9389'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9388')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9388'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9389')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9390'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9389')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9389'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9390')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9391'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9390')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9390'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9391')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9392'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9391')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9391'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9392')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9393'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9392')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9392'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9393')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9394'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9393')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9393'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9394')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9395'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9394')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9394'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9395')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9396'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9395')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9395'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9396')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9397'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9396')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9396'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9397')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9398'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9397')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9397'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9398')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9399'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9398')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9398'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9399')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9400'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9399')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9399'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9400')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9401'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9400')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9400'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9401')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9402'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9401')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9401'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9402')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9403'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9402')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9402'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9403')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9404'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9403')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9403'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9404')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9405'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9404')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9404'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9405')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9406'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9405')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9405'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9406')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9407'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9406')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9406'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9407')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9408'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9407')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9407'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9408')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9409'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9408')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9408'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9409')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9410'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9409')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9409'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9410')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9411'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9410')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9410'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9411')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9412'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9411')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9411'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9412')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9413'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9412')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9412'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9413')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9414'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9413')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9413'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9414')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9415'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9414')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9414'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9415')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9416'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9415')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9415'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9416')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9417'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9416')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9416'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9417')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9418'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9417')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9417'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9418')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9419'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9418')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9418'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9419')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9420'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9419')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9419'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9420')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9421'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9420')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9420'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9421')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9422'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9421')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9421'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9422')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9423'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9422')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9422'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9423')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9424'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9423')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9423'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9424')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9425'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9424')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9424'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9425')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9426'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9425')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9425'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9426')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9427'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9426')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9426'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9427')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9428'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9427')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9427'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9428')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9429'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9428')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9428'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9429')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9430'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9429')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9429'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9430')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9431'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9430')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9430'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9431')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9432'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9431')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9431'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9432')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9433'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9432')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9432'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9433')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9434'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9433')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9433'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9434')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9435'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9434')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9434'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9435')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9436'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9435')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9435'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9436')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9437'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9436')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9436'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9437')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9438'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9437')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9437'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9438')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9439'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9438')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9438'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9439')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9440'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9439')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9439'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9440')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9441'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9440')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9440'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9441')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9442'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9441')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9441'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9442')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9443'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9442')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9442'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9443')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9444'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9443')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9443'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9444')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9445'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9444')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9444'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9445')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9446'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9445')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9445'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9446')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9447'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9446')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9446'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9447')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9448'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9447')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9447'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9448')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9449'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9448')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9448'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9449')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9450'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9449')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9449'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9450')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9451'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9450')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9450'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9451')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9452'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9451')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9451'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9452')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9453'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9452')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9452'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9453')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9454'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9453')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9453'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9454')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9455'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9454')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9454'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9455')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9456'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9455')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9455'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9456')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9457'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9456')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9456'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9457')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9458'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9457')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9457'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9458')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9459'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9458')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9458'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9459')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9460'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9459')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9459'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9460')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9461'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9460')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9460'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9461')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9462'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9461')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9461'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9462')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9463'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9462')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9462'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9463')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9464'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9463')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9463'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9464')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9465'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9464')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9464'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9465')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9466'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9465')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9465'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9466')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9467'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9466')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9466'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9467')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9468'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9467')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9467'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9468')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9469'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9468')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9468'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9469')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9470'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9469')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9469'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9470')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9471'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9470')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9470'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9471')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9472'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9471')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9471'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9472')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9473'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9472')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9472'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9473')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9474'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9473')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9473'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9474')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9475'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9474')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9474'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9475')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9476'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9475')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9475'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9476')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9477'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9476')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9476'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9477')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9478'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9477')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9477'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9478')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9479'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9478')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9478'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9479')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9480'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9479')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9479'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9480')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9481'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9480')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9480'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9481')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9482'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9481')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9481'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9482')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9483'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9482')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9482'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9483')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9484'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9483')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9483'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9484')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9485'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9484')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9484'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9485')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9486'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9485')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9485'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9486')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9487'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9486')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9486'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9487')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9488'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9487')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9487'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9488')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9489'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9488')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9488'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9489')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9490'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9489')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9489'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9490')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9491'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9490')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9490'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9491')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9492'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9491')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9491'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9492')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9493'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9492')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9492'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9493')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9494'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9493')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9493'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9494')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9495'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9494')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9494'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9495')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9496'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9495')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9495'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9496')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9497'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9496')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9496'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9497')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9498'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9497')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9497'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9498')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9499'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9498')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9498'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9499')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9500'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9499')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9499'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9500')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9501'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9500')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9500'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9501')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9502'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9501')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9501'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9502')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9503'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9502')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9502'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9503')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9504'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9503')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9503'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9504')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9505'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9504')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9504'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9505')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9506'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9505')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9505'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9506')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9507'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9506')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9506'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9507')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9508'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9507')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9507'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9508')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9509'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9508')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9508'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9509')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9510'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9509')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9509'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9510')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9511'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9510')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9510'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9511')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9512'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9511')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9511'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9512')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9513'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9512')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9512'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9513')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9514'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9513')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9513'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9514')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9515'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9514')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9514'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9515')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9516'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9515')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9515'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9516')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9517'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9516')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9516'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9517')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9518'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9517')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9517'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9518')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9519'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9518')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9518'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9519')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9520'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9519')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9519'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9520')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9521'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9520')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9520'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9521')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9522'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9521')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9521'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9522')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9523'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9522')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9522'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9523')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9524'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9523')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9523'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9524')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9525'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9524')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9524'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9525')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9526'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9525')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9525'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9526')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9527'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9526')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9526'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9527')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9528'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9527')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9527'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9528')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9529'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9528')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9528'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9529')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9530'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9529')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9529'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9530')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9531'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9530')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9530'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9531')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9532'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9531')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9531'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9532')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9533'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9532')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9532'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9533')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9534'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9533')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9533'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9534')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9535'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9534')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9534'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9535')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9536'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9535')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9535'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9536')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9537'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9536')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9536'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9537')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9538'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9537')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9537'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9538')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9539'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9538')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9538'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9539')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9540'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9539')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9539'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9540')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9541'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9540')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9540'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9541')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9542'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9541')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9541'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9542')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9543'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9542')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9542'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9543')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9544'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9543')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9543'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9544')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9545'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9544')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9544'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9545')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9546'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9545')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9545'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9546')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9547'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9546')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9546'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9547')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9548'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9547')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9547'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9548')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9549'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9548')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9548'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9549')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9550'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9549')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9549'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9550')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9551'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9550')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9550'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9551')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9552'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9551')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9551'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9552')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9553'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9552')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9552'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9553')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9554'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9553')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9553'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9554')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9555'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9554')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9554'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9555')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9556'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9555')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9555'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9556')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9557'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9556')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9556'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9557')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9558'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9557')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9557'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9558')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9559'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9558')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9558'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9559')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9560'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9559')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9559'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9560')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9561'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9560')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9560'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9561')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9562'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9561')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9561'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9562')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9563'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9562')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9562'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9563')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9564'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9563')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9563'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9564')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9565'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9564')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9564'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9565')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9566'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9565')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9565'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9566')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9567'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9566')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9566'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9567')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9568'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9567')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9567'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9568')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9569'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9568')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9568'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9569')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9570'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9569')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9569'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9570')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9571'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9570')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9570'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9571')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9572'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9571')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9571'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9572')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9573'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9572')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9572'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9573')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9574'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9573')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9573'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9574')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9575'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9574')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9574'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9575')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9576'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9575')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9575'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9576')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9577'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9576')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9576'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9577')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9578'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9577')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9577'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9578')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9579'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9578')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9578'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9579')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9580'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9579')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9579'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9580')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9581'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9580')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9580'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9581')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9582'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9581')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9581'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9582')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9583'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9582')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9582'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9583')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9584'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9583')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9583'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9584')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9585'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9584')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9584'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9585')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9586'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9585')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9585'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9586')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9587'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9586')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9586'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9587')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9588'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9587')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9587'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9588')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9589'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9588')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9588'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9589')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9590'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9589')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9589'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9590')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9591'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9590')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9590'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9591')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9592'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9591')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9591'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9592')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9593'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9592')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9592'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9593')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9594'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9593')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9593'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9594')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9595'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9594')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9594'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9595')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9596'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9595')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9595'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9596')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9597'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9596')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9596'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9597')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9598'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9597')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9597'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9598')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9599'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9598')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9598'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9599')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9600'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9599')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9599'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9600')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9601'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9600')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9600'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9601')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9602'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9601')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9601'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9602')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9603'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9602')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9602'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9603')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9604'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9603')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9603'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9604')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9605'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9604')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9604'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9605')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9606'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9605')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9605'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9606')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9607'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9606')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9606'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9607')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9608'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9607')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9607'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9608')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9609'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9608')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9608'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9609')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9610'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9609')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9609'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9610')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9611'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9610')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9610'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9611')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9612'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9611')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9611'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9612')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9613'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9612')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9612'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9613')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9614'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9613')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9613'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9614')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9615'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9614')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9614'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9615')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9616'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9615')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9615'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9616')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9617'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9616')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9616'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9617')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9618'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9617')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9617'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9618')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9619'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9618')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9618'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9619')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9620'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9619')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9619'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9620')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9621'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9620')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9620'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9621')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9622'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9621')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9621'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9622')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9623'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9622')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9622'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9623')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9624'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9623')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9623'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9624')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9625'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9624')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9624'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9625')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9626'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9625')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9625'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9626')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9627'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9626')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9626'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9627')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9628'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9627')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9627'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9628')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9629'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9628')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9628'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9629')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9630'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9629')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9629'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9630')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9631'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9630')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9630'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9631')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9632'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9631')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9631'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9632')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9633'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9632')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9632'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9633')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9634'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9633')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9633'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9634')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9635'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9634')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9634'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9635')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9636'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9635')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9635'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9636')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9637'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9636')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9636'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9637')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9638'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9637')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9637'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9638')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9639'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9638')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9638'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9639')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9640'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9639')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9639'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9640')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9641'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9640')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9640'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9641')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9642'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9641')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9641'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9642')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9643'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9642')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9642'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9643')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9644'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9643')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9643'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9644')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9645'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9644')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9644'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9645')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9646'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9645')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9645'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9646')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9647'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9646')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9646'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9647')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9648'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9647')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9647'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9648')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9649'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9648')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9648'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9649')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9650'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9649')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9649'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9650')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9651'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9650')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9650'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9651')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9652'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9651')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9651'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9652')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9653'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9652')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9652'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9653')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9654'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9653')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9653'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9654')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9655'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9654')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9654'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9655')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9656'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9655')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9655'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9656')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9657'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9656')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9656'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9657')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9658'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9657')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9657'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9658')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9659'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9658')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9658'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9659')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9660'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9659')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9659'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9660')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9661'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9660')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9660'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9661')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9662'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9661')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9661'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9662')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9663'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9662')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9662'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9663')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9664'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9663')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9663'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9664')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9665'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9664')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9664'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9665')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9666'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9665')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9665'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9666')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9667'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9666')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9666'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9667')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9668'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9667')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9667'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9668')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9669'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9668')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9668'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9669')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9670'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9669')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9669'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9670')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9671'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9670')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9670'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9671')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9672'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9671')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9671'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9672')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9673'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9672')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9672'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9673')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9674'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9673')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9673'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9674')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9675'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9674')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9674'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9675')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9676'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9675')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9675'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9676')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9677'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9676')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9676'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9677')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9678'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9677')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9677'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9678')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9679'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9678')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9678'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9679')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9680'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9679')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9679'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9680')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9681'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9680')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9680'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9681')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9682'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9681')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9681'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9682')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9683'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9682')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9682'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9683')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9684'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9683')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9683'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9684')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9685'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9684')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9684'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9685')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9686'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9685')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9685'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9686')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9687'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9686')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9686'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9687')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9688'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9687')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9687'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9688')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9689'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9688')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9688'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9689')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9690'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9689')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9689'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9690')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9691'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9690')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9690'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9691')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9692'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9691')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9691'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9692')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9693'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9692')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9692'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9693')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9694'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9693')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9693'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9694')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9695'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9694')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9694'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9695')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9696'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9695')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9695'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9696')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9697'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9696')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9696'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9697')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9698'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9697')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9697'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9698')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9699'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9698')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9698'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9699')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9700'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9699')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9699'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9700')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9701'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9700')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9700'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9701')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9702'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9701')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9701'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9702')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9703'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9702')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9702'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9703')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9704'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9703')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9703'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9704')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9705'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9704')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9704'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9705')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9706'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9705')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9705'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9706')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9707'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9706')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9706'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9707')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9708'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9707')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9707'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9708')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9709'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9708')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9708'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9709')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9710'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9709')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9709'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9710')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9711'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9710')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9710'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9711')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9712'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9711')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9711'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9712')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9713'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9712')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9712'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9713')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9714'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9713')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9713'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9714')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9715'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9714')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9714'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9715')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9716'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9715')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9715'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9716')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9717'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9716')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9716'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9717')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9718'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9717')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9717'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9718')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9719'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9718')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9718'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9719')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9720'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9719')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9719'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9720')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9721'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9720')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9720'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9721')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9722'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9721')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9721'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9722')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9723'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9722')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9722'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9723')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9724'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9723')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9723'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9724')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9725'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9724')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9724'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9725')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9726'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9725')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9725'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9726')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9727'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9726')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9726'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9727')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9728'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9727')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9727'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9728')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9729'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9728')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9728'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9729')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9730'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9729')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9729'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9730')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9731'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9730')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9730'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9731')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9732'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9731')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9731'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9732')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9733'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9732')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9732'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9733')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9734'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9733')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9733'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9734')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9735'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9734')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9734'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9735')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9736'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9735')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9735'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9736')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9737'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9736')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9736'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9737')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9738'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9737')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9737'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9738')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9739'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9738')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9738'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9739')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9740'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9739')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9739'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9740')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9741'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9740')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9740'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9741')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9742'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9741')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9741'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9742')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9743'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9742')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9742'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9743')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9744'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9743')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9743'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9744')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9745'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9744')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9744'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9745')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9746'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9745')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9745'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9746')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9747'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9746')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9746'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9747')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9748'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9747')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9747'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9748')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9749'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9748')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9748'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9749')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9750'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9749')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9749'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9750')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9751'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9750')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9750'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9751')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9752'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9751')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9751'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9752')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9753'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9752')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9752'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9753')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9754'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9753')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9753'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9754')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9755'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9754')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9754'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9755')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9756'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9755')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9755'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9756')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9757'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9756')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9756'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9757')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9758'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9757')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9757'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9758')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9759'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9758')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9758'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9759')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9760'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9759')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9759'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9760')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9761'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9760')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9760'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9761')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9762'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9761')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9761'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9762')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9763'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9762')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9762'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9763')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9764'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9763')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9763'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9764')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9765'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9764')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9764'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9765')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9766'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9765')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9765'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9766')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9767'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9766')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9766'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9767')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9768'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9767')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9767'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9768')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9769'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9768')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9768'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9769')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9770'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9769')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9769'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9770')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9771'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9770')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9770'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9771')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9772'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9771')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9771'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9772')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9773'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9772')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9772'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9773')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9774'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9773')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9773'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9774')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9775'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9774')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9774'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9775')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9776'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9775')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9775'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9776')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9777'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9776')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9776'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9777')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9778'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9777')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9777'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9778')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9779'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9778')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9778'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9779')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9780'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9779')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9779'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9780')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9781'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9780')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9780'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9781')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9782'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9781')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9781'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9782')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9783'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9782')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9782'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9783')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9784'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9783')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9783'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9784')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9785'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9784')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9784'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9785')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9786'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9785')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9785'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9786')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9787'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9786')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9786'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9787')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9788'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9787')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9787'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9788')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9789'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9788')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9788'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9789')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9790'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9789')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9789'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9790')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9791'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9790')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9790'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9791')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9792'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9791')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9791'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9792')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9793'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9792')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9792'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9793')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9794'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9793')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9793'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9794')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9795'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9794')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9794'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9795')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9796'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9795')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9795'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9796')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9797'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9796')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9796'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9797')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9798'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9797')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9797'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9798')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9799'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9798')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9798'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9799')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9800'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9799')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9799'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9800')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9801'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9800')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9800'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9801')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9802'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9801')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9801'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9802')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9803'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9802')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9802'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9803')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9804'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9803')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9803'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9804')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9805'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9804')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9804'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9805')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9806'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9805')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9805'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9806')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9807'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9806')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9806'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9807')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9808'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9807')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9807'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9808')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9809'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9808')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9808'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9809')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9810'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9809')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9809'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9810')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9811'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9810')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9810'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9811')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9812'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9811')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9811'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9812')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9813'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9812')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9812'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9813')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9814'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9813')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9813'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9814')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9815'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9814')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9814'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9815')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9816'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9815')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9815'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9816')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9817'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9816')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9816'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9817')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9818'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9817')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9817'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9818')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9819'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9818')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9818'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9819')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9820'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9819')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9819'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9820')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9821'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9820')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9820'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9821')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9822'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9821')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9821'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9822')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9823'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9822')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9822'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9823')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9824'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9823')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9823'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9824')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9825'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9824')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9824'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9825')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9826'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9825')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9825'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9826')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9827'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9826')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9826'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9827')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9828'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9827')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9827'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9828')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9829'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9828')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9828'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9829')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9830'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9829')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9829'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9830')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9831'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9830')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9830'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9831')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9832'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9831')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9831'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9832')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9833'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9832')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9832'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9833')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9834'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9833')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9833'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9834')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9835'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9834')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9834'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9835')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9836'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9835')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9835'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9836')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9837'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9836')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9836'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9837')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9838'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9837')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9837'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9838')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9839'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9838')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9838'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9839')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9840'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9839')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9839'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9840')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9841'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9840')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9840'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9841')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9842'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9841')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9841'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9842')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9843'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9842')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9842'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9843')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9844'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9843')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9843'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9844')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9845'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9844')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9844'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9845')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9846'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9845')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9845'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9846')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9847'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9846')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9846'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9847')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9848'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9847')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9847'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9848')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9849'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9848')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9848'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9849')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9850'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9849')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9849'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9850')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9851'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9850')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9850'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9851')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9852'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9851')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9851'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9852')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9853'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9852')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9852'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9853')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9854'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9853')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9853'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9854')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9855'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9854')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9854'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9855')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9856'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9855')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9855'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9856')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9857'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9856')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9856'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9857')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9858'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9857')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9857'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9858')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9859'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9858')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9858'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9859')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9860'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9859')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9859'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9860')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9861'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9860')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9860'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9861')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9862'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9861')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9861'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9862')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9863'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9862')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9862'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9863')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9864'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9863')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9863'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9864')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9865'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9864')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9864'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9865')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9866'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9865')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9865'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9866')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9867'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9866')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9866'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9867')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9868'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9867')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9867'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9868')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9869'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9868')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9868'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9869')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9870'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9869')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9869'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9870')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9871'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9870')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9870'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9871')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9872'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9871')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9871'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9872')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9873'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9872')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9872'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9873')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9874'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9873')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9873'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9874')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9875'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9874')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9874'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9875')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9876'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9875')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9875'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9876')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9877'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9876')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9876'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9877')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9878'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9877')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9877'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9878')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9879'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9878')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9878'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9879')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9880'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9879')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9879'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9880')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9881'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9880')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9880'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9881')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9882'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9881')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9881'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9882')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9883'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9882')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9882'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9883')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9884'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9883')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9883'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9884')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9885'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9884')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9884'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9885')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9886'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9885')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9885'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9886')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9887'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9886')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9886'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9887')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9888'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9887')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9887'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9888')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9889'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9888')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9888'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9889')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9890'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9889')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9889'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9890')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9891'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9890')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9890'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9891')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9892'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9891')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9891'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9892')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9893'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9892')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9892'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9893')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9894'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9893')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9893'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9894')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9895'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9894')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9894'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9895')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9896'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9895')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9895'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9896')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9897'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9896')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9896'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9897')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9898'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9897')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9897'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9898')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9899'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9898')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9898'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9899')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9900'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9899')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9899'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9900')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9901'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9900')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9900'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9901')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9902'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9901')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9901'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9902')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9903'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9902')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9902'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9903')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9904'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9903')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9903'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9904')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9905'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9904')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9904'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9905')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9906'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9905')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9905'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9906')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9907'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9906')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9906'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9907')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9908'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9907')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9907'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9908')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9909'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9908')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9908'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9909')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9910'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9909')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9909'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9910')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9911'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9910')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9910'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9911')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9912'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9911')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9911'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9912')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9913'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9912')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9912'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9913')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9914'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9913')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9913'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9914')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9915'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9914')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9914'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9915')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9916'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9915')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9915'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9916')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9917'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9916')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9916'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9917')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9918'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9917')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9917'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9918')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9919'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9918')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9918'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9919')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9920'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9919')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9919'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9920')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9921'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9920')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9920'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9921')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9922'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9921')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9921'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9922')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9923'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9922')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9922'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9923')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9924'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9923')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9923'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9924')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9925'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9924')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9924'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9925')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9926'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9925')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9925'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9926')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9927'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9926')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9926'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9927')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9928'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9927')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9927'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9928')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9929'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9928')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9928'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9929')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9930'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9929')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9929'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9930')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9931'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9930')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9930'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9931')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9932'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9931')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9931'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9932')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9933'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9932')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9932'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9933')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9934'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9933')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9933'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9934')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9935'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9934')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9934'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9935')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9936'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9935')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9935'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9936')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9937'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9936')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9936'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9937')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9938'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9937')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9937'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9938')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9939'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9938')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9938'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9939')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9940'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9939')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9939'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9940')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9941'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9940')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9940'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9941')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9942'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9941')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9941'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9942')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9943'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9942')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9942'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9943')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9944'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9943')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9943'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9944')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9945'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9944')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9944'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9945')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9946'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9945')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9945'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9946')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9947'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9946')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9946'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9947')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9948'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9947')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9947'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9948')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9949'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9948')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9948'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9949')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9950'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9949')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9949'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9950')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9951'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9950')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9950'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9951')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9952'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9951')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9951'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9952')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9953'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9952')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9952'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9953')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9954'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9953')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9953'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9954')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9955'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9954')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9954'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9955')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9956'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9955')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9955'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9956')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9957'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9956')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9956'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9957')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9958'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9957')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9957'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9958')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9959'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9958')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9958'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9959')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9960'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9959')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9959'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9960')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9961'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9960')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9960'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9961')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9962'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9961')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9961'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9962')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9963'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9962')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9962'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9963')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9964'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9963')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9963'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9964')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9965'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9964')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9964'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9965')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9966'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9965')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9965'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9966')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9967'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9966')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9966'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9967')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9968'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9967')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9967'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9968')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9969'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9968')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9968'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9969')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9970'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9969')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9969'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9970')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9971'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9970')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9970'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9971')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9972'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9971')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9971'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9972')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9973'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9972')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9972'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9973')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9974'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9973')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9973'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9974')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9975'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9974')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9974'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9975')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9976'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9975')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9975'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9976')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9977'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9976')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9976'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9977')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9978'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9977')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9977'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9978')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9979'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9978')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9978'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9979')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9980'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9979')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9979'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9980')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9981'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9980')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9980'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9981')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9982'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9981')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9981'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9982')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9983'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9982')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9982'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9983')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9984'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9983')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9983'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9984')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9985'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9984')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9984'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9985')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9986'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9985')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9985'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9986')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9987'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9986')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9986'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9987')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9988'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9987')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9987'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9988')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9989'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9988')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9988'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9989')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9990'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9989')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9989'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9990')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9991'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9990')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9990'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9991')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9992'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9991')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9991'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9992')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9993'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9992')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9992'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9993')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9994'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9993')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9993'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9994')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9995'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9994')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9994'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9995')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9996'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9995')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9995'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9996')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9997'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9996')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9996'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9997')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9998'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9997')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9997'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9998')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I9999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I9999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J9999'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9998')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9998'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J9999')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N10000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N10000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:I10000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:I10000')). +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:J10000'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:N9999')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:N9999'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:z', 'urn:example:J10000')). diff --git a/logic-programming/output/easter.pl b/logic-programming/output/easter.pl new file mode 100644 index 000000000..02cf50ca2 --- /dev/null +++ b/logic-programming/output/easter.pl @@ -0,0 +1,32 @@ +:- op(1200, xfx, :=). + +answer('urn:example:easter'(2021, [4, 4])). +answer('urn:example:easter'(2022, [4, 17])). +answer('urn:example:easter'(2023, [4, 9])). +answer('urn:example:easter'(2024, [3, 31])). +answer('urn:example:easter'(2025, [4, 20])). +answer('urn:example:easter'(2026, [4, 5])). +answer('urn:example:easter'(2027, [3, 28])). +answer('urn:example:easter'(2028, [4, 16])). +answer('urn:example:easter'(2029, [4, 1])). +answer('urn:example:easter'(2030, [4, 21])). +answer('urn:example:easter'(2031, [4, 13])). +answer('urn:example:easter'(2032, [3, 28])). +answer('urn:example:easter'(2033, [4, 17])). +answer('urn:example:easter'(2034, [4, 9])). +answer('urn:example:easter'(2035, [3, 25])). +answer('urn:example:easter'(2036, [4, 13])). +answer('urn:example:easter'(2037, [4, 5])). +answer('urn:example:easter'(2038, [4, 25])). +answer('urn:example:easter'(2039, [4, 10])). +answer('urn:example:easter'(2040, [4, 1])). +answer('urn:example:easter'(2041, [4, 21])). +answer('urn:example:easter'(2042, [4, 6])). +answer('urn:example:easter'(2043, [3, 29])). +answer('urn:example:easter'(2044, [4, 17])). +answer('urn:example:easter'(2045, [4, 9])). +answer('urn:example:easter'(2046, [3, 25])). +answer('urn:example:easter'(2047, [4, 14])). +answer('urn:example:easter'(2048, [4, 5])). +answer('urn:example:easter'(2049, [4, 18])). +answer('urn:example:easter'(2050, [4, 10])). diff --git a/logic-programming/output/enigma1225.pl b/logic-programming/output/enigma1225.pl new file mode 100644 index 000000000..36b3be76b --- /dev/null +++ b/logic-programming/output/enigma1225.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:enigma1225'(8, [[2, 1, 4, 3, 6, 5, 8, 7], [[1, 1, 2, 3, 4, 5, 6, 7], [1, 1, 3, 2, 5, 4, 7, 6], [3, 2, 8, 8, 9, 10, 11, 12], [2, 3, 8, 8, 10, 9, 12, 11], [5, 4, 10, 9, 13, 13, 14, 15], [4, 5, 9, 10, 13, 13, 15, 14], [7, 6, 12, 11, 15, 14, 16, 16], [6, 7, 11, 12, 14, 15, 16, 16]], 544])). diff --git a/logic-programming/output/equation.pl b/logic-programming/output/equation.pl new file mode 100644 index 000000000..e3212b3cf --- /dev/null +++ b/logic-programming/output/equation.pl @@ -0,0 +1,5 @@ +:- op(1200, xfx, :=). + +answer('urn:example:equation'(x^2-3*x+2=0, x, [2.0, 1.0])). +answer('urn:example:equation'(cos(x)*(1-2*sin(x))=0, x, [1.5707963267948966, -1.5707963267948966, -1.5707963267948966, 0.5235987755982989, 179.4764012244017])). +answer('urn:example:equation'(2^(2*x)-5*2^(x+1)+16=0, x, [3.0, 1.0])). diff --git a/logic-programming/output/eulers-identity.pl b/logic-programming/output/eulers-identity.pl new file mode 100644 index 000000000..88890014e --- /dev/null +++ b/logic-programming/output/eulers-identity.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer(('urn:example:complex:exponentiation'([[e, 0], [0, pi]], [-1.0, 1.2246467991473532e-16]), 'urn:example:complex:sum'([[-1.0, 1.2246467991473532e-16], [1, 0]], [0.0, 1.2246467991473532e-16]))). diff --git a/logic-programming/output/fft.pl b/logic-programming/output/fft.pl new file mode 100644 index 000000000..5f65aca14 --- /dev/null +++ b/logic-programming/output/fft.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:fft'([0, 1, 2, 3, 4, 5, 6, 7], [n(64, op(+, 49, 63)), n(63, op(*, 62, 52)), n(62, w^7), n(61, op(+, 42, 60)), n(60, op(*, 47, 44)), n(59, op(+, 31, 58)), n(58, op(*, 57, 38)), n(57, w^5), n(56, op(+, 11, 55)), n(55, op(*, 24, 21)), n(54, op(+, 49, 53)), n(53, op(*, 50, 52)), n(52, op(+, 34, 51)), n(51, op(*, 47, 36)), n(50, w^3), n(49, op(+, 26, 48)), n(48, op(*, 47, 29)), n(47, w^6), n(46, op(+, 42, 45)), n(45, op(*, 27, 44)), n(44, op(+, 15, 43)), n(43, op(*, 24, 19)), n(42, op(+, 5, 41)), n(41, op(*, 24, 9)), n(40, op(+, 31, 39)), n(39, op(*, 32, 38)), n(38, op(+, 34, 37)), n(37, op(*, 27, 36)), n(36, op(+, 16, 35)), n(35, op(*, 24, 17)), n(34, op(+, 12, 33)), n(33, op(*, 24, 13)), n(32, w^1), n(31, op(+, 26, 30)), n(30, op(*, 27, 29)), n(29, op(+, 6, 28)), n(28, op(*, 24, 7)), n(27, w^2), n(26, op(+, 1, 25)), n(25, op(*, 24, 3)), n(24, w^4), n(23, op(+, 11, 22)), n(22, op(*, 2, 21)), n(21, op(+, 15, 20)), n(20, op(*, 2, 19)), n(19, op(+, 16, 18)), n(18, op(*, 2, 17)), n(17, a(7)), n(16, a(3)), n(15, op(+, 12, 14)), n(14, op(*, 2, 13)), n(13, a(5)), n(12, a(1)), n(11, op(+, 5, 10)), n(10, op(*, 2, 9)), n(9, op(+, 6, 8)), n(8, op(*, 2, 7)), n(7, a(6)), n(6, a(2)), n(5, op(+, 1, 4)), n(4, op(*, 2, 3)), n(3, a(4)), n(2, w^0), n(1, a(0))])). diff --git a/logic-programming/output/fibonacci.pl b/logic-programming/output/fibonacci.pl new file mode 100644 index 000000000..fd46ac1e2 --- /dev/null +++ b/logic-programming/output/fibonacci.pl @@ -0,0 +1,14 @@ +:- op(1200, xfx, :=). + +answer('urn:example:fibonacci'(1, 1)). +answer('urn:example:fibonacci'(2, 1)). +answer('urn:example:fibonacci'(3, 2)). +answer('urn:example:fibonacci'(4, 3)). +answer('urn:example:fibonacci'(5, 5)). +answer('urn:example:fibonacci'(91, 4660046610375530309)). +answer('urn:example:fibonacci'(283, 62232491515607091882574410635924603070626544377175485625797)). +answer('urn:example:fibonacci'(3674, 295872959797101479478634366815157108100573212705250690577871041398423606408217262643449728342664061812585639168722421830407677671667740585806703531229882783069925750619720511808616484846128237251921414441458265138672827487722512845223115526738192067144721087756159352711138340620702266509343657403678256247195010013499661223527119909308682062873140767135468966093474944529418214755911968500799987099146489838560114063096775586903976827512299123202488315139397181279903459556726060805948910609527571241968534269554079076649680403030083743420820438603816095671532163428933363322524736324029745871445486444623006627119156710782085648303485296149604974010598940800770684835758031137479033374229914629583184427269638360355586190323578625395157899987377625662075558684705457)). +answer('urn:example:golden_ratio'(1, 1)). +answer('urn:example:golden_ratio'(10, 1.6181818181818182)). +answer('urn:example:golden_ratio'(100, 1.6180339887498947)). +answer('urn:example:golden_ratio'(1000, 1.618033988749895)). diff --git a/logic-programming/output/fourcolor.pl b/logic-programming/output/fourcolor.pl new file mode 100644 index 000000000..32fa301d2 --- /dev/null +++ b/logic-programming/output/fourcolor.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:colors'('urn:example:mapEU', [['urn:example:Belgium', 'urn:example:yellow'], ['urn:example:Netherlands', 'urn:example:green'], ['urn:example:Luxemburg', 'urn:example:green'], ['urn:example:France', 'urn:example:blue'], ['urn:example:Germany', 'urn:example:red'], ['urn:example:Italy', 'urn:example:red'], ['urn:example:Denmark', 'urn:example:green'], ['urn:example:Ireland', 'urn:example:red'], ['urn:example:Greece', 'urn:example:red'], ['urn:example:Spain', 'urn:example:green'], ['urn:example:Portugal', 'urn:example:red'], ['urn:example:Austria', 'urn:example:yellow'], ['urn:example:Sweden', 'urn:example:green'], ['urn:example:Finland', 'urn:example:red'], ['urn:example:Cyprus', 'urn:example:red'], ['urn:example:Malta', 'urn:example:red'], ['urn:example:Poland', 'urn:example:blue'], ['urn:example:Hungary', 'urn:example:blue'], ['urn:example:Czech_Republic', 'urn:example:green'], ['urn:example:Slovakia', 'urn:example:red'], ['urn:example:Slovenia', 'urn:example:green'], ['urn:example:Estonia', 'urn:example:red'], ['urn:example:Latvia', 'urn:example:green'], ['urn:example:Lithuania', 'urn:example:red'], ['urn:example:Bulgaria', 'urn:example:green'], ['urn:example:Romania', 'urn:example:red'], ['urn:example:Croatia', 'urn:example:red']])). diff --git a/logic-programming/output/fuse.pl b/logic-programming/output/fuse.pl new file mode 100644 index 000000000..45f5e9a9f --- /dev/null +++ b/logic-programming/output/fuse.pl @@ -0,0 +1,4 @@ +:- op(1200, xfx, :=). + +% inference fuse, return code 2 +fuse(('urn:example:color'('urn:example:stone', 'urn:example:black'), 'urn:example:color'('urn:example:stone', 'urn:example:white'))). diff --git a/logic-programming/output/gcc.pl b/logic-programming/output/gcc.pl new file mode 100644 index 000000000..c18a9499c --- /dev/null +++ b/logic-programming/output/gcc.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:gcc'([1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0], [[0, 0, 1], [0, 1, 1], [0, 1, 0], [1, 1, 0], [1, 1, 1], [1, 0, 1], [1, 0, 0], [0, 0, 0], [0, 0, 1]])). diff --git a/logic-programming/output/good-cobbler.pl b/logic-programming/output/good-cobbler.pl new file mode 100644 index 000000000..bc1afd6dc --- /dev/null +++ b/logic-programming/output/good-cobbler.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer(('urn:example:is'(_, 'urn:example:good'('urn:example:Cobbler')):=true)). diff --git a/logic-programming/output/gps.pl b/logic-programming/output/gps.pl new file mode 100644 index 000000000..0a29eb3a1 --- /dev/null +++ b/logic-programming/output/gps.pl @@ -0,0 +1,4 @@ +:- op(1200, xfx, :=). + +answer('urn:example:findpath'('urn:example:map_be', ['urn:example:location'('urn:example:i1', 'urn:example:oostende'), ['urn:example:drive_gent_brugge', 'urn:example:drive_brugge_oostende'], 2400.0, 0.01, 0.9408, 0.99, [5000.0, 5.0, 0.2, 0.4, 1]])). +answer('urn:example:findpath'('urn:example:map_be', ['urn:example:location'('urn:example:i1', 'urn:example:oostende'), ['urn:example:drive_gent_kortrijk', 'urn:example:drive_kortrijk_brugge', 'urn:example:drive_brugge_oostende'], 4100.0, 0.018000000000000002, 0.903168, 0.9801, [5000.0, 5.0, 0.2, 0.4, 1]])). diff --git a/logic-programming/output/graph.pl b/logic-programming/output/graph.pl new file mode 100644 index 000000000..eaefc9da5 --- /dev/null +++ b/logic-programming/output/graph.pl @@ -0,0 +1,32 @@ +:- op(1200, xfx, :=). + +answer('urn:example:path'('urn:example:angers', 'urn:example:nantes')). +answer('urn:example:path'('urn:example:lemans', 'urn:example:nantes')). +answer('urn:example:path'('urn:example:chartres', 'urn:example:nantes')). +answer('urn:example:path'('urn:example:paris', 'urn:example:nantes')). + +% +% Proof steps +% + +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:paris', 'urn:example:orleans'), 'urn:example:path'('urn:example:paris', 'urn:example:orleans')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:paris', 'urn:example:chartres'), 'urn:example:path'('urn:example:paris', 'urn:example:chartres')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:paris', 'urn:example:amiens'), 'urn:example:path'('urn:example:paris', 'urn:example:amiens')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:orleans', 'urn:example:blois'), 'urn:example:path'('urn:example:orleans', 'urn:example:blois')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:orleans', 'urn:example:bourges'), 'urn:example:path'('urn:example:orleans', 'urn:example:bourges')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:blois', 'urn:example:tours'), 'urn:example:path'('urn:example:blois', 'urn:example:tours')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:chartres', 'urn:example:lemans'), 'urn:example:path'('urn:example:chartres', 'urn:example:lemans')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:lemans', 'urn:example:angers'), 'urn:example:path'('urn:example:lemans', 'urn:example:angers')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:lemans', 'urn:example:tours'), 'urn:example:path'('urn:example:lemans', 'urn:example:tours')). +step(('urn:example:path'(A, B):='urn:example:oneway'(A, B)), 'urn:example:oneway'('urn:example:angers', 'urn:example:nantes'), 'urn:example:path'('urn:example:angers', 'urn:example:nantes')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:paris', 'urn:example:orleans'), 'urn:example:path'('urn:example:orleans', 'urn:example:blois')), 'urn:example:path'('urn:example:paris', 'urn:example:blois')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:paris', 'urn:example:orleans'), 'urn:example:path'('urn:example:orleans', 'urn:example:bourges')), 'urn:example:path'('urn:example:paris', 'urn:example:bourges')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:paris', 'urn:example:chartres'), 'urn:example:path'('urn:example:chartres', 'urn:example:lemans')), 'urn:example:path'('urn:example:paris', 'urn:example:lemans')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:orleans', 'urn:example:blois'), 'urn:example:path'('urn:example:blois', 'urn:example:tours')), 'urn:example:path'('urn:example:orleans', 'urn:example:tours')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:chartres', 'urn:example:lemans'), 'urn:example:path'('urn:example:lemans', 'urn:example:angers')), 'urn:example:path'('urn:example:chartres', 'urn:example:angers')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:chartres', 'urn:example:lemans'), 'urn:example:path'('urn:example:lemans', 'urn:example:tours')), 'urn:example:path'('urn:example:chartres', 'urn:example:tours')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:lemans', 'urn:example:angers'), 'urn:example:path'('urn:example:angers', 'urn:example:nantes')), 'urn:example:path'('urn:example:lemans', 'urn:example:nantes')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:paris', 'urn:example:orleans'), 'urn:example:path'('urn:example:orleans', 'urn:example:tours')), 'urn:example:path'('urn:example:paris', 'urn:example:tours')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:paris', 'urn:example:chartres'), 'urn:example:path'('urn:example:chartres', 'urn:example:angers')), 'urn:example:path'('urn:example:paris', 'urn:example:angers')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:chartres', 'urn:example:lemans'), 'urn:example:path'('urn:example:lemans', 'urn:example:nantes')), 'urn:example:path'('urn:example:chartres', 'urn:example:nantes')). +step(('urn:example:path'(A, B):='urn:example:path'(A, C), 'urn:example:path'(C, B)), ('urn:example:path'('urn:example:paris', 'urn:example:lemans'), 'urn:example:path'('urn:example:lemans', 'urn:example:nantes')), 'urn:example:path'('urn:example:paris', 'urn:example:nantes')). diff --git a/logic-programming/output/hanoi.pl b/logic-programming/output/hanoi.pl new file mode 100644 index 000000000..a6ebf48b6 --- /dev/null +++ b/logic-programming/output/hanoi.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:move'(14, [left, centre, right])). diff --git a/logic-programming/output/lee.pl b/logic-programming/output/lee.pl new file mode 100644 index 000000000..065101888 --- /dev/null +++ b/logic-programming/output/lee.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:route'([[1, 1], [9, 8], [[[2, 3], [4, 5]], [[6, 6], [8, 8]]]], [[9, 8], [9, 7], [9, 6], [9, 5], [8, 5], [7, 5], [6, 5], [5, 5], [5, 4], [5, 3], [5, 2], [4, 2], [3, 2], [2, 2], [1, 2], [1, 1]])). diff --git a/logic-programming/output/matrix.pl b/logic-programming/output/matrix.pl new file mode 100644 index 000000000..597db6222 --- /dev/null +++ b/logic-programming/output/matrix.pl @@ -0,0 +1,11 @@ +:- op(1200, xfx, :=). + +answer('urn:example:determinant'([[2, -1, 0], [-1, 2, -1], [0, -1, 2]], 3.999999999999999)). +answer('urn:example:matrix_inversion'([[2, -1, 0], [-1, 2, -1], [0, -1, 2]], [[0.7499999999999999, 0.5000000000000001, 0.2500000000000001], [0.5000000000000001, 1.0000000000000004, 0.5000000000000002], [0.2500000000000001, 0.5000000000000002, 0.7500000000000001]])). +answer('urn:example:matrix_inversion'([[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], [[2.515624999999984, 0.48437499999999334, -1.2968749999999734, 0.3593749999999767], [0.48437499999999334, 0.14062499999999778, -0.32812499999999184, 0.14062499999999356], [-1.2968749999999734, -0.32812499999999184, 1.0156249999999707, -0.5781249999999781], [0.3593749999999767, 0.14062499999999356, -0.5781249999999781, 0.5156249999999853]])). +answer('urn:example:matrix_inv_triang'([[2, 0, 0], [-1, 2, 0], [0, -1, 2]], [[0.5, 0.0, 0.0], [0.25, 0.5, 0.0], [0.125, 0.25, 0.5]])). +answer('urn:example:matrix_multiply'([[[1, 2], [3, 4], [5, 6]], [[1, 1, 1], [1, 1, 1]]], [[3, 3, 3], [7, 7, 7], [11, 11, 11]])). +answer('urn:example:matrix_multiply'([[[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], [[2.515624999999984, 0.4843749999999933, -1.296874999999973, 0.3593749999999767], [0.4843749999999933, 0.1406249999999978, -0.3281249999999918, 0.1406249999999936], [-1.296874999999973, -0.3281249999999918, 1.015624999999971, -0.5781249999999781], [0.3593749999999767, 0.1406249999999936, -0.5781249999999781, 0.5156249999999853]]], [[1.0000000000000515, 6.217248937900877e-15, 1.7763568394002505e-14, 3.552713678800501e-15], [6.039613253960852e-14, 1.0000000000000107, 2.842170943040401e-14, 1.0658141036401503e-14], [1.7053025658242404e-13, 1.4210854715202004e-14, 1.0000000000000426, 4.263256414560601e-14], [8.526512829121202e-14, 1.7763568394002505e-15, 7.105427357601002e-14, 0.9999999999999929]])). +answer('urn:example:matrix_sum'([[[1, 2], [3, 4], [5, 6]], [[1, 2], [3, 4], [5, 6]]], [[2, 4], [6, 8], [10, 12]])). +answer('urn:example:cholesky_decomposition'([[25, 15, -5], [15, 18, 0], [-5, 0, 11]], [[5.0, 0, 0], [3.0, 3.0, 0], [-1.0, 1.0, 3.0]])). +answer('urn:example:cholesky_decomposition'([[18, 22, 54, 42], [22, 70, 86, 62], [54, 86, 174, 134], [42, 62, 134, 106]], [[4.242640687119285, 0, 0, 0], [5.185449728701349, 6.565905201197403, 0, 0], [12.727922061357857, 3.0460384954008553, 1.6497422479090704, 0], [9.899494936611667, 1.624553864213788, 1.8497110052313648, 1.3926212476456026]])). diff --git a/logic-programming/output/mi.pl b/logic-programming/output/mi.pl new file mode 100644 index 000000000..a3eeec7d5 --- /dev/null +++ b/logic-programming/output/mi.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:mi'(['urn:example:mi'(['urn:example:factorial'(s(s(s(s(s(0))))), s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(0)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))], [])], [])). diff --git a/logic-programming/output/multi-agent.pl b/logic-programming/output/multi-agent.pl new file mode 100644 index 000000000..e913a0239 --- /dev/null +++ b/logic-programming/output/multi-agent.pl @@ -0,0 +1,17 @@ +:- op(1200, xfx, :=). + +answer('urn:example:obligatory'('urn:example:complete:task'('urn:example:agent2', 'urn:example:task1'))). +answer('urn:example:obligatory'('urn:example:escalate:task'('urn:example:agent1', 'urn:example:task1'))). +answer('urn:example:permitted'('urn:example:execute:task'('urn:example:agent2', 'urn:example:task1'))). +answer('urn:example:violation'('urn:example:task1')). +answer('urn:example:sanction'('urn:example:agent2')). + +% +% Proof steps +% + +step(('urn:example:obligatory'('urn:example:complete:task'(A, B)):='urn:example:assigned'(B, A)), 'urn:example:assigned'('urn:example:task1', 'urn:example:agent2'), 'urn:example:obligatory'('urn:example:complete:task'('urn:example:agent2', 'urn:example:task1'))). +step(('urn:example:obligatory'('urn:example:escalate:task'(A, B)):='urn:example:role'(A, 'urn:example:manager'), 'urn:example:assigned'(B, _), 'urn:example:deadline'(B, C), 'urn:example:time:current'(D), D>=C, \+'urn:example:completed'(B)), ('urn:example:role'('urn:example:agent1', 'urn:example:manager'), 'urn:example:assigned'('urn:example:task1', 'urn:example:agent2'), 'urn:example:deadline'('urn:example:task1', 10), 'urn:example:time:current'(15), 15>=10, \+'urn:example:completed'('urn:example:task1')), 'urn:example:obligatory'('urn:example:escalate:task'('urn:example:agent1', 'urn:example:task1'))). +step(('urn:example:permitted'('urn:example:execute:task'(A, B)):='urn:example:role'(A, 'urn:example:employee'), 'urn:example:assigned'(B, A)), ('urn:example:role'('urn:example:agent2', 'urn:example:employee'), 'urn:example:assigned'('urn:example:task1', 'urn:example:agent2')), 'urn:example:permitted'('urn:example:execute:task'('urn:example:agent2', 'urn:example:task1'))). +step(('urn:example:violation'(A):='urn:example:obligatory'('urn:example:complete:task'(_, A)), 'urn:example:time:current'(B), 'urn:example:deadline'(A, C), B>C, \+'urn:example:completed'(A)), ('urn:example:obligatory'('urn:example:complete:task'('urn:example:agent2', 'urn:example:task1')), 'urn:example:time:current'(15), 'urn:example:deadline'('urn:example:task1', 10), 15>10, \+'urn:example:completed'('urn:example:task1')), 'urn:example:violation'('urn:example:task1')). +step(('urn:example:sanction'(A):='urn:example:violation'(B), 'urn:example:assigned'(B, A)), ('urn:example:violation'('urn:example:task1'), 'urn:example:assigned'('urn:example:task1', 'urn:example:agent2')), 'urn:example:sanction'('urn:example:agent2')). diff --git a/logic-programming/output/padovan.pl b/logic-programming/output/padovan.pl new file mode 100644 index 000000000..104657a41 --- /dev/null +++ b/logic-programming/output/padovan.pl @@ -0,0 +1,14 @@ +:- op(1200, xfx, :=). + +answer('urn:example:padovan'(1, 1)). +answer('urn:example:padovan'(2, 1)). +answer('urn:example:padovan'(3, 1)). +answer('urn:example:padovan'(4, 2)). +answer('urn:example:padovan'(5, 2)). +answer('urn:example:padovan'(91, 70748973084)). +answer('urn:example:padovan'(283, 19834325738278984504790864536272129)). +answer('urn:example:padovan'(3674, 26178594930998300129122144750852069608549403205774929555079079707081575465552356148508452550483580612948221886219497991654772054359076809450166551553886580037212540081075958680409828886869538010195558848488217299128261230125392693494793565831379519817637833179199806547822062027975157112247040373170650000852653450124493609094492793737517355809497791251385318177510845806782564433990788816833563231575956567960805822051433568191271295650424612344171)). +answer('urn:example:plastic_ratio'(1, 1)). +answer('urn:example:plastic_ratio'(10, 1.3333333333333333)). +answer('urn:example:plastic_ratio'(100, 1.324717957244746)). +answer('urn:example:plastic_ratio'(1000, 1.3247179572447458)). diff --git a/logic-programming/output/peano.pl b/logic-programming/output/peano.pl new file mode 100644 index 000000000..b940fb3b6 --- /dev/null +++ b/logic-programming/output/peano.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer(('urn:example:multiply'(s(0), s(s(0)), s(s(0))), 'urn:example:add'(s(s(0)), s(s(s(0))), s(s(s(s(s(0)))))), 'urn:example:factorial'(s(s(s(s(s(0))))), s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(s(0))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))). diff --git a/logic-programming/output/pi.pl b/logic-programming/output/pi.pl new file mode 100644 index 000000000..575788a8f --- /dev/null +++ b/logic-programming/output/pi.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:pi'(100000, 3.141592653589792)). diff --git a/logic-programming/output/polygon.pl b/logic-programming/output/polygon.pl new file mode 100644 index 000000000..110f71e1c --- /dev/null +++ b/logic-programming/output/polygon.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:area'([[3, 2], [6, 2], [7, 6], [4, 6], [5, 5], [5, 3], [3, 2]], 7.5)). diff --git a/logic-programming/output/polynomial.pl b/logic-programming/output/polynomial.pl new file mode 100644 index 000000000..8d8648c0d --- /dev/null +++ b/logic-programming/output/polynomial.pl @@ -0,0 +1,4 @@ +:- op(1200, xfx, :=). + +answer('urn:example:roots'([[1, 0], [-10, 0], [35, 0], [-50, 0], [24, 0]], [[4.000000007450581, 0.0], [2.9999999925494194, 0.0], [1.9999999925494194, 0.0], [1.0000000074505806, 0.0]])). +answer('urn:example:roots'([[1, 0], [-9, -5], [14, 33], [24, -44], [-26, 0]], [[3.0000000000000036, 2.000000000000001], [5.000000000000005, 0.9999999999999927], [-5.773159728050814e-15, 1.0000000000000027], [0.9999999999999962, 1.0000000000000036]])). diff --git a/logic-programming/output/prime.pl b/logic-programming/output/prime.pl new file mode 100644 index 000000000..4b4124e19 --- /dev/null +++ b/logic-programming/output/prime.pl @@ -0,0 +1,8 @@ +:- op(1200, xfx, :=). + +answer('urn:example:primerange'(0, 100, [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97])). +answer('urn:example:primerange'(1000000, 1000100, [1000003, 1000033, 1000037, 1000039, 1000081, 1000099])). +answer('urn:example:totient'(271, 270)). +answer('urn:example:totient'(2718281, 2718280)). +answer('urn:example:totient'(27182818284, 8994800640)). +answer('urn:example:totient'(271828182845904, 87459116512768)). diff --git a/logic-programming/output/sdcoding.pl b/logic-programming/output/sdcoding.pl new file mode 100644 index 000000000..e7398f3fa --- /dev/null +++ b/logic-programming/output/sdcoding.pl @@ -0,0 +1,25 @@ +:- op(1200, xfx, :=). + +answer('urn:example:sdcoding'(1, 1)). +answer('urn:example:sdcoding'(3, 3)). +answer('urn:example:sdcoding'(0, 0)). +answer('urn:example:sdcoding'(2, 2)). + +% +% Proof steps +% + +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(0, 1), 'urn:example:sdconot'(0, 1)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(0, 3), 'urn:example:sdconot'(0, 3)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(1, 0), 'urn:example:sdconot'(1, 0)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(1, 1), 'urn:example:sdconot'(1, 1)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(1, 2), 'urn:example:sdconot'(1, 2)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(2, 1), 'urn:example:sdconot'(2, 1)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(2, 3), 'urn:example:sdconot'(2, 3)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(3, 1), 'urn:example:sdconot'(3, 1)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(3, 3), 'urn:example:sdconot'(3, 3)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(3, 0), 'urn:example:sdconot'(3, 0)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(3, 2), 'urn:example:sdconot'(3, 2)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(0, 0), 'urn:example:sdconot'(0, 0)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(2, 0), 'urn:example:sdconot'(2, 0)). +step(('urn:example:sdconot'(A, B):='urn:example:sdc'(A, B)), 'urn:example:sdc'(2, 2), 'urn:example:sdconot'(2, 2)). diff --git a/logic-programming/output/socrates.pl b/logic-programming/output/socrates.pl new file mode 100644 index 000000000..b78a75942 --- /dev/null +++ b/logic-programming/output/socrates.pl @@ -0,0 +1,10 @@ +:- op(1200, xfx, :=). + +answer('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:Socrates', 'urn:example:Man')). +answer('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:Socrates', 'urn:example:Mortal')). + +% +% Proof steps +% + +step(('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:Mortal'):='http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(A, 'urn:example:Man')), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:Socrates', 'urn:example:Man'), 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:Socrates', 'urn:example:Mortal')). diff --git a/logic-programming/output/sudoku.pl b/logic-programming/output/sudoku.pl new file mode 100644 index 000000000..10deac3a5 --- /dev/null +++ b/logic-programming/output/sudoku.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:sudoku'([[1, 5, 6, 8, 9, 4, 3, 2, 7], [9, 2, 8, 7, 3, 1, 4, 5, 6], [4, 7, 3, 2, 6, 5, 9, 1, 8], [3, 6, 2, 4, 1, 7, 8, 9, 5], [7, 8, 9, 3, 5, 2, 6, 4, 1], [5, 1, 4, 9, 8, 6, 2, 7, 3], [8, 3, 1, 5, 4, 9, 7, 6, 2], [6, 9, 7, 1, 2, 3, 5, 8, 4], [2, 4, 5, 6, 7, 8, 1, 3, 9]])). diff --git a/logic-programming/output/tak.pl b/logic-programming/output/tak.pl new file mode 100644 index 000000000..7dbaa28dd --- /dev/null +++ b/logic-programming/output/tak.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:tak'([34, 13, 8], 13)). diff --git a/logic-programming/output/turing.pl b/logic-programming/output/turing.pl new file mode 100644 index 000000000..ceec581fe --- /dev/null +++ b/logic-programming/output/turing.pl @@ -0,0 +1,6 @@ +:- op(1200, xfx, :=). + +answer('urn:example:compute'([1, 0, 1, 0, 0, 1], [1, 0, 1, 0, 1, 0, "#"])). +answer('urn:example:compute'([1, 0, 1, 1, 1, 1], [1, 1, 0, 0, 0, 0, "#"])). +answer('urn:example:compute'([1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, "#"])). +answer('urn:example:compute'([], [1, "#"])). diff --git a/logic-programming/output/workplace-benchmark.pl b/logic-programming/output/workplace-benchmark.pl new file mode 100644 index 000000000..bf8160849 --- /dev/null +++ b/logic-programming/output/workplace-benchmark.pl @@ -0,0 +1,60008 @@ +:- op(1200, xfx, :=). + +answer('urn:example:prepare'(1, 30000)). +answer('urn:example:complies'('urn:example:bob1', true)). +answer('urn:example:complies'('urn:example:bob2', true)). +answer('urn:example:complies'('urn:example:bob3', true)). +answer('urn:example:complies'('urn:example:bob4', true)). +answer('urn:example:complies'('urn:example:bob5', true)). +answer('urn:example:complies'('urn:example:bob6', true)). +answer('urn:example:complies'('urn:example:bob7', true)). +answer('urn:example:complies'('urn:example:bob8', true)). +answer('urn:example:complies'('urn:example:bob9', true)). +answer('urn:example:complies'('urn:example:bob10', true)). +answer('urn:example:complies'('urn:example:bob11', true)). +answer('urn:example:complies'('urn:example:bob12', true)). +answer('urn:example:complies'('urn:example:bob13', true)). +answer('urn:example:complies'('urn:example:bob14', true)). +answer('urn:example:complies'('urn:example:bob15', true)). +answer('urn:example:complies'('urn:example:bob16', true)). +answer('urn:example:complies'('urn:example:bob17', true)). +answer('urn:example:complies'('urn:example:bob18', true)). +answer('urn:example:complies'('urn:example:bob19', true)). +answer('urn:example:complies'('urn:example:bob20', true)). +answer('urn:example:complies'('urn:example:bob21', true)). +answer('urn:example:complies'('urn:example:bob22', true)). +answer('urn:example:complies'('urn:example:bob23', true)). +answer('urn:example:complies'('urn:example:bob24', true)). +answer('urn:example:complies'('urn:example:bob25', true)). +answer('urn:example:complies'('urn:example:bob26', true)). +answer('urn:example:complies'('urn:example:bob27', true)). +answer('urn:example:complies'('urn:example:bob28', true)). +answer('urn:example:complies'('urn:example:bob29', true)). +answer('urn:example:complies'('urn:example:bob30', true)). +answer('urn:example:complies'('urn:example:bob31', true)). +answer('urn:example:complies'('urn:example:bob32', true)). +answer('urn:example:complies'('urn:example:bob33', true)). +answer('urn:example:complies'('urn:example:bob34', true)). +answer('urn:example:complies'('urn:example:bob35', true)). +answer('urn:example:complies'('urn:example:bob36', true)). +answer('urn:example:complies'('urn:example:bob37', true)). +answer('urn:example:complies'('urn:example:bob38', true)). +answer('urn:example:complies'('urn:example:bob39', true)). +answer('urn:example:complies'('urn:example:bob40', true)). +answer('urn:example:complies'('urn:example:bob41', true)). +answer('urn:example:complies'('urn:example:bob42', true)). +answer('urn:example:complies'('urn:example:bob43', true)). +answer('urn:example:complies'('urn:example:bob44', true)). +answer('urn:example:complies'('urn:example:bob45', true)). +answer('urn:example:complies'('urn:example:bob46', true)). +answer('urn:example:complies'('urn:example:bob47', true)). +answer('urn:example:complies'('urn:example:bob48', true)). +answer('urn:example:complies'('urn:example:bob49', true)). +answer('urn:example:complies'('urn:example:bob50', true)). +answer('urn:example:complies'('urn:example:bob51', true)). +answer('urn:example:complies'('urn:example:bob52', true)). +answer('urn:example:complies'('urn:example:bob53', true)). +answer('urn:example:complies'('urn:example:bob54', true)). +answer('urn:example:complies'('urn:example:bob55', true)). +answer('urn:example:complies'('urn:example:bob56', true)). +answer('urn:example:complies'('urn:example:bob57', true)). +answer('urn:example:complies'('urn:example:bob58', true)). +answer('urn:example:complies'('urn:example:bob59', true)). +answer('urn:example:complies'('urn:example:bob60', true)). +answer('urn:example:complies'('urn:example:bob61', true)). +answer('urn:example:complies'('urn:example:bob62', true)). +answer('urn:example:complies'('urn:example:bob63', true)). +answer('urn:example:complies'('urn:example:bob64', true)). +answer('urn:example:complies'('urn:example:bob65', true)). +answer('urn:example:complies'('urn:example:bob66', true)). +answer('urn:example:complies'('urn:example:bob67', true)). +answer('urn:example:complies'('urn:example:bob68', true)). +answer('urn:example:complies'('urn:example:bob69', true)). +answer('urn:example:complies'('urn:example:bob70', true)). +answer('urn:example:complies'('urn:example:bob71', true)). +answer('urn:example:complies'('urn:example:bob72', true)). +answer('urn:example:complies'('urn:example:bob73', true)). +answer('urn:example:complies'('urn:example:bob74', true)). +answer('urn:example:complies'('urn:example:bob75', true)). +answer('urn:example:complies'('urn:example:bob76', true)). +answer('urn:example:complies'('urn:example:bob77', true)). +answer('urn:example:complies'('urn:example:bob78', true)). +answer('urn:example:complies'('urn:example:bob79', true)). +answer('urn:example:complies'('urn:example:bob80', true)). +answer('urn:example:complies'('urn:example:bob81', true)). +answer('urn:example:complies'('urn:example:bob82', true)). +answer('urn:example:complies'('urn:example:bob83', true)). +answer('urn:example:complies'('urn:example:bob84', true)). +answer('urn:example:complies'('urn:example:bob85', true)). +answer('urn:example:complies'('urn:example:bob86', true)). +answer('urn:example:complies'('urn:example:bob87', true)). +answer('urn:example:complies'('urn:example:bob88', true)). +answer('urn:example:complies'('urn:example:bob89', true)). +answer('urn:example:complies'('urn:example:bob90', true)). +answer('urn:example:complies'('urn:example:bob91', true)). +answer('urn:example:complies'('urn:example:bob92', true)). +answer('urn:example:complies'('urn:example:bob93', true)). +answer('urn:example:complies'('urn:example:bob94', true)). +answer('urn:example:complies'('urn:example:bob95', true)). +answer('urn:example:complies'('urn:example:bob96', true)). +answer('urn:example:complies'('urn:example:bob97', true)). +answer('urn:example:complies'('urn:example:bob98', true)). +answer('urn:example:complies'('urn:example:bob99', true)). +answer('urn:example:complies'('urn:example:bob100', true)). +answer('urn:example:complies'('urn:example:bob101', true)). +answer('urn:example:complies'('urn:example:bob102', true)). +answer('urn:example:complies'('urn:example:bob103', true)). +answer('urn:example:complies'('urn:example:bob104', true)). +answer('urn:example:complies'('urn:example:bob105', true)). +answer('urn:example:complies'('urn:example:bob106', true)). +answer('urn:example:complies'('urn:example:bob107', true)). +answer('urn:example:complies'('urn:example:bob108', true)). +answer('urn:example:complies'('urn:example:bob109', true)). +answer('urn:example:complies'('urn:example:bob110', true)). +answer('urn:example:complies'('urn:example:bob111', true)). +answer('urn:example:complies'('urn:example:bob112', true)). +answer('urn:example:complies'('urn:example:bob113', true)). +answer('urn:example:complies'('urn:example:bob114', true)). +answer('urn:example:complies'('urn:example:bob115', true)). +answer('urn:example:complies'('urn:example:bob116', true)). +answer('urn:example:complies'('urn:example:bob117', true)). +answer('urn:example:complies'('urn:example:bob118', true)). +answer('urn:example:complies'('urn:example:bob119', true)). +answer('urn:example:complies'('urn:example:bob120', true)). +answer('urn:example:complies'('urn:example:bob121', true)). +answer('urn:example:complies'('urn:example:bob122', true)). +answer('urn:example:complies'('urn:example:bob123', true)). +answer('urn:example:complies'('urn:example:bob124', true)). +answer('urn:example:complies'('urn:example:bob125', true)). +answer('urn:example:complies'('urn:example:bob126', true)). +answer('urn:example:complies'('urn:example:bob127', true)). +answer('urn:example:complies'('urn:example:bob128', true)). +answer('urn:example:complies'('urn:example:bob129', true)). +answer('urn:example:complies'('urn:example:bob130', true)). +answer('urn:example:complies'('urn:example:bob131', true)). +answer('urn:example:complies'('urn:example:bob132', true)). +answer('urn:example:complies'('urn:example:bob133', true)). +answer('urn:example:complies'('urn:example:bob134', true)). +answer('urn:example:complies'('urn:example:bob135', true)). +answer('urn:example:complies'('urn:example:bob136', true)). +answer('urn:example:complies'('urn:example:bob137', true)). +answer('urn:example:complies'('urn:example:bob138', true)). +answer('urn:example:complies'('urn:example:bob139', true)). +answer('urn:example:complies'('urn:example:bob140', true)). +answer('urn:example:complies'('urn:example:bob141', true)). +answer('urn:example:complies'('urn:example:bob142', true)). +answer('urn:example:complies'('urn:example:bob143', true)). +answer('urn:example:complies'('urn:example:bob144', true)). +answer('urn:example:complies'('urn:example:bob145', true)). +answer('urn:example:complies'('urn:example:bob146', true)). +answer('urn:example:complies'('urn:example:bob147', true)). +answer('urn:example:complies'('urn:example:bob148', true)). +answer('urn:example:complies'('urn:example:bob149', true)). +answer('urn:example:complies'('urn:example:bob150', true)). +answer('urn:example:complies'('urn:example:bob151', true)). +answer('urn:example:complies'('urn:example:bob152', true)). +answer('urn:example:complies'('urn:example:bob153', true)). +answer('urn:example:complies'('urn:example:bob154', true)). +answer('urn:example:complies'('urn:example:bob155', true)). +answer('urn:example:complies'('urn:example:bob156', true)). +answer('urn:example:complies'('urn:example:bob157', true)). +answer('urn:example:complies'('urn:example:bob158', true)). +answer('urn:example:complies'('urn:example:bob159', true)). +answer('urn:example:complies'('urn:example:bob160', true)). +answer('urn:example:complies'('urn:example:bob161', true)). +answer('urn:example:complies'('urn:example:bob162', true)). +answer('urn:example:complies'('urn:example:bob163', true)). +answer('urn:example:complies'('urn:example:bob164', true)). +answer('urn:example:complies'('urn:example:bob165', true)). +answer('urn:example:complies'('urn:example:bob166', true)). +answer('urn:example:complies'('urn:example:bob167', true)). +answer('urn:example:complies'('urn:example:bob168', true)). +answer('urn:example:complies'('urn:example:bob169', true)). +answer('urn:example:complies'('urn:example:bob170', true)). +answer('urn:example:complies'('urn:example:bob171', true)). +answer('urn:example:complies'('urn:example:bob172', true)). +answer('urn:example:complies'('urn:example:bob173', true)). +answer('urn:example:complies'('urn:example:bob174', true)). +answer('urn:example:complies'('urn:example:bob175', true)). +answer('urn:example:complies'('urn:example:bob176', true)). +answer('urn:example:complies'('urn:example:bob177', true)). +answer('urn:example:complies'('urn:example:bob178', true)). +answer('urn:example:complies'('urn:example:bob179', true)). +answer('urn:example:complies'('urn:example:bob180', true)). +answer('urn:example:complies'('urn:example:bob181', true)). +answer('urn:example:complies'('urn:example:bob182', true)). +answer('urn:example:complies'('urn:example:bob183', true)). +answer('urn:example:complies'('urn:example:bob184', true)). +answer('urn:example:complies'('urn:example:bob185', true)). +answer('urn:example:complies'('urn:example:bob186', true)). +answer('urn:example:complies'('urn:example:bob187', true)). +answer('urn:example:complies'('urn:example:bob188', true)). +answer('urn:example:complies'('urn:example:bob189', true)). +answer('urn:example:complies'('urn:example:bob190', true)). +answer('urn:example:complies'('urn:example:bob191', true)). +answer('urn:example:complies'('urn:example:bob192', true)). +answer('urn:example:complies'('urn:example:bob193', true)). +answer('urn:example:complies'('urn:example:bob194', true)). +answer('urn:example:complies'('urn:example:bob195', true)). +answer('urn:example:complies'('urn:example:bob196', true)). +answer('urn:example:complies'('urn:example:bob197', true)). +answer('urn:example:complies'('urn:example:bob198', true)). +answer('urn:example:complies'('urn:example:bob199', true)). +answer('urn:example:complies'('urn:example:bob200', true)). +answer('urn:example:complies'('urn:example:bob201', true)). +answer('urn:example:complies'('urn:example:bob202', true)). +answer('urn:example:complies'('urn:example:bob203', true)). +answer('urn:example:complies'('urn:example:bob204', true)). +answer('urn:example:complies'('urn:example:bob205', true)). +answer('urn:example:complies'('urn:example:bob206', true)). +answer('urn:example:complies'('urn:example:bob207', true)). +answer('urn:example:complies'('urn:example:bob208', true)). +answer('urn:example:complies'('urn:example:bob209', true)). +answer('urn:example:complies'('urn:example:bob210', true)). +answer('urn:example:complies'('urn:example:bob211', true)). +answer('urn:example:complies'('urn:example:bob212', true)). +answer('urn:example:complies'('urn:example:bob213', true)). +answer('urn:example:complies'('urn:example:bob214', true)). +answer('urn:example:complies'('urn:example:bob215', true)). +answer('urn:example:complies'('urn:example:bob216', true)). +answer('urn:example:complies'('urn:example:bob217', true)). +answer('urn:example:complies'('urn:example:bob218', true)). +answer('urn:example:complies'('urn:example:bob219', true)). +answer('urn:example:complies'('urn:example:bob220', true)). +answer('urn:example:complies'('urn:example:bob221', true)). +answer('urn:example:complies'('urn:example:bob222', true)). +answer('urn:example:complies'('urn:example:bob223', true)). +answer('urn:example:complies'('urn:example:bob224', true)). +answer('urn:example:complies'('urn:example:bob225', true)). +answer('urn:example:complies'('urn:example:bob226', true)). +answer('urn:example:complies'('urn:example:bob227', true)). +answer('urn:example:complies'('urn:example:bob228', true)). +answer('urn:example:complies'('urn:example:bob229', true)). +answer('urn:example:complies'('urn:example:bob230', true)). +answer('urn:example:complies'('urn:example:bob231', true)). +answer('urn:example:complies'('urn:example:bob232', true)). +answer('urn:example:complies'('urn:example:bob233', true)). +answer('urn:example:complies'('urn:example:bob234', true)). +answer('urn:example:complies'('urn:example:bob235', true)). +answer('urn:example:complies'('urn:example:bob236', true)). +answer('urn:example:complies'('urn:example:bob237', true)). +answer('urn:example:complies'('urn:example:bob238', true)). +answer('urn:example:complies'('urn:example:bob239', true)). +answer('urn:example:complies'('urn:example:bob240', true)). +answer('urn:example:complies'('urn:example:bob241', true)). +answer('urn:example:complies'('urn:example:bob242', true)). +answer('urn:example:complies'('urn:example:bob243', true)). +answer('urn:example:complies'('urn:example:bob244', true)). +answer('urn:example:complies'('urn:example:bob245', true)). +answer('urn:example:complies'('urn:example:bob246', true)). +answer('urn:example:complies'('urn:example:bob247', true)). +answer('urn:example:complies'('urn:example:bob248', true)). +answer('urn:example:complies'('urn:example:bob249', true)). +answer('urn:example:complies'('urn:example:bob250', true)). +answer('urn:example:complies'('urn:example:bob251', true)). +answer('urn:example:complies'('urn:example:bob252', true)). +answer('urn:example:complies'('urn:example:bob253', true)). +answer('urn:example:complies'('urn:example:bob254', true)). +answer('urn:example:complies'('urn:example:bob255', true)). +answer('urn:example:complies'('urn:example:bob256', true)). +answer('urn:example:complies'('urn:example:bob257', true)). +answer('urn:example:complies'('urn:example:bob258', true)). +answer('urn:example:complies'('urn:example:bob259', true)). +answer('urn:example:complies'('urn:example:bob260', true)). +answer('urn:example:complies'('urn:example:bob261', true)). +answer('urn:example:complies'('urn:example:bob262', true)). +answer('urn:example:complies'('urn:example:bob263', true)). +answer('urn:example:complies'('urn:example:bob264', true)). +answer('urn:example:complies'('urn:example:bob265', true)). +answer('urn:example:complies'('urn:example:bob266', true)). +answer('urn:example:complies'('urn:example:bob267', true)). +answer('urn:example:complies'('urn:example:bob268', true)). +answer('urn:example:complies'('urn:example:bob269', true)). +answer('urn:example:complies'('urn:example:bob270', true)). +answer('urn:example:complies'('urn:example:bob271', true)). +answer('urn:example:complies'('urn:example:bob272', true)). +answer('urn:example:complies'('urn:example:bob273', true)). +answer('urn:example:complies'('urn:example:bob274', true)). +answer('urn:example:complies'('urn:example:bob275', true)). +answer('urn:example:complies'('urn:example:bob276', true)). +answer('urn:example:complies'('urn:example:bob277', true)). +answer('urn:example:complies'('urn:example:bob278', true)). +answer('urn:example:complies'('urn:example:bob279', true)). +answer('urn:example:complies'('urn:example:bob280', true)). +answer('urn:example:complies'('urn:example:bob281', true)). +answer('urn:example:complies'('urn:example:bob282', true)). +answer('urn:example:complies'('urn:example:bob283', true)). +answer('urn:example:complies'('urn:example:bob284', true)). +answer('urn:example:complies'('urn:example:bob285', true)). +answer('urn:example:complies'('urn:example:bob286', true)). +answer('urn:example:complies'('urn:example:bob287', true)). +answer('urn:example:complies'('urn:example:bob288', true)). +answer('urn:example:complies'('urn:example:bob289', true)). +answer('urn:example:complies'('urn:example:bob290', true)). +answer('urn:example:complies'('urn:example:bob291', true)). +answer('urn:example:complies'('urn:example:bob292', true)). +answer('urn:example:complies'('urn:example:bob293', true)). +answer('urn:example:complies'('urn:example:bob294', true)). +answer('urn:example:complies'('urn:example:bob295', true)). +answer('urn:example:complies'('urn:example:bob296', true)). +answer('urn:example:complies'('urn:example:bob297', true)). +answer('urn:example:complies'('urn:example:bob298', true)). +answer('urn:example:complies'('urn:example:bob299', true)). +answer('urn:example:complies'('urn:example:bob300', true)). +answer('urn:example:complies'('urn:example:bob301', true)). +answer('urn:example:complies'('urn:example:bob302', true)). +answer('urn:example:complies'('urn:example:bob303', true)). +answer('urn:example:complies'('urn:example:bob304', true)). +answer('urn:example:complies'('urn:example:bob305', true)). +answer('urn:example:complies'('urn:example:bob306', true)). +answer('urn:example:complies'('urn:example:bob307', true)). +answer('urn:example:complies'('urn:example:bob308', true)). +answer('urn:example:complies'('urn:example:bob309', true)). +answer('urn:example:complies'('urn:example:bob310', true)). +answer('urn:example:complies'('urn:example:bob311', true)). +answer('urn:example:complies'('urn:example:bob312', true)). +answer('urn:example:complies'('urn:example:bob313', true)). +answer('urn:example:complies'('urn:example:bob314', true)). +answer('urn:example:complies'('urn:example:bob315', true)). +answer('urn:example:complies'('urn:example:bob316', true)). +answer('urn:example:complies'('urn:example:bob317', true)). +answer('urn:example:complies'('urn:example:bob318', true)). +answer('urn:example:complies'('urn:example:bob319', true)). +answer('urn:example:complies'('urn:example:bob320', true)). +answer('urn:example:complies'('urn:example:bob321', true)). +answer('urn:example:complies'('urn:example:bob322', true)). +answer('urn:example:complies'('urn:example:bob323', true)). +answer('urn:example:complies'('urn:example:bob324', true)). +answer('urn:example:complies'('urn:example:bob325', true)). +answer('urn:example:complies'('urn:example:bob326', true)). +answer('urn:example:complies'('urn:example:bob327', true)). +answer('urn:example:complies'('urn:example:bob328', true)). +answer('urn:example:complies'('urn:example:bob329', true)). +answer('urn:example:complies'('urn:example:bob330', true)). +answer('urn:example:complies'('urn:example:bob331', true)). +answer('urn:example:complies'('urn:example:bob332', true)). +answer('urn:example:complies'('urn:example:bob333', true)). +answer('urn:example:complies'('urn:example:bob334', true)). +answer('urn:example:complies'('urn:example:bob335', true)). +answer('urn:example:complies'('urn:example:bob336', true)). +answer('urn:example:complies'('urn:example:bob337', true)). +answer('urn:example:complies'('urn:example:bob338', true)). +answer('urn:example:complies'('urn:example:bob339', true)). +answer('urn:example:complies'('urn:example:bob340', true)). +answer('urn:example:complies'('urn:example:bob341', true)). +answer('urn:example:complies'('urn:example:bob342', true)). +answer('urn:example:complies'('urn:example:bob343', true)). +answer('urn:example:complies'('urn:example:bob344', true)). +answer('urn:example:complies'('urn:example:bob345', true)). +answer('urn:example:complies'('urn:example:bob346', true)). +answer('urn:example:complies'('urn:example:bob347', true)). +answer('urn:example:complies'('urn:example:bob348', true)). +answer('urn:example:complies'('urn:example:bob349', true)). +answer('urn:example:complies'('urn:example:bob350', true)). +answer('urn:example:complies'('urn:example:bob351', true)). +answer('urn:example:complies'('urn:example:bob352', true)). +answer('urn:example:complies'('urn:example:bob353', true)). +answer('urn:example:complies'('urn:example:bob354', true)). +answer('urn:example:complies'('urn:example:bob355', true)). +answer('urn:example:complies'('urn:example:bob356', true)). +answer('urn:example:complies'('urn:example:bob357', true)). +answer('urn:example:complies'('urn:example:bob358', true)). +answer('urn:example:complies'('urn:example:bob359', true)). +answer('urn:example:complies'('urn:example:bob360', true)). +answer('urn:example:complies'('urn:example:bob361', true)). +answer('urn:example:complies'('urn:example:bob362', true)). +answer('urn:example:complies'('urn:example:bob363', true)). +answer('urn:example:complies'('urn:example:bob364', true)). +answer('urn:example:complies'('urn:example:bob365', true)). +answer('urn:example:complies'('urn:example:bob366', true)). +answer('urn:example:complies'('urn:example:bob367', true)). +answer('urn:example:complies'('urn:example:bob368', true)). +answer('urn:example:complies'('urn:example:bob369', true)). +answer('urn:example:complies'('urn:example:bob370', true)). +answer('urn:example:complies'('urn:example:bob371', true)). +answer('urn:example:complies'('urn:example:bob372', true)). +answer('urn:example:complies'('urn:example:bob373', true)). +answer('urn:example:complies'('urn:example:bob374', true)). +answer('urn:example:complies'('urn:example:bob375', true)). +answer('urn:example:complies'('urn:example:bob376', true)). +answer('urn:example:complies'('urn:example:bob377', true)). +answer('urn:example:complies'('urn:example:bob378', true)). +answer('urn:example:complies'('urn:example:bob379', true)). +answer('urn:example:complies'('urn:example:bob380', true)). +answer('urn:example:complies'('urn:example:bob381', true)). +answer('urn:example:complies'('urn:example:bob382', true)). +answer('urn:example:complies'('urn:example:bob383', true)). +answer('urn:example:complies'('urn:example:bob384', true)). +answer('urn:example:complies'('urn:example:bob385', true)). +answer('urn:example:complies'('urn:example:bob386', true)). +answer('urn:example:complies'('urn:example:bob387', true)). +answer('urn:example:complies'('urn:example:bob388', true)). +answer('urn:example:complies'('urn:example:bob389', true)). +answer('urn:example:complies'('urn:example:bob390', true)). +answer('urn:example:complies'('urn:example:bob391', true)). +answer('urn:example:complies'('urn:example:bob392', true)). +answer('urn:example:complies'('urn:example:bob393', true)). +answer('urn:example:complies'('urn:example:bob394', true)). +answer('urn:example:complies'('urn:example:bob395', true)). +answer('urn:example:complies'('urn:example:bob396', true)). +answer('urn:example:complies'('urn:example:bob397', true)). +answer('urn:example:complies'('urn:example:bob398', true)). +answer('urn:example:complies'('urn:example:bob399', true)). +answer('urn:example:complies'('urn:example:bob400', true)). +answer('urn:example:complies'('urn:example:bob401', true)). +answer('urn:example:complies'('urn:example:bob402', true)). +answer('urn:example:complies'('urn:example:bob403', true)). +answer('urn:example:complies'('urn:example:bob404', true)). +answer('urn:example:complies'('urn:example:bob405', true)). +answer('urn:example:complies'('urn:example:bob406', true)). +answer('urn:example:complies'('urn:example:bob407', true)). +answer('urn:example:complies'('urn:example:bob408', true)). +answer('urn:example:complies'('urn:example:bob409', true)). +answer('urn:example:complies'('urn:example:bob410', true)). +answer('urn:example:complies'('urn:example:bob411', true)). +answer('urn:example:complies'('urn:example:bob412', true)). +answer('urn:example:complies'('urn:example:bob413', true)). +answer('urn:example:complies'('urn:example:bob414', true)). +answer('urn:example:complies'('urn:example:bob415', true)). +answer('urn:example:complies'('urn:example:bob416', true)). +answer('urn:example:complies'('urn:example:bob417', true)). +answer('urn:example:complies'('urn:example:bob418', true)). +answer('urn:example:complies'('urn:example:bob419', true)). +answer('urn:example:complies'('urn:example:bob420', true)). +answer('urn:example:complies'('urn:example:bob421', true)). +answer('urn:example:complies'('urn:example:bob422', true)). +answer('urn:example:complies'('urn:example:bob423', true)). +answer('urn:example:complies'('urn:example:bob424', true)). +answer('urn:example:complies'('urn:example:bob425', true)). +answer('urn:example:complies'('urn:example:bob426', true)). +answer('urn:example:complies'('urn:example:bob427', true)). +answer('urn:example:complies'('urn:example:bob428', true)). +answer('urn:example:complies'('urn:example:bob429', true)). +answer('urn:example:complies'('urn:example:bob430', true)). +answer('urn:example:complies'('urn:example:bob431', true)). +answer('urn:example:complies'('urn:example:bob432', true)). +answer('urn:example:complies'('urn:example:bob433', true)). +answer('urn:example:complies'('urn:example:bob434', true)). +answer('urn:example:complies'('urn:example:bob435', true)). +answer('urn:example:complies'('urn:example:bob436', true)). +answer('urn:example:complies'('urn:example:bob437', true)). +answer('urn:example:complies'('urn:example:bob438', true)). +answer('urn:example:complies'('urn:example:bob439', true)). +answer('urn:example:complies'('urn:example:bob440', true)). +answer('urn:example:complies'('urn:example:bob441', true)). +answer('urn:example:complies'('urn:example:bob442', true)). +answer('urn:example:complies'('urn:example:bob443', true)). +answer('urn:example:complies'('urn:example:bob444', true)). +answer('urn:example:complies'('urn:example:bob445', true)). +answer('urn:example:complies'('urn:example:bob446', true)). +answer('urn:example:complies'('urn:example:bob447', true)). +answer('urn:example:complies'('urn:example:bob448', true)). +answer('urn:example:complies'('urn:example:bob449', true)). +answer('urn:example:complies'('urn:example:bob450', true)). +answer('urn:example:complies'('urn:example:bob451', true)). +answer('urn:example:complies'('urn:example:bob452', true)). +answer('urn:example:complies'('urn:example:bob453', true)). +answer('urn:example:complies'('urn:example:bob454', true)). +answer('urn:example:complies'('urn:example:bob455', true)). +answer('urn:example:complies'('urn:example:bob456', true)). +answer('urn:example:complies'('urn:example:bob457', true)). +answer('urn:example:complies'('urn:example:bob458', true)). +answer('urn:example:complies'('urn:example:bob459', true)). +answer('urn:example:complies'('urn:example:bob460', true)). +answer('urn:example:complies'('urn:example:bob461', true)). +answer('urn:example:complies'('urn:example:bob462', true)). +answer('urn:example:complies'('urn:example:bob463', true)). +answer('urn:example:complies'('urn:example:bob464', true)). +answer('urn:example:complies'('urn:example:bob465', true)). +answer('urn:example:complies'('urn:example:bob466', true)). +answer('urn:example:complies'('urn:example:bob467', true)). +answer('urn:example:complies'('urn:example:bob468', true)). +answer('urn:example:complies'('urn:example:bob469', true)). +answer('urn:example:complies'('urn:example:bob470', true)). +answer('urn:example:complies'('urn:example:bob471', true)). +answer('urn:example:complies'('urn:example:bob472', true)). +answer('urn:example:complies'('urn:example:bob473', true)). +answer('urn:example:complies'('urn:example:bob474', true)). +answer('urn:example:complies'('urn:example:bob475', true)). +answer('urn:example:complies'('urn:example:bob476', true)). +answer('urn:example:complies'('urn:example:bob477', true)). +answer('urn:example:complies'('urn:example:bob478', true)). +answer('urn:example:complies'('urn:example:bob479', true)). +answer('urn:example:complies'('urn:example:bob480', true)). +answer('urn:example:complies'('urn:example:bob481', true)). +answer('urn:example:complies'('urn:example:bob482', true)). +answer('urn:example:complies'('urn:example:bob483', true)). +answer('urn:example:complies'('urn:example:bob484', true)). +answer('urn:example:complies'('urn:example:bob485', true)). +answer('urn:example:complies'('urn:example:bob486', true)). +answer('urn:example:complies'('urn:example:bob487', true)). +answer('urn:example:complies'('urn:example:bob488', true)). +answer('urn:example:complies'('urn:example:bob489', true)). +answer('urn:example:complies'('urn:example:bob490', true)). +answer('urn:example:complies'('urn:example:bob491', true)). +answer('urn:example:complies'('urn:example:bob492', true)). +answer('urn:example:complies'('urn:example:bob493', true)). +answer('urn:example:complies'('urn:example:bob494', true)). +answer('urn:example:complies'('urn:example:bob495', true)). +answer('urn:example:complies'('urn:example:bob496', true)). +answer('urn:example:complies'('urn:example:bob497', true)). +answer('urn:example:complies'('urn:example:bob498', true)). +answer('urn:example:complies'('urn:example:bob499', true)). +answer('urn:example:complies'('urn:example:bob500', true)). +answer('urn:example:complies'('urn:example:bob501', true)). +answer('urn:example:complies'('urn:example:bob502', true)). +answer('urn:example:complies'('urn:example:bob503', true)). +answer('urn:example:complies'('urn:example:bob504', true)). +answer('urn:example:complies'('urn:example:bob505', true)). +answer('urn:example:complies'('urn:example:bob506', true)). +answer('urn:example:complies'('urn:example:bob507', true)). +answer('urn:example:complies'('urn:example:bob508', true)). +answer('urn:example:complies'('urn:example:bob509', true)). +answer('urn:example:complies'('urn:example:bob510', true)). +answer('urn:example:complies'('urn:example:bob511', true)). +answer('urn:example:complies'('urn:example:bob512', true)). +answer('urn:example:complies'('urn:example:bob513', true)). +answer('urn:example:complies'('urn:example:bob514', true)). +answer('urn:example:complies'('urn:example:bob515', true)). +answer('urn:example:complies'('urn:example:bob516', true)). +answer('urn:example:complies'('urn:example:bob517', true)). +answer('urn:example:complies'('urn:example:bob518', true)). +answer('urn:example:complies'('urn:example:bob519', true)). +answer('urn:example:complies'('urn:example:bob520', true)). +answer('urn:example:complies'('urn:example:bob521', true)). +answer('urn:example:complies'('urn:example:bob522', true)). +answer('urn:example:complies'('urn:example:bob523', true)). +answer('urn:example:complies'('urn:example:bob524', true)). +answer('urn:example:complies'('urn:example:bob525', true)). +answer('urn:example:complies'('urn:example:bob526', true)). +answer('urn:example:complies'('urn:example:bob527', true)). +answer('urn:example:complies'('urn:example:bob528', true)). +answer('urn:example:complies'('urn:example:bob529', true)). +answer('urn:example:complies'('urn:example:bob530', true)). +answer('urn:example:complies'('urn:example:bob531', true)). +answer('urn:example:complies'('urn:example:bob532', true)). +answer('urn:example:complies'('urn:example:bob533', true)). +answer('urn:example:complies'('urn:example:bob534', true)). +answer('urn:example:complies'('urn:example:bob535', true)). +answer('urn:example:complies'('urn:example:bob536', true)). +answer('urn:example:complies'('urn:example:bob537', true)). +answer('urn:example:complies'('urn:example:bob538', true)). +answer('urn:example:complies'('urn:example:bob539', true)). +answer('urn:example:complies'('urn:example:bob540', true)). +answer('urn:example:complies'('urn:example:bob541', true)). +answer('urn:example:complies'('urn:example:bob542', true)). +answer('urn:example:complies'('urn:example:bob543', true)). +answer('urn:example:complies'('urn:example:bob544', true)). +answer('urn:example:complies'('urn:example:bob545', true)). +answer('urn:example:complies'('urn:example:bob546', true)). +answer('urn:example:complies'('urn:example:bob547', true)). +answer('urn:example:complies'('urn:example:bob548', true)). +answer('urn:example:complies'('urn:example:bob549', true)). +answer('urn:example:complies'('urn:example:bob550', true)). +answer('urn:example:complies'('urn:example:bob551', true)). +answer('urn:example:complies'('urn:example:bob552', true)). +answer('urn:example:complies'('urn:example:bob553', true)). +answer('urn:example:complies'('urn:example:bob554', true)). +answer('urn:example:complies'('urn:example:bob555', true)). +answer('urn:example:complies'('urn:example:bob556', true)). +answer('urn:example:complies'('urn:example:bob557', true)). +answer('urn:example:complies'('urn:example:bob558', true)). +answer('urn:example:complies'('urn:example:bob559', true)). +answer('urn:example:complies'('urn:example:bob560', true)). +answer('urn:example:complies'('urn:example:bob561', true)). +answer('urn:example:complies'('urn:example:bob562', true)). +answer('urn:example:complies'('urn:example:bob563', true)). +answer('urn:example:complies'('urn:example:bob564', true)). +answer('urn:example:complies'('urn:example:bob565', true)). +answer('urn:example:complies'('urn:example:bob566', true)). +answer('urn:example:complies'('urn:example:bob567', true)). +answer('urn:example:complies'('urn:example:bob568', true)). +answer('urn:example:complies'('urn:example:bob569', true)). +answer('urn:example:complies'('urn:example:bob570', true)). +answer('urn:example:complies'('urn:example:bob571', true)). +answer('urn:example:complies'('urn:example:bob572', true)). +answer('urn:example:complies'('urn:example:bob573', true)). +answer('urn:example:complies'('urn:example:bob574', true)). +answer('urn:example:complies'('urn:example:bob575', true)). +answer('urn:example:complies'('urn:example:bob576', true)). +answer('urn:example:complies'('urn:example:bob577', true)). +answer('urn:example:complies'('urn:example:bob578', true)). +answer('urn:example:complies'('urn:example:bob579', true)). +answer('urn:example:complies'('urn:example:bob580', true)). +answer('urn:example:complies'('urn:example:bob581', true)). +answer('urn:example:complies'('urn:example:bob582', true)). +answer('urn:example:complies'('urn:example:bob583', true)). +answer('urn:example:complies'('urn:example:bob584', true)). +answer('urn:example:complies'('urn:example:bob585', true)). +answer('urn:example:complies'('urn:example:bob586', true)). +answer('urn:example:complies'('urn:example:bob587', true)). +answer('urn:example:complies'('urn:example:bob588', true)). +answer('urn:example:complies'('urn:example:bob589', true)). +answer('urn:example:complies'('urn:example:bob590', true)). +answer('urn:example:complies'('urn:example:bob591', true)). +answer('urn:example:complies'('urn:example:bob592', true)). +answer('urn:example:complies'('urn:example:bob593', true)). +answer('urn:example:complies'('urn:example:bob594', true)). +answer('urn:example:complies'('urn:example:bob595', true)). +answer('urn:example:complies'('urn:example:bob596', true)). +answer('urn:example:complies'('urn:example:bob597', true)). +answer('urn:example:complies'('urn:example:bob598', true)). +answer('urn:example:complies'('urn:example:bob599', true)). +answer('urn:example:complies'('urn:example:bob600', true)). +answer('urn:example:complies'('urn:example:bob601', true)). +answer('urn:example:complies'('urn:example:bob602', true)). +answer('urn:example:complies'('urn:example:bob603', true)). +answer('urn:example:complies'('urn:example:bob604', true)). +answer('urn:example:complies'('urn:example:bob605', true)). +answer('urn:example:complies'('urn:example:bob606', true)). +answer('urn:example:complies'('urn:example:bob607', true)). +answer('urn:example:complies'('urn:example:bob608', true)). +answer('urn:example:complies'('urn:example:bob609', true)). +answer('urn:example:complies'('urn:example:bob610', true)). +answer('urn:example:complies'('urn:example:bob611', true)). +answer('urn:example:complies'('urn:example:bob612', true)). +answer('urn:example:complies'('urn:example:bob613', true)). +answer('urn:example:complies'('urn:example:bob614', true)). +answer('urn:example:complies'('urn:example:bob615', true)). +answer('urn:example:complies'('urn:example:bob616', true)). +answer('urn:example:complies'('urn:example:bob617', true)). +answer('urn:example:complies'('urn:example:bob618', true)). +answer('urn:example:complies'('urn:example:bob619', true)). +answer('urn:example:complies'('urn:example:bob620', true)). +answer('urn:example:complies'('urn:example:bob621', true)). +answer('urn:example:complies'('urn:example:bob622', true)). +answer('urn:example:complies'('urn:example:bob623', true)). +answer('urn:example:complies'('urn:example:bob624', true)). +answer('urn:example:complies'('urn:example:bob625', true)). +answer('urn:example:complies'('urn:example:bob626', true)). +answer('urn:example:complies'('urn:example:bob627', true)). +answer('urn:example:complies'('urn:example:bob628', true)). +answer('urn:example:complies'('urn:example:bob629', true)). +answer('urn:example:complies'('urn:example:bob630', true)). +answer('urn:example:complies'('urn:example:bob631', true)). +answer('urn:example:complies'('urn:example:bob632', true)). +answer('urn:example:complies'('urn:example:bob633', true)). +answer('urn:example:complies'('urn:example:bob634', true)). +answer('urn:example:complies'('urn:example:bob635', true)). +answer('urn:example:complies'('urn:example:bob636', true)). +answer('urn:example:complies'('urn:example:bob637', true)). +answer('urn:example:complies'('urn:example:bob638', true)). +answer('urn:example:complies'('urn:example:bob639', true)). +answer('urn:example:complies'('urn:example:bob640', true)). +answer('urn:example:complies'('urn:example:bob641', true)). +answer('urn:example:complies'('urn:example:bob642', true)). +answer('urn:example:complies'('urn:example:bob643', true)). +answer('urn:example:complies'('urn:example:bob644', true)). +answer('urn:example:complies'('urn:example:bob645', true)). +answer('urn:example:complies'('urn:example:bob646', true)). +answer('urn:example:complies'('urn:example:bob647', true)). +answer('urn:example:complies'('urn:example:bob648', true)). +answer('urn:example:complies'('urn:example:bob649', true)). +answer('urn:example:complies'('urn:example:bob650', true)). +answer('urn:example:complies'('urn:example:bob651', true)). +answer('urn:example:complies'('urn:example:bob652', true)). +answer('urn:example:complies'('urn:example:bob653', true)). +answer('urn:example:complies'('urn:example:bob654', true)). +answer('urn:example:complies'('urn:example:bob655', true)). +answer('urn:example:complies'('urn:example:bob656', true)). +answer('urn:example:complies'('urn:example:bob657', true)). +answer('urn:example:complies'('urn:example:bob658', true)). +answer('urn:example:complies'('urn:example:bob659', true)). +answer('urn:example:complies'('urn:example:bob660', true)). +answer('urn:example:complies'('urn:example:bob661', true)). +answer('urn:example:complies'('urn:example:bob662', true)). +answer('urn:example:complies'('urn:example:bob663', true)). +answer('urn:example:complies'('urn:example:bob664', true)). +answer('urn:example:complies'('urn:example:bob665', true)). +answer('urn:example:complies'('urn:example:bob666', true)). +answer('urn:example:complies'('urn:example:bob667', true)). +answer('urn:example:complies'('urn:example:bob668', true)). +answer('urn:example:complies'('urn:example:bob669', true)). +answer('urn:example:complies'('urn:example:bob670', true)). +answer('urn:example:complies'('urn:example:bob671', true)). +answer('urn:example:complies'('urn:example:bob672', true)). +answer('urn:example:complies'('urn:example:bob673', true)). +answer('urn:example:complies'('urn:example:bob674', true)). +answer('urn:example:complies'('urn:example:bob675', true)). +answer('urn:example:complies'('urn:example:bob676', true)). +answer('urn:example:complies'('urn:example:bob677', true)). +answer('urn:example:complies'('urn:example:bob678', true)). +answer('urn:example:complies'('urn:example:bob679', true)). +answer('urn:example:complies'('urn:example:bob680', true)). +answer('urn:example:complies'('urn:example:bob681', true)). +answer('urn:example:complies'('urn:example:bob682', true)). +answer('urn:example:complies'('urn:example:bob683', true)). +answer('urn:example:complies'('urn:example:bob684', true)). +answer('urn:example:complies'('urn:example:bob685', true)). +answer('urn:example:complies'('urn:example:bob686', true)). +answer('urn:example:complies'('urn:example:bob687', true)). +answer('urn:example:complies'('urn:example:bob688', true)). +answer('urn:example:complies'('urn:example:bob689', true)). +answer('urn:example:complies'('urn:example:bob690', true)). +answer('urn:example:complies'('urn:example:bob691', true)). +answer('urn:example:complies'('urn:example:bob692', true)). +answer('urn:example:complies'('urn:example:bob693', true)). +answer('urn:example:complies'('urn:example:bob694', true)). +answer('urn:example:complies'('urn:example:bob695', true)). +answer('urn:example:complies'('urn:example:bob696', true)). +answer('urn:example:complies'('urn:example:bob697', true)). +answer('urn:example:complies'('urn:example:bob698', true)). +answer('urn:example:complies'('urn:example:bob699', true)). +answer('urn:example:complies'('urn:example:bob700', true)). +answer('urn:example:complies'('urn:example:bob701', true)). +answer('urn:example:complies'('urn:example:bob702', true)). +answer('urn:example:complies'('urn:example:bob703', true)). +answer('urn:example:complies'('urn:example:bob704', true)). +answer('urn:example:complies'('urn:example:bob705', true)). +answer('urn:example:complies'('urn:example:bob706', true)). +answer('urn:example:complies'('urn:example:bob707', true)). +answer('urn:example:complies'('urn:example:bob708', true)). +answer('urn:example:complies'('urn:example:bob709', true)). +answer('urn:example:complies'('urn:example:bob710', true)). +answer('urn:example:complies'('urn:example:bob711', true)). +answer('urn:example:complies'('urn:example:bob712', true)). +answer('urn:example:complies'('urn:example:bob713', true)). +answer('urn:example:complies'('urn:example:bob714', true)). +answer('urn:example:complies'('urn:example:bob715', true)). +answer('urn:example:complies'('urn:example:bob716', true)). +answer('urn:example:complies'('urn:example:bob717', true)). +answer('urn:example:complies'('urn:example:bob718', true)). +answer('urn:example:complies'('urn:example:bob719', true)). +answer('urn:example:complies'('urn:example:bob720', true)). +answer('urn:example:complies'('urn:example:bob721', true)). +answer('urn:example:complies'('urn:example:bob722', true)). +answer('urn:example:complies'('urn:example:bob723', true)). +answer('urn:example:complies'('urn:example:bob724', true)). +answer('urn:example:complies'('urn:example:bob725', true)). +answer('urn:example:complies'('urn:example:bob726', true)). +answer('urn:example:complies'('urn:example:bob727', true)). +answer('urn:example:complies'('urn:example:bob728', true)). +answer('urn:example:complies'('urn:example:bob729', true)). +answer('urn:example:complies'('urn:example:bob730', true)). +answer('urn:example:complies'('urn:example:bob731', true)). +answer('urn:example:complies'('urn:example:bob732', true)). +answer('urn:example:complies'('urn:example:bob733', true)). +answer('urn:example:complies'('urn:example:bob734', true)). +answer('urn:example:complies'('urn:example:bob735', true)). +answer('urn:example:complies'('urn:example:bob736', true)). +answer('urn:example:complies'('urn:example:bob737', true)). +answer('urn:example:complies'('urn:example:bob738', true)). +answer('urn:example:complies'('urn:example:bob739', true)). +answer('urn:example:complies'('urn:example:bob740', true)). +answer('urn:example:complies'('urn:example:bob741', true)). +answer('urn:example:complies'('urn:example:bob742', true)). +answer('urn:example:complies'('urn:example:bob743', true)). +answer('urn:example:complies'('urn:example:bob744', true)). +answer('urn:example:complies'('urn:example:bob745', true)). +answer('urn:example:complies'('urn:example:bob746', true)). +answer('urn:example:complies'('urn:example:bob747', true)). +answer('urn:example:complies'('urn:example:bob748', true)). +answer('urn:example:complies'('urn:example:bob749', true)). +answer('urn:example:complies'('urn:example:bob750', true)). +answer('urn:example:complies'('urn:example:bob751', true)). +answer('urn:example:complies'('urn:example:bob752', true)). +answer('urn:example:complies'('urn:example:bob753', true)). +answer('urn:example:complies'('urn:example:bob754', true)). +answer('urn:example:complies'('urn:example:bob755', true)). +answer('urn:example:complies'('urn:example:bob756', true)). +answer('urn:example:complies'('urn:example:bob757', true)). +answer('urn:example:complies'('urn:example:bob758', true)). +answer('urn:example:complies'('urn:example:bob759', true)). +answer('urn:example:complies'('urn:example:bob760', true)). +answer('urn:example:complies'('urn:example:bob761', true)). +answer('urn:example:complies'('urn:example:bob762', true)). +answer('urn:example:complies'('urn:example:bob763', true)). +answer('urn:example:complies'('urn:example:bob764', true)). +answer('urn:example:complies'('urn:example:bob765', true)). +answer('urn:example:complies'('urn:example:bob766', true)). +answer('urn:example:complies'('urn:example:bob767', true)). +answer('urn:example:complies'('urn:example:bob768', true)). +answer('urn:example:complies'('urn:example:bob769', true)). +answer('urn:example:complies'('urn:example:bob770', true)). +answer('urn:example:complies'('urn:example:bob771', true)). +answer('urn:example:complies'('urn:example:bob772', true)). +answer('urn:example:complies'('urn:example:bob773', true)). +answer('urn:example:complies'('urn:example:bob774', true)). +answer('urn:example:complies'('urn:example:bob775', true)). +answer('urn:example:complies'('urn:example:bob776', true)). +answer('urn:example:complies'('urn:example:bob777', true)). +answer('urn:example:complies'('urn:example:bob778', true)). +answer('urn:example:complies'('urn:example:bob779', true)). +answer('urn:example:complies'('urn:example:bob780', true)). +answer('urn:example:complies'('urn:example:bob781', true)). +answer('urn:example:complies'('urn:example:bob782', true)). +answer('urn:example:complies'('urn:example:bob783', true)). +answer('urn:example:complies'('urn:example:bob784', true)). +answer('urn:example:complies'('urn:example:bob785', true)). +answer('urn:example:complies'('urn:example:bob786', true)). +answer('urn:example:complies'('urn:example:bob787', true)). +answer('urn:example:complies'('urn:example:bob788', true)). +answer('urn:example:complies'('urn:example:bob789', true)). +answer('urn:example:complies'('urn:example:bob790', true)). +answer('urn:example:complies'('urn:example:bob791', true)). +answer('urn:example:complies'('urn:example:bob792', true)). +answer('urn:example:complies'('urn:example:bob793', true)). +answer('urn:example:complies'('urn:example:bob794', true)). +answer('urn:example:complies'('urn:example:bob795', true)). +answer('urn:example:complies'('urn:example:bob796', true)). +answer('urn:example:complies'('urn:example:bob797', true)). +answer('urn:example:complies'('urn:example:bob798', true)). +answer('urn:example:complies'('urn:example:bob799', true)). +answer('urn:example:complies'('urn:example:bob800', true)). +answer('urn:example:complies'('urn:example:bob801', true)). +answer('urn:example:complies'('urn:example:bob802', true)). +answer('urn:example:complies'('urn:example:bob803', true)). +answer('urn:example:complies'('urn:example:bob804', true)). +answer('urn:example:complies'('urn:example:bob805', true)). +answer('urn:example:complies'('urn:example:bob806', true)). +answer('urn:example:complies'('urn:example:bob807', true)). +answer('urn:example:complies'('urn:example:bob808', true)). +answer('urn:example:complies'('urn:example:bob809', true)). +answer('urn:example:complies'('urn:example:bob810', true)). +answer('urn:example:complies'('urn:example:bob811', true)). +answer('urn:example:complies'('urn:example:bob812', true)). +answer('urn:example:complies'('urn:example:bob813', true)). +answer('urn:example:complies'('urn:example:bob814', true)). +answer('urn:example:complies'('urn:example:bob815', true)). +answer('urn:example:complies'('urn:example:bob816', true)). +answer('urn:example:complies'('urn:example:bob817', true)). +answer('urn:example:complies'('urn:example:bob818', true)). +answer('urn:example:complies'('urn:example:bob819', true)). +answer('urn:example:complies'('urn:example:bob820', true)). +answer('urn:example:complies'('urn:example:bob821', true)). +answer('urn:example:complies'('urn:example:bob822', true)). +answer('urn:example:complies'('urn:example:bob823', true)). +answer('urn:example:complies'('urn:example:bob824', true)). +answer('urn:example:complies'('urn:example:bob825', true)). +answer('urn:example:complies'('urn:example:bob826', true)). +answer('urn:example:complies'('urn:example:bob827', true)). +answer('urn:example:complies'('urn:example:bob828', true)). +answer('urn:example:complies'('urn:example:bob829', true)). +answer('urn:example:complies'('urn:example:bob830', true)). +answer('urn:example:complies'('urn:example:bob831', true)). +answer('urn:example:complies'('urn:example:bob832', true)). +answer('urn:example:complies'('urn:example:bob833', true)). +answer('urn:example:complies'('urn:example:bob834', true)). +answer('urn:example:complies'('urn:example:bob835', true)). +answer('urn:example:complies'('urn:example:bob836', true)). +answer('urn:example:complies'('urn:example:bob837', true)). +answer('urn:example:complies'('urn:example:bob838', true)). +answer('urn:example:complies'('urn:example:bob839', true)). +answer('urn:example:complies'('urn:example:bob840', true)). +answer('urn:example:complies'('urn:example:bob841', true)). +answer('urn:example:complies'('urn:example:bob842', true)). +answer('urn:example:complies'('urn:example:bob843', true)). +answer('urn:example:complies'('urn:example:bob844', true)). +answer('urn:example:complies'('urn:example:bob845', true)). +answer('urn:example:complies'('urn:example:bob846', true)). +answer('urn:example:complies'('urn:example:bob847', true)). +answer('urn:example:complies'('urn:example:bob848', true)). +answer('urn:example:complies'('urn:example:bob849', true)). +answer('urn:example:complies'('urn:example:bob850', true)). +answer('urn:example:complies'('urn:example:bob851', true)). +answer('urn:example:complies'('urn:example:bob852', true)). +answer('urn:example:complies'('urn:example:bob853', true)). +answer('urn:example:complies'('urn:example:bob854', true)). +answer('urn:example:complies'('urn:example:bob855', true)). +answer('urn:example:complies'('urn:example:bob856', true)). +answer('urn:example:complies'('urn:example:bob857', true)). +answer('urn:example:complies'('urn:example:bob858', true)). +answer('urn:example:complies'('urn:example:bob859', true)). +answer('urn:example:complies'('urn:example:bob860', true)). +answer('urn:example:complies'('urn:example:bob861', true)). +answer('urn:example:complies'('urn:example:bob862', true)). +answer('urn:example:complies'('urn:example:bob863', true)). +answer('urn:example:complies'('urn:example:bob864', true)). +answer('urn:example:complies'('urn:example:bob865', true)). +answer('urn:example:complies'('urn:example:bob866', true)). +answer('urn:example:complies'('urn:example:bob867', true)). +answer('urn:example:complies'('urn:example:bob868', true)). +answer('urn:example:complies'('urn:example:bob869', true)). +answer('urn:example:complies'('urn:example:bob870', true)). +answer('urn:example:complies'('urn:example:bob871', true)). +answer('urn:example:complies'('urn:example:bob872', true)). +answer('urn:example:complies'('urn:example:bob873', true)). +answer('urn:example:complies'('urn:example:bob874', true)). +answer('urn:example:complies'('urn:example:bob875', true)). +answer('urn:example:complies'('urn:example:bob876', true)). +answer('urn:example:complies'('urn:example:bob877', true)). +answer('urn:example:complies'('urn:example:bob878', true)). +answer('urn:example:complies'('urn:example:bob879', true)). +answer('urn:example:complies'('urn:example:bob880', true)). +answer('urn:example:complies'('urn:example:bob881', true)). +answer('urn:example:complies'('urn:example:bob882', true)). +answer('urn:example:complies'('urn:example:bob883', true)). +answer('urn:example:complies'('urn:example:bob884', true)). +answer('urn:example:complies'('urn:example:bob885', true)). +answer('urn:example:complies'('urn:example:bob886', true)). +answer('urn:example:complies'('urn:example:bob887', true)). +answer('urn:example:complies'('urn:example:bob888', true)). +answer('urn:example:complies'('urn:example:bob889', true)). +answer('urn:example:complies'('urn:example:bob890', true)). +answer('urn:example:complies'('urn:example:bob891', true)). +answer('urn:example:complies'('urn:example:bob892', true)). +answer('urn:example:complies'('urn:example:bob893', true)). +answer('urn:example:complies'('urn:example:bob894', true)). +answer('urn:example:complies'('urn:example:bob895', true)). +answer('urn:example:complies'('urn:example:bob896', true)). +answer('urn:example:complies'('urn:example:bob897', true)). +answer('urn:example:complies'('urn:example:bob898', true)). +answer('urn:example:complies'('urn:example:bob899', true)). +answer('urn:example:complies'('urn:example:bob900', true)). +answer('urn:example:complies'('urn:example:bob901', true)). +answer('urn:example:complies'('urn:example:bob902', true)). +answer('urn:example:complies'('urn:example:bob903', true)). +answer('urn:example:complies'('urn:example:bob904', true)). +answer('urn:example:complies'('urn:example:bob905', true)). +answer('urn:example:complies'('urn:example:bob906', true)). +answer('urn:example:complies'('urn:example:bob907', true)). +answer('urn:example:complies'('urn:example:bob908', true)). +answer('urn:example:complies'('urn:example:bob909', true)). +answer('urn:example:complies'('urn:example:bob910', true)). +answer('urn:example:complies'('urn:example:bob911', true)). +answer('urn:example:complies'('urn:example:bob912', true)). +answer('urn:example:complies'('urn:example:bob913', true)). +answer('urn:example:complies'('urn:example:bob914', true)). +answer('urn:example:complies'('urn:example:bob915', true)). +answer('urn:example:complies'('urn:example:bob916', true)). +answer('urn:example:complies'('urn:example:bob917', true)). +answer('urn:example:complies'('urn:example:bob918', true)). +answer('urn:example:complies'('urn:example:bob919', true)). +answer('urn:example:complies'('urn:example:bob920', true)). +answer('urn:example:complies'('urn:example:bob921', true)). +answer('urn:example:complies'('urn:example:bob922', true)). +answer('urn:example:complies'('urn:example:bob923', true)). +answer('urn:example:complies'('urn:example:bob924', true)). +answer('urn:example:complies'('urn:example:bob925', true)). +answer('urn:example:complies'('urn:example:bob926', true)). +answer('urn:example:complies'('urn:example:bob927', true)). +answer('urn:example:complies'('urn:example:bob928', true)). +answer('urn:example:complies'('urn:example:bob929', true)). +answer('urn:example:complies'('urn:example:bob930', true)). +answer('urn:example:complies'('urn:example:bob931', true)). +answer('urn:example:complies'('urn:example:bob932', true)). +answer('urn:example:complies'('urn:example:bob933', true)). +answer('urn:example:complies'('urn:example:bob934', true)). +answer('urn:example:complies'('urn:example:bob935', true)). +answer('urn:example:complies'('urn:example:bob936', true)). +answer('urn:example:complies'('urn:example:bob937', true)). +answer('urn:example:complies'('urn:example:bob938', true)). +answer('urn:example:complies'('urn:example:bob939', true)). +answer('urn:example:complies'('urn:example:bob940', true)). +answer('urn:example:complies'('urn:example:bob941', true)). +answer('urn:example:complies'('urn:example:bob942', true)). +answer('urn:example:complies'('urn:example:bob943', true)). +answer('urn:example:complies'('urn:example:bob944', true)). +answer('urn:example:complies'('urn:example:bob945', true)). +answer('urn:example:complies'('urn:example:bob946', true)). +answer('urn:example:complies'('urn:example:bob947', true)). +answer('urn:example:complies'('urn:example:bob948', true)). +answer('urn:example:complies'('urn:example:bob949', true)). +answer('urn:example:complies'('urn:example:bob950', true)). +answer('urn:example:complies'('urn:example:bob951', true)). +answer('urn:example:complies'('urn:example:bob952', true)). +answer('urn:example:complies'('urn:example:bob953', true)). +answer('urn:example:complies'('urn:example:bob954', true)). +answer('urn:example:complies'('urn:example:bob955', true)). +answer('urn:example:complies'('urn:example:bob956', true)). +answer('urn:example:complies'('urn:example:bob957', true)). +answer('urn:example:complies'('urn:example:bob958', true)). +answer('urn:example:complies'('urn:example:bob959', true)). +answer('urn:example:complies'('urn:example:bob960', true)). +answer('urn:example:complies'('urn:example:bob961', true)). +answer('urn:example:complies'('urn:example:bob962', true)). +answer('urn:example:complies'('urn:example:bob963', true)). +answer('urn:example:complies'('urn:example:bob964', true)). +answer('urn:example:complies'('urn:example:bob965', true)). +answer('urn:example:complies'('urn:example:bob966', true)). +answer('urn:example:complies'('urn:example:bob967', true)). +answer('urn:example:complies'('urn:example:bob968', true)). +answer('urn:example:complies'('urn:example:bob969', true)). +answer('urn:example:complies'('urn:example:bob970', true)). +answer('urn:example:complies'('urn:example:bob971', true)). +answer('urn:example:complies'('urn:example:bob972', true)). +answer('urn:example:complies'('urn:example:bob973', true)). +answer('urn:example:complies'('urn:example:bob974', true)). +answer('urn:example:complies'('urn:example:bob975', true)). +answer('urn:example:complies'('urn:example:bob976', true)). +answer('urn:example:complies'('urn:example:bob977', true)). +answer('urn:example:complies'('urn:example:bob978', true)). +answer('urn:example:complies'('urn:example:bob979', true)). +answer('urn:example:complies'('urn:example:bob980', true)). +answer('urn:example:complies'('urn:example:bob981', true)). +answer('urn:example:complies'('urn:example:bob982', true)). +answer('urn:example:complies'('urn:example:bob983', true)). +answer('urn:example:complies'('urn:example:bob984', true)). +answer('urn:example:complies'('urn:example:bob985', true)). +answer('urn:example:complies'('urn:example:bob986', true)). +answer('urn:example:complies'('urn:example:bob987', true)). +answer('urn:example:complies'('urn:example:bob988', true)). +answer('urn:example:complies'('urn:example:bob989', true)). +answer('urn:example:complies'('urn:example:bob990', true)). +answer('urn:example:complies'('urn:example:bob991', true)). +answer('urn:example:complies'('urn:example:bob992', true)). +answer('urn:example:complies'('urn:example:bob993', true)). +answer('urn:example:complies'('urn:example:bob994', true)). +answer('urn:example:complies'('urn:example:bob995', true)). +answer('urn:example:complies'('urn:example:bob996', true)). +answer('urn:example:complies'('urn:example:bob997', true)). +answer('urn:example:complies'('urn:example:bob998', true)). +answer('urn:example:complies'('urn:example:bob999', true)). +answer('urn:example:complies'('urn:example:bob1000', true)). +answer('urn:example:complies'('urn:example:bob1001', true)). +answer('urn:example:complies'('urn:example:bob1002', true)). +answer('urn:example:complies'('urn:example:bob1003', true)). +answer('urn:example:complies'('urn:example:bob1004', true)). +answer('urn:example:complies'('urn:example:bob1005', true)). +answer('urn:example:complies'('urn:example:bob1006', true)). +answer('urn:example:complies'('urn:example:bob1007', true)). +answer('urn:example:complies'('urn:example:bob1008', true)). +answer('urn:example:complies'('urn:example:bob1009', true)). +answer('urn:example:complies'('urn:example:bob1010', true)). +answer('urn:example:complies'('urn:example:bob1011', true)). +answer('urn:example:complies'('urn:example:bob1012', true)). +answer('urn:example:complies'('urn:example:bob1013', true)). +answer('urn:example:complies'('urn:example:bob1014', true)). +answer('urn:example:complies'('urn:example:bob1015', true)). +answer('urn:example:complies'('urn:example:bob1016', true)). +answer('urn:example:complies'('urn:example:bob1017', true)). +answer('urn:example:complies'('urn:example:bob1018', true)). +answer('urn:example:complies'('urn:example:bob1019', true)). +answer('urn:example:complies'('urn:example:bob1020', true)). +answer('urn:example:complies'('urn:example:bob1021', true)). +answer('urn:example:complies'('urn:example:bob1022', true)). +answer('urn:example:complies'('urn:example:bob1023', true)). +answer('urn:example:complies'('urn:example:bob1024', true)). +answer('urn:example:complies'('urn:example:bob1025', true)). +answer('urn:example:complies'('urn:example:bob1026', true)). +answer('urn:example:complies'('urn:example:bob1027', true)). +answer('urn:example:complies'('urn:example:bob1028', true)). +answer('urn:example:complies'('urn:example:bob1029', true)). +answer('urn:example:complies'('urn:example:bob1030', true)). +answer('urn:example:complies'('urn:example:bob1031', true)). +answer('urn:example:complies'('urn:example:bob1032', true)). +answer('urn:example:complies'('urn:example:bob1033', true)). +answer('urn:example:complies'('urn:example:bob1034', true)). +answer('urn:example:complies'('urn:example:bob1035', true)). +answer('urn:example:complies'('urn:example:bob1036', true)). +answer('urn:example:complies'('urn:example:bob1037', true)). +answer('urn:example:complies'('urn:example:bob1038', true)). +answer('urn:example:complies'('urn:example:bob1039', true)). +answer('urn:example:complies'('urn:example:bob1040', true)). +answer('urn:example:complies'('urn:example:bob1041', true)). +answer('urn:example:complies'('urn:example:bob1042', true)). +answer('urn:example:complies'('urn:example:bob1043', true)). +answer('urn:example:complies'('urn:example:bob1044', true)). +answer('urn:example:complies'('urn:example:bob1045', true)). +answer('urn:example:complies'('urn:example:bob1046', true)). +answer('urn:example:complies'('urn:example:bob1047', true)). +answer('urn:example:complies'('urn:example:bob1048', true)). +answer('urn:example:complies'('urn:example:bob1049', true)). +answer('urn:example:complies'('urn:example:bob1050', true)). +answer('urn:example:complies'('urn:example:bob1051', true)). +answer('urn:example:complies'('urn:example:bob1052', true)). +answer('urn:example:complies'('urn:example:bob1053', true)). +answer('urn:example:complies'('urn:example:bob1054', true)). +answer('urn:example:complies'('urn:example:bob1055', true)). +answer('urn:example:complies'('urn:example:bob1056', true)). +answer('urn:example:complies'('urn:example:bob1057', true)). +answer('urn:example:complies'('urn:example:bob1058', true)). +answer('urn:example:complies'('urn:example:bob1059', true)). +answer('urn:example:complies'('urn:example:bob1060', true)). +answer('urn:example:complies'('urn:example:bob1061', true)). +answer('urn:example:complies'('urn:example:bob1062', true)). +answer('urn:example:complies'('urn:example:bob1063', true)). +answer('urn:example:complies'('urn:example:bob1064', true)). +answer('urn:example:complies'('urn:example:bob1065', true)). +answer('urn:example:complies'('urn:example:bob1066', true)). +answer('urn:example:complies'('urn:example:bob1067', true)). +answer('urn:example:complies'('urn:example:bob1068', true)). +answer('urn:example:complies'('urn:example:bob1069', true)). +answer('urn:example:complies'('urn:example:bob1070', true)). +answer('urn:example:complies'('urn:example:bob1071', true)). +answer('urn:example:complies'('urn:example:bob1072', true)). +answer('urn:example:complies'('urn:example:bob1073', true)). +answer('urn:example:complies'('urn:example:bob1074', true)). +answer('urn:example:complies'('urn:example:bob1075', true)). +answer('urn:example:complies'('urn:example:bob1076', true)). +answer('urn:example:complies'('urn:example:bob1077', true)). +answer('urn:example:complies'('urn:example:bob1078', true)). +answer('urn:example:complies'('urn:example:bob1079', true)). +answer('urn:example:complies'('urn:example:bob1080', true)). +answer('urn:example:complies'('urn:example:bob1081', true)). +answer('urn:example:complies'('urn:example:bob1082', true)). +answer('urn:example:complies'('urn:example:bob1083', true)). +answer('urn:example:complies'('urn:example:bob1084', true)). +answer('urn:example:complies'('urn:example:bob1085', true)). +answer('urn:example:complies'('urn:example:bob1086', true)). +answer('urn:example:complies'('urn:example:bob1087', true)). +answer('urn:example:complies'('urn:example:bob1088', true)). +answer('urn:example:complies'('urn:example:bob1089', true)). +answer('urn:example:complies'('urn:example:bob1090', true)). +answer('urn:example:complies'('urn:example:bob1091', true)). +answer('urn:example:complies'('urn:example:bob1092', true)). +answer('urn:example:complies'('urn:example:bob1093', true)). +answer('urn:example:complies'('urn:example:bob1094', true)). +answer('urn:example:complies'('urn:example:bob1095', true)). +answer('urn:example:complies'('urn:example:bob1096', true)). +answer('urn:example:complies'('urn:example:bob1097', true)). +answer('urn:example:complies'('urn:example:bob1098', true)). +answer('urn:example:complies'('urn:example:bob1099', true)). +answer('urn:example:complies'('urn:example:bob1100', true)). +answer('urn:example:complies'('urn:example:bob1101', true)). +answer('urn:example:complies'('urn:example:bob1102', true)). +answer('urn:example:complies'('urn:example:bob1103', true)). +answer('urn:example:complies'('urn:example:bob1104', true)). +answer('urn:example:complies'('urn:example:bob1105', true)). +answer('urn:example:complies'('urn:example:bob1106', true)). +answer('urn:example:complies'('urn:example:bob1107', true)). +answer('urn:example:complies'('urn:example:bob1108', true)). +answer('urn:example:complies'('urn:example:bob1109', true)). +answer('urn:example:complies'('urn:example:bob1110', true)). +answer('urn:example:complies'('urn:example:bob1111', true)). +answer('urn:example:complies'('urn:example:bob1112', true)). +answer('urn:example:complies'('urn:example:bob1113', true)). +answer('urn:example:complies'('urn:example:bob1114', true)). +answer('urn:example:complies'('urn:example:bob1115', true)). +answer('urn:example:complies'('urn:example:bob1116', true)). +answer('urn:example:complies'('urn:example:bob1117', true)). +answer('urn:example:complies'('urn:example:bob1118', true)). +answer('urn:example:complies'('urn:example:bob1119', true)). +answer('urn:example:complies'('urn:example:bob1120', true)). +answer('urn:example:complies'('urn:example:bob1121', true)). +answer('urn:example:complies'('urn:example:bob1122', true)). +answer('urn:example:complies'('urn:example:bob1123', true)). +answer('urn:example:complies'('urn:example:bob1124', true)). +answer('urn:example:complies'('urn:example:bob1125', true)). +answer('urn:example:complies'('urn:example:bob1126', true)). +answer('urn:example:complies'('urn:example:bob1127', true)). +answer('urn:example:complies'('urn:example:bob1128', true)). +answer('urn:example:complies'('urn:example:bob1129', true)). +answer('urn:example:complies'('urn:example:bob1130', true)). +answer('urn:example:complies'('urn:example:bob1131', true)). +answer('urn:example:complies'('urn:example:bob1132', true)). +answer('urn:example:complies'('urn:example:bob1133', true)). +answer('urn:example:complies'('urn:example:bob1134', true)). +answer('urn:example:complies'('urn:example:bob1135', true)). +answer('urn:example:complies'('urn:example:bob1136', true)). +answer('urn:example:complies'('urn:example:bob1137', true)). +answer('urn:example:complies'('urn:example:bob1138', true)). +answer('urn:example:complies'('urn:example:bob1139', true)). +answer('urn:example:complies'('urn:example:bob1140', true)). +answer('urn:example:complies'('urn:example:bob1141', true)). +answer('urn:example:complies'('urn:example:bob1142', true)). +answer('urn:example:complies'('urn:example:bob1143', true)). +answer('urn:example:complies'('urn:example:bob1144', true)). +answer('urn:example:complies'('urn:example:bob1145', true)). +answer('urn:example:complies'('urn:example:bob1146', true)). +answer('urn:example:complies'('urn:example:bob1147', true)). +answer('urn:example:complies'('urn:example:bob1148', true)). +answer('urn:example:complies'('urn:example:bob1149', true)). +answer('urn:example:complies'('urn:example:bob1150', true)). +answer('urn:example:complies'('urn:example:bob1151', true)). +answer('urn:example:complies'('urn:example:bob1152', true)). +answer('urn:example:complies'('urn:example:bob1153', true)). +answer('urn:example:complies'('urn:example:bob1154', true)). +answer('urn:example:complies'('urn:example:bob1155', true)). +answer('urn:example:complies'('urn:example:bob1156', true)). +answer('urn:example:complies'('urn:example:bob1157', true)). +answer('urn:example:complies'('urn:example:bob1158', true)). +answer('urn:example:complies'('urn:example:bob1159', true)). +answer('urn:example:complies'('urn:example:bob1160', true)). +answer('urn:example:complies'('urn:example:bob1161', true)). +answer('urn:example:complies'('urn:example:bob1162', true)). +answer('urn:example:complies'('urn:example:bob1163', true)). +answer('urn:example:complies'('urn:example:bob1164', true)). +answer('urn:example:complies'('urn:example:bob1165', true)). +answer('urn:example:complies'('urn:example:bob1166', true)). +answer('urn:example:complies'('urn:example:bob1167', true)). +answer('urn:example:complies'('urn:example:bob1168', true)). +answer('urn:example:complies'('urn:example:bob1169', true)). +answer('urn:example:complies'('urn:example:bob1170', true)). +answer('urn:example:complies'('urn:example:bob1171', true)). +answer('urn:example:complies'('urn:example:bob1172', true)). +answer('urn:example:complies'('urn:example:bob1173', true)). +answer('urn:example:complies'('urn:example:bob1174', true)). +answer('urn:example:complies'('urn:example:bob1175', true)). +answer('urn:example:complies'('urn:example:bob1176', true)). +answer('urn:example:complies'('urn:example:bob1177', true)). +answer('urn:example:complies'('urn:example:bob1178', true)). +answer('urn:example:complies'('urn:example:bob1179', true)). +answer('urn:example:complies'('urn:example:bob1180', true)). +answer('urn:example:complies'('urn:example:bob1181', true)). +answer('urn:example:complies'('urn:example:bob1182', true)). +answer('urn:example:complies'('urn:example:bob1183', true)). +answer('urn:example:complies'('urn:example:bob1184', true)). +answer('urn:example:complies'('urn:example:bob1185', true)). +answer('urn:example:complies'('urn:example:bob1186', true)). +answer('urn:example:complies'('urn:example:bob1187', true)). +answer('urn:example:complies'('urn:example:bob1188', true)). +answer('urn:example:complies'('urn:example:bob1189', true)). +answer('urn:example:complies'('urn:example:bob1190', true)). +answer('urn:example:complies'('urn:example:bob1191', true)). +answer('urn:example:complies'('urn:example:bob1192', true)). +answer('urn:example:complies'('urn:example:bob1193', true)). +answer('urn:example:complies'('urn:example:bob1194', true)). +answer('urn:example:complies'('urn:example:bob1195', true)). +answer('urn:example:complies'('urn:example:bob1196', true)). +answer('urn:example:complies'('urn:example:bob1197', true)). +answer('urn:example:complies'('urn:example:bob1198', true)). +answer('urn:example:complies'('urn:example:bob1199', true)). +answer('urn:example:complies'('urn:example:bob1200', true)). +answer('urn:example:complies'('urn:example:bob1201', true)). +answer('urn:example:complies'('urn:example:bob1202', true)). +answer('urn:example:complies'('urn:example:bob1203', true)). +answer('urn:example:complies'('urn:example:bob1204', true)). +answer('urn:example:complies'('urn:example:bob1205', true)). +answer('urn:example:complies'('urn:example:bob1206', true)). +answer('urn:example:complies'('urn:example:bob1207', true)). +answer('urn:example:complies'('urn:example:bob1208', true)). +answer('urn:example:complies'('urn:example:bob1209', true)). +answer('urn:example:complies'('urn:example:bob1210', true)). +answer('urn:example:complies'('urn:example:bob1211', true)). +answer('urn:example:complies'('urn:example:bob1212', true)). +answer('urn:example:complies'('urn:example:bob1213', true)). +answer('urn:example:complies'('urn:example:bob1214', true)). +answer('urn:example:complies'('urn:example:bob1215', true)). +answer('urn:example:complies'('urn:example:bob1216', true)). +answer('urn:example:complies'('urn:example:bob1217', true)). +answer('urn:example:complies'('urn:example:bob1218', true)). +answer('urn:example:complies'('urn:example:bob1219', true)). +answer('urn:example:complies'('urn:example:bob1220', true)). +answer('urn:example:complies'('urn:example:bob1221', true)). +answer('urn:example:complies'('urn:example:bob1222', true)). +answer('urn:example:complies'('urn:example:bob1223', true)). +answer('urn:example:complies'('urn:example:bob1224', true)). +answer('urn:example:complies'('urn:example:bob1225', true)). +answer('urn:example:complies'('urn:example:bob1226', true)). +answer('urn:example:complies'('urn:example:bob1227', true)). +answer('urn:example:complies'('urn:example:bob1228', true)). +answer('urn:example:complies'('urn:example:bob1229', true)). +answer('urn:example:complies'('urn:example:bob1230', true)). +answer('urn:example:complies'('urn:example:bob1231', true)). +answer('urn:example:complies'('urn:example:bob1232', true)). +answer('urn:example:complies'('urn:example:bob1233', true)). +answer('urn:example:complies'('urn:example:bob1234', true)). +answer('urn:example:complies'('urn:example:bob1235', true)). +answer('urn:example:complies'('urn:example:bob1236', true)). +answer('urn:example:complies'('urn:example:bob1237', true)). +answer('urn:example:complies'('urn:example:bob1238', true)). +answer('urn:example:complies'('urn:example:bob1239', true)). +answer('urn:example:complies'('urn:example:bob1240', true)). +answer('urn:example:complies'('urn:example:bob1241', true)). +answer('urn:example:complies'('urn:example:bob1242', true)). +answer('urn:example:complies'('urn:example:bob1243', true)). +answer('urn:example:complies'('urn:example:bob1244', true)). +answer('urn:example:complies'('urn:example:bob1245', true)). +answer('urn:example:complies'('urn:example:bob1246', true)). +answer('urn:example:complies'('urn:example:bob1247', true)). +answer('urn:example:complies'('urn:example:bob1248', true)). +answer('urn:example:complies'('urn:example:bob1249', true)). +answer('urn:example:complies'('urn:example:bob1250', true)). +answer('urn:example:complies'('urn:example:bob1251', true)). +answer('urn:example:complies'('urn:example:bob1252', true)). +answer('urn:example:complies'('urn:example:bob1253', true)). +answer('urn:example:complies'('urn:example:bob1254', true)). +answer('urn:example:complies'('urn:example:bob1255', true)). +answer('urn:example:complies'('urn:example:bob1256', true)). +answer('urn:example:complies'('urn:example:bob1257', true)). +answer('urn:example:complies'('urn:example:bob1258', true)). +answer('urn:example:complies'('urn:example:bob1259', true)). +answer('urn:example:complies'('urn:example:bob1260', true)). +answer('urn:example:complies'('urn:example:bob1261', true)). +answer('urn:example:complies'('urn:example:bob1262', true)). +answer('urn:example:complies'('urn:example:bob1263', true)). +answer('urn:example:complies'('urn:example:bob1264', true)). +answer('urn:example:complies'('urn:example:bob1265', true)). +answer('urn:example:complies'('urn:example:bob1266', true)). +answer('urn:example:complies'('urn:example:bob1267', true)). +answer('urn:example:complies'('urn:example:bob1268', true)). +answer('urn:example:complies'('urn:example:bob1269', true)). +answer('urn:example:complies'('urn:example:bob1270', true)). +answer('urn:example:complies'('urn:example:bob1271', true)). +answer('urn:example:complies'('urn:example:bob1272', true)). +answer('urn:example:complies'('urn:example:bob1273', true)). +answer('urn:example:complies'('urn:example:bob1274', true)). +answer('urn:example:complies'('urn:example:bob1275', true)). +answer('urn:example:complies'('urn:example:bob1276', true)). +answer('urn:example:complies'('urn:example:bob1277', true)). +answer('urn:example:complies'('urn:example:bob1278', true)). +answer('urn:example:complies'('urn:example:bob1279', true)). +answer('urn:example:complies'('urn:example:bob1280', true)). +answer('urn:example:complies'('urn:example:bob1281', true)). +answer('urn:example:complies'('urn:example:bob1282', true)). +answer('urn:example:complies'('urn:example:bob1283', true)). +answer('urn:example:complies'('urn:example:bob1284', true)). +answer('urn:example:complies'('urn:example:bob1285', true)). +answer('urn:example:complies'('urn:example:bob1286', true)). +answer('urn:example:complies'('urn:example:bob1287', true)). +answer('urn:example:complies'('urn:example:bob1288', true)). +answer('urn:example:complies'('urn:example:bob1289', true)). +answer('urn:example:complies'('urn:example:bob1290', true)). +answer('urn:example:complies'('urn:example:bob1291', true)). +answer('urn:example:complies'('urn:example:bob1292', true)). +answer('urn:example:complies'('urn:example:bob1293', true)). +answer('urn:example:complies'('urn:example:bob1294', true)). +answer('urn:example:complies'('urn:example:bob1295', true)). +answer('urn:example:complies'('urn:example:bob1296', true)). +answer('urn:example:complies'('urn:example:bob1297', true)). +answer('urn:example:complies'('urn:example:bob1298', true)). +answer('urn:example:complies'('urn:example:bob1299', true)). +answer('urn:example:complies'('urn:example:bob1300', true)). +answer('urn:example:complies'('urn:example:bob1301', true)). +answer('urn:example:complies'('urn:example:bob1302', true)). +answer('urn:example:complies'('urn:example:bob1303', true)). +answer('urn:example:complies'('urn:example:bob1304', true)). +answer('urn:example:complies'('urn:example:bob1305', true)). +answer('urn:example:complies'('urn:example:bob1306', true)). +answer('urn:example:complies'('urn:example:bob1307', true)). +answer('urn:example:complies'('urn:example:bob1308', true)). +answer('urn:example:complies'('urn:example:bob1309', true)). +answer('urn:example:complies'('urn:example:bob1310', true)). +answer('urn:example:complies'('urn:example:bob1311', true)). +answer('urn:example:complies'('urn:example:bob1312', true)). +answer('urn:example:complies'('urn:example:bob1313', true)). +answer('urn:example:complies'('urn:example:bob1314', true)). +answer('urn:example:complies'('urn:example:bob1315', true)). +answer('urn:example:complies'('urn:example:bob1316', true)). +answer('urn:example:complies'('urn:example:bob1317', true)). +answer('urn:example:complies'('urn:example:bob1318', true)). +answer('urn:example:complies'('urn:example:bob1319', true)). +answer('urn:example:complies'('urn:example:bob1320', true)). +answer('urn:example:complies'('urn:example:bob1321', true)). +answer('urn:example:complies'('urn:example:bob1322', true)). +answer('urn:example:complies'('urn:example:bob1323', true)). +answer('urn:example:complies'('urn:example:bob1324', true)). +answer('urn:example:complies'('urn:example:bob1325', true)). +answer('urn:example:complies'('urn:example:bob1326', true)). +answer('urn:example:complies'('urn:example:bob1327', true)). +answer('urn:example:complies'('urn:example:bob1328', true)). +answer('urn:example:complies'('urn:example:bob1329', true)). +answer('urn:example:complies'('urn:example:bob1330', true)). +answer('urn:example:complies'('urn:example:bob1331', true)). +answer('urn:example:complies'('urn:example:bob1332', true)). +answer('urn:example:complies'('urn:example:bob1333', true)). +answer('urn:example:complies'('urn:example:bob1334', true)). +answer('urn:example:complies'('urn:example:bob1335', true)). +answer('urn:example:complies'('urn:example:bob1336', true)). +answer('urn:example:complies'('urn:example:bob1337', true)). +answer('urn:example:complies'('urn:example:bob1338', true)). +answer('urn:example:complies'('urn:example:bob1339', true)). +answer('urn:example:complies'('urn:example:bob1340', true)). +answer('urn:example:complies'('urn:example:bob1341', true)). +answer('urn:example:complies'('urn:example:bob1342', true)). +answer('urn:example:complies'('urn:example:bob1343', true)). +answer('urn:example:complies'('urn:example:bob1344', true)). +answer('urn:example:complies'('urn:example:bob1345', true)). +answer('urn:example:complies'('urn:example:bob1346', true)). +answer('urn:example:complies'('urn:example:bob1347', true)). +answer('urn:example:complies'('urn:example:bob1348', true)). +answer('urn:example:complies'('urn:example:bob1349', true)). +answer('urn:example:complies'('urn:example:bob1350', true)). +answer('urn:example:complies'('urn:example:bob1351', true)). +answer('urn:example:complies'('urn:example:bob1352', true)). +answer('urn:example:complies'('urn:example:bob1353', true)). +answer('urn:example:complies'('urn:example:bob1354', true)). +answer('urn:example:complies'('urn:example:bob1355', true)). +answer('urn:example:complies'('urn:example:bob1356', true)). +answer('urn:example:complies'('urn:example:bob1357', true)). +answer('urn:example:complies'('urn:example:bob1358', true)). +answer('urn:example:complies'('urn:example:bob1359', true)). +answer('urn:example:complies'('urn:example:bob1360', true)). +answer('urn:example:complies'('urn:example:bob1361', true)). +answer('urn:example:complies'('urn:example:bob1362', true)). +answer('urn:example:complies'('urn:example:bob1363', true)). +answer('urn:example:complies'('urn:example:bob1364', true)). +answer('urn:example:complies'('urn:example:bob1365', true)). +answer('urn:example:complies'('urn:example:bob1366', true)). +answer('urn:example:complies'('urn:example:bob1367', true)). +answer('urn:example:complies'('urn:example:bob1368', true)). +answer('urn:example:complies'('urn:example:bob1369', true)). +answer('urn:example:complies'('urn:example:bob1370', true)). +answer('urn:example:complies'('urn:example:bob1371', true)). +answer('urn:example:complies'('urn:example:bob1372', true)). +answer('urn:example:complies'('urn:example:bob1373', true)). +answer('urn:example:complies'('urn:example:bob1374', true)). +answer('urn:example:complies'('urn:example:bob1375', true)). +answer('urn:example:complies'('urn:example:bob1376', true)). +answer('urn:example:complies'('urn:example:bob1377', true)). +answer('urn:example:complies'('urn:example:bob1378', true)). +answer('urn:example:complies'('urn:example:bob1379', true)). +answer('urn:example:complies'('urn:example:bob1380', true)). +answer('urn:example:complies'('urn:example:bob1381', true)). +answer('urn:example:complies'('urn:example:bob1382', true)). +answer('urn:example:complies'('urn:example:bob1383', true)). +answer('urn:example:complies'('urn:example:bob1384', true)). +answer('urn:example:complies'('urn:example:bob1385', true)). +answer('urn:example:complies'('urn:example:bob1386', true)). +answer('urn:example:complies'('urn:example:bob1387', true)). +answer('urn:example:complies'('urn:example:bob1388', true)). +answer('urn:example:complies'('urn:example:bob1389', true)). +answer('urn:example:complies'('urn:example:bob1390', true)). +answer('urn:example:complies'('urn:example:bob1391', true)). +answer('urn:example:complies'('urn:example:bob1392', true)). +answer('urn:example:complies'('urn:example:bob1393', true)). +answer('urn:example:complies'('urn:example:bob1394', true)). +answer('urn:example:complies'('urn:example:bob1395', true)). +answer('urn:example:complies'('urn:example:bob1396', true)). +answer('urn:example:complies'('urn:example:bob1397', true)). +answer('urn:example:complies'('urn:example:bob1398', true)). +answer('urn:example:complies'('urn:example:bob1399', true)). +answer('urn:example:complies'('urn:example:bob1400', true)). +answer('urn:example:complies'('urn:example:bob1401', true)). +answer('urn:example:complies'('urn:example:bob1402', true)). +answer('urn:example:complies'('urn:example:bob1403', true)). +answer('urn:example:complies'('urn:example:bob1404', true)). +answer('urn:example:complies'('urn:example:bob1405', true)). +answer('urn:example:complies'('urn:example:bob1406', true)). +answer('urn:example:complies'('urn:example:bob1407', true)). +answer('urn:example:complies'('urn:example:bob1408', true)). +answer('urn:example:complies'('urn:example:bob1409', true)). +answer('urn:example:complies'('urn:example:bob1410', true)). +answer('urn:example:complies'('urn:example:bob1411', true)). +answer('urn:example:complies'('urn:example:bob1412', true)). +answer('urn:example:complies'('urn:example:bob1413', true)). +answer('urn:example:complies'('urn:example:bob1414', true)). +answer('urn:example:complies'('urn:example:bob1415', true)). +answer('urn:example:complies'('urn:example:bob1416', true)). +answer('urn:example:complies'('urn:example:bob1417', true)). +answer('urn:example:complies'('urn:example:bob1418', true)). +answer('urn:example:complies'('urn:example:bob1419', true)). +answer('urn:example:complies'('urn:example:bob1420', true)). +answer('urn:example:complies'('urn:example:bob1421', true)). +answer('urn:example:complies'('urn:example:bob1422', true)). +answer('urn:example:complies'('urn:example:bob1423', true)). +answer('urn:example:complies'('urn:example:bob1424', true)). +answer('urn:example:complies'('urn:example:bob1425', true)). +answer('urn:example:complies'('urn:example:bob1426', true)). +answer('urn:example:complies'('urn:example:bob1427', true)). +answer('urn:example:complies'('urn:example:bob1428', true)). +answer('urn:example:complies'('urn:example:bob1429', true)). +answer('urn:example:complies'('urn:example:bob1430', true)). +answer('urn:example:complies'('urn:example:bob1431', true)). +answer('urn:example:complies'('urn:example:bob1432', true)). +answer('urn:example:complies'('urn:example:bob1433', true)). +answer('urn:example:complies'('urn:example:bob1434', true)). +answer('urn:example:complies'('urn:example:bob1435', true)). +answer('urn:example:complies'('urn:example:bob1436', true)). +answer('urn:example:complies'('urn:example:bob1437', true)). +answer('urn:example:complies'('urn:example:bob1438', true)). +answer('urn:example:complies'('urn:example:bob1439', true)). +answer('urn:example:complies'('urn:example:bob1440', true)). +answer('urn:example:complies'('urn:example:bob1441', true)). +answer('urn:example:complies'('urn:example:bob1442', true)). +answer('urn:example:complies'('urn:example:bob1443', true)). +answer('urn:example:complies'('urn:example:bob1444', true)). +answer('urn:example:complies'('urn:example:bob1445', true)). +answer('urn:example:complies'('urn:example:bob1446', true)). +answer('urn:example:complies'('urn:example:bob1447', true)). +answer('urn:example:complies'('urn:example:bob1448', true)). +answer('urn:example:complies'('urn:example:bob1449', true)). +answer('urn:example:complies'('urn:example:bob1450', true)). +answer('urn:example:complies'('urn:example:bob1451', true)). +answer('urn:example:complies'('urn:example:bob1452', true)). +answer('urn:example:complies'('urn:example:bob1453', true)). +answer('urn:example:complies'('urn:example:bob1454', true)). +answer('urn:example:complies'('urn:example:bob1455', true)). +answer('urn:example:complies'('urn:example:bob1456', true)). +answer('urn:example:complies'('urn:example:bob1457', true)). +answer('urn:example:complies'('urn:example:bob1458', true)). +answer('urn:example:complies'('urn:example:bob1459', true)). +answer('urn:example:complies'('urn:example:bob1460', true)). +answer('urn:example:complies'('urn:example:bob1461', true)). +answer('urn:example:complies'('urn:example:bob1462', true)). +answer('urn:example:complies'('urn:example:bob1463', true)). +answer('urn:example:complies'('urn:example:bob1464', true)). +answer('urn:example:complies'('urn:example:bob1465', true)). +answer('urn:example:complies'('urn:example:bob1466', true)). +answer('urn:example:complies'('urn:example:bob1467', true)). +answer('urn:example:complies'('urn:example:bob1468', true)). +answer('urn:example:complies'('urn:example:bob1469', true)). +answer('urn:example:complies'('urn:example:bob1470', true)). +answer('urn:example:complies'('urn:example:bob1471', true)). +answer('urn:example:complies'('urn:example:bob1472', true)). +answer('urn:example:complies'('urn:example:bob1473', true)). +answer('urn:example:complies'('urn:example:bob1474', true)). +answer('urn:example:complies'('urn:example:bob1475', true)). +answer('urn:example:complies'('urn:example:bob1476', true)). +answer('urn:example:complies'('urn:example:bob1477', true)). +answer('urn:example:complies'('urn:example:bob1478', true)). +answer('urn:example:complies'('urn:example:bob1479', true)). +answer('urn:example:complies'('urn:example:bob1480', true)). +answer('urn:example:complies'('urn:example:bob1481', true)). +answer('urn:example:complies'('urn:example:bob1482', true)). +answer('urn:example:complies'('urn:example:bob1483', true)). +answer('urn:example:complies'('urn:example:bob1484', true)). +answer('urn:example:complies'('urn:example:bob1485', true)). +answer('urn:example:complies'('urn:example:bob1486', true)). +answer('urn:example:complies'('urn:example:bob1487', true)). +answer('urn:example:complies'('urn:example:bob1488', true)). +answer('urn:example:complies'('urn:example:bob1489', true)). +answer('urn:example:complies'('urn:example:bob1490', true)). +answer('urn:example:complies'('urn:example:bob1491', true)). +answer('urn:example:complies'('urn:example:bob1492', true)). +answer('urn:example:complies'('urn:example:bob1493', true)). +answer('urn:example:complies'('urn:example:bob1494', true)). +answer('urn:example:complies'('urn:example:bob1495', true)). +answer('urn:example:complies'('urn:example:bob1496', true)). +answer('urn:example:complies'('urn:example:bob1497', true)). +answer('urn:example:complies'('urn:example:bob1498', true)). +answer('urn:example:complies'('urn:example:bob1499', true)). +answer('urn:example:complies'('urn:example:bob1500', true)). +answer('urn:example:complies'('urn:example:bob1501', true)). +answer('urn:example:complies'('urn:example:bob1502', true)). +answer('urn:example:complies'('urn:example:bob1503', true)). +answer('urn:example:complies'('urn:example:bob1504', true)). +answer('urn:example:complies'('urn:example:bob1505', true)). +answer('urn:example:complies'('urn:example:bob1506', true)). +answer('urn:example:complies'('urn:example:bob1507', true)). +answer('urn:example:complies'('urn:example:bob1508', true)). +answer('urn:example:complies'('urn:example:bob1509', true)). +answer('urn:example:complies'('urn:example:bob1510', true)). +answer('urn:example:complies'('urn:example:bob1511', true)). +answer('urn:example:complies'('urn:example:bob1512', true)). +answer('urn:example:complies'('urn:example:bob1513', true)). +answer('urn:example:complies'('urn:example:bob1514', true)). +answer('urn:example:complies'('urn:example:bob1515', true)). +answer('urn:example:complies'('urn:example:bob1516', true)). +answer('urn:example:complies'('urn:example:bob1517', true)). +answer('urn:example:complies'('urn:example:bob1518', true)). +answer('urn:example:complies'('urn:example:bob1519', true)). +answer('urn:example:complies'('urn:example:bob1520', true)). +answer('urn:example:complies'('urn:example:bob1521', true)). +answer('urn:example:complies'('urn:example:bob1522', true)). +answer('urn:example:complies'('urn:example:bob1523', true)). +answer('urn:example:complies'('urn:example:bob1524', true)). +answer('urn:example:complies'('urn:example:bob1525', true)). +answer('urn:example:complies'('urn:example:bob1526', true)). +answer('urn:example:complies'('urn:example:bob1527', true)). +answer('urn:example:complies'('urn:example:bob1528', true)). +answer('urn:example:complies'('urn:example:bob1529', true)). +answer('urn:example:complies'('urn:example:bob1530', true)). +answer('urn:example:complies'('urn:example:bob1531', true)). +answer('urn:example:complies'('urn:example:bob1532', true)). +answer('urn:example:complies'('urn:example:bob1533', true)). +answer('urn:example:complies'('urn:example:bob1534', true)). +answer('urn:example:complies'('urn:example:bob1535', true)). +answer('urn:example:complies'('urn:example:bob1536', true)). +answer('urn:example:complies'('urn:example:bob1537', true)). +answer('urn:example:complies'('urn:example:bob1538', true)). +answer('urn:example:complies'('urn:example:bob1539', true)). +answer('urn:example:complies'('urn:example:bob1540', true)). +answer('urn:example:complies'('urn:example:bob1541', true)). +answer('urn:example:complies'('urn:example:bob1542', true)). +answer('urn:example:complies'('urn:example:bob1543', true)). +answer('urn:example:complies'('urn:example:bob1544', true)). +answer('urn:example:complies'('urn:example:bob1545', true)). +answer('urn:example:complies'('urn:example:bob1546', true)). +answer('urn:example:complies'('urn:example:bob1547', true)). +answer('urn:example:complies'('urn:example:bob1548', true)). +answer('urn:example:complies'('urn:example:bob1549', true)). +answer('urn:example:complies'('urn:example:bob1550', true)). +answer('urn:example:complies'('urn:example:bob1551', true)). +answer('urn:example:complies'('urn:example:bob1552', true)). +answer('urn:example:complies'('urn:example:bob1553', true)). +answer('urn:example:complies'('urn:example:bob1554', true)). +answer('urn:example:complies'('urn:example:bob1555', true)). +answer('urn:example:complies'('urn:example:bob1556', true)). +answer('urn:example:complies'('urn:example:bob1557', true)). +answer('urn:example:complies'('urn:example:bob1558', true)). +answer('urn:example:complies'('urn:example:bob1559', true)). +answer('urn:example:complies'('urn:example:bob1560', true)). +answer('urn:example:complies'('urn:example:bob1561', true)). +answer('urn:example:complies'('urn:example:bob1562', true)). +answer('urn:example:complies'('urn:example:bob1563', true)). +answer('urn:example:complies'('urn:example:bob1564', true)). +answer('urn:example:complies'('urn:example:bob1565', true)). +answer('urn:example:complies'('urn:example:bob1566', true)). +answer('urn:example:complies'('urn:example:bob1567', true)). +answer('urn:example:complies'('urn:example:bob1568', true)). +answer('urn:example:complies'('urn:example:bob1569', true)). +answer('urn:example:complies'('urn:example:bob1570', true)). +answer('urn:example:complies'('urn:example:bob1571', true)). +answer('urn:example:complies'('urn:example:bob1572', true)). +answer('urn:example:complies'('urn:example:bob1573', true)). +answer('urn:example:complies'('urn:example:bob1574', true)). +answer('urn:example:complies'('urn:example:bob1575', true)). +answer('urn:example:complies'('urn:example:bob1576', true)). +answer('urn:example:complies'('urn:example:bob1577', true)). +answer('urn:example:complies'('urn:example:bob1578', true)). +answer('urn:example:complies'('urn:example:bob1579', true)). +answer('urn:example:complies'('urn:example:bob1580', true)). +answer('urn:example:complies'('urn:example:bob1581', true)). +answer('urn:example:complies'('urn:example:bob1582', true)). +answer('urn:example:complies'('urn:example:bob1583', true)). +answer('urn:example:complies'('urn:example:bob1584', true)). +answer('urn:example:complies'('urn:example:bob1585', true)). +answer('urn:example:complies'('urn:example:bob1586', true)). +answer('urn:example:complies'('urn:example:bob1587', true)). +answer('urn:example:complies'('urn:example:bob1588', true)). +answer('urn:example:complies'('urn:example:bob1589', true)). +answer('urn:example:complies'('urn:example:bob1590', true)). +answer('urn:example:complies'('urn:example:bob1591', true)). +answer('urn:example:complies'('urn:example:bob1592', true)). +answer('urn:example:complies'('urn:example:bob1593', true)). +answer('urn:example:complies'('urn:example:bob1594', true)). +answer('urn:example:complies'('urn:example:bob1595', true)). +answer('urn:example:complies'('urn:example:bob1596', true)). +answer('urn:example:complies'('urn:example:bob1597', true)). +answer('urn:example:complies'('urn:example:bob1598', true)). +answer('urn:example:complies'('urn:example:bob1599', true)). +answer('urn:example:complies'('urn:example:bob1600', true)). +answer('urn:example:complies'('urn:example:bob1601', true)). +answer('urn:example:complies'('urn:example:bob1602', true)). +answer('urn:example:complies'('urn:example:bob1603', true)). +answer('urn:example:complies'('urn:example:bob1604', true)). +answer('urn:example:complies'('urn:example:bob1605', true)). +answer('urn:example:complies'('urn:example:bob1606', true)). +answer('urn:example:complies'('urn:example:bob1607', true)). +answer('urn:example:complies'('urn:example:bob1608', true)). +answer('urn:example:complies'('urn:example:bob1609', true)). +answer('urn:example:complies'('urn:example:bob1610', true)). +answer('urn:example:complies'('urn:example:bob1611', true)). +answer('urn:example:complies'('urn:example:bob1612', true)). +answer('urn:example:complies'('urn:example:bob1613', true)). +answer('urn:example:complies'('urn:example:bob1614', true)). +answer('urn:example:complies'('urn:example:bob1615', true)). +answer('urn:example:complies'('urn:example:bob1616', true)). +answer('urn:example:complies'('urn:example:bob1617', true)). +answer('urn:example:complies'('urn:example:bob1618', true)). +answer('urn:example:complies'('urn:example:bob1619', true)). +answer('urn:example:complies'('urn:example:bob1620', true)). +answer('urn:example:complies'('urn:example:bob1621', true)). +answer('urn:example:complies'('urn:example:bob1622', true)). +answer('urn:example:complies'('urn:example:bob1623', true)). +answer('urn:example:complies'('urn:example:bob1624', true)). +answer('urn:example:complies'('urn:example:bob1625', true)). +answer('urn:example:complies'('urn:example:bob1626', true)). +answer('urn:example:complies'('urn:example:bob1627', true)). +answer('urn:example:complies'('urn:example:bob1628', true)). +answer('urn:example:complies'('urn:example:bob1629', true)). +answer('urn:example:complies'('urn:example:bob1630', true)). +answer('urn:example:complies'('urn:example:bob1631', true)). +answer('urn:example:complies'('urn:example:bob1632', true)). +answer('urn:example:complies'('urn:example:bob1633', true)). +answer('urn:example:complies'('urn:example:bob1634', true)). +answer('urn:example:complies'('urn:example:bob1635', true)). +answer('urn:example:complies'('urn:example:bob1636', true)). +answer('urn:example:complies'('urn:example:bob1637', true)). +answer('urn:example:complies'('urn:example:bob1638', true)). +answer('urn:example:complies'('urn:example:bob1639', true)). +answer('urn:example:complies'('urn:example:bob1640', true)). +answer('urn:example:complies'('urn:example:bob1641', true)). +answer('urn:example:complies'('urn:example:bob1642', true)). +answer('urn:example:complies'('urn:example:bob1643', true)). +answer('urn:example:complies'('urn:example:bob1644', true)). +answer('urn:example:complies'('urn:example:bob1645', true)). +answer('urn:example:complies'('urn:example:bob1646', true)). +answer('urn:example:complies'('urn:example:bob1647', true)). +answer('urn:example:complies'('urn:example:bob1648', true)). +answer('urn:example:complies'('urn:example:bob1649', true)). +answer('urn:example:complies'('urn:example:bob1650', true)). +answer('urn:example:complies'('urn:example:bob1651', true)). +answer('urn:example:complies'('urn:example:bob1652', true)). +answer('urn:example:complies'('urn:example:bob1653', true)). +answer('urn:example:complies'('urn:example:bob1654', true)). +answer('urn:example:complies'('urn:example:bob1655', true)). +answer('urn:example:complies'('urn:example:bob1656', true)). +answer('urn:example:complies'('urn:example:bob1657', true)). +answer('urn:example:complies'('urn:example:bob1658', true)). +answer('urn:example:complies'('urn:example:bob1659', true)). +answer('urn:example:complies'('urn:example:bob1660', true)). +answer('urn:example:complies'('urn:example:bob1661', true)). +answer('urn:example:complies'('urn:example:bob1662', true)). +answer('urn:example:complies'('urn:example:bob1663', true)). +answer('urn:example:complies'('urn:example:bob1664', true)). +answer('urn:example:complies'('urn:example:bob1665', true)). +answer('urn:example:complies'('urn:example:bob1666', true)). +answer('urn:example:complies'('urn:example:bob1667', true)). +answer('urn:example:complies'('urn:example:bob1668', true)). +answer('urn:example:complies'('urn:example:bob1669', true)). +answer('urn:example:complies'('urn:example:bob1670', true)). +answer('urn:example:complies'('urn:example:bob1671', true)). +answer('urn:example:complies'('urn:example:bob1672', true)). +answer('urn:example:complies'('urn:example:bob1673', true)). +answer('urn:example:complies'('urn:example:bob1674', true)). +answer('urn:example:complies'('urn:example:bob1675', true)). +answer('urn:example:complies'('urn:example:bob1676', true)). +answer('urn:example:complies'('urn:example:bob1677', true)). +answer('urn:example:complies'('urn:example:bob1678', true)). +answer('urn:example:complies'('urn:example:bob1679', true)). +answer('urn:example:complies'('urn:example:bob1680', true)). +answer('urn:example:complies'('urn:example:bob1681', true)). +answer('urn:example:complies'('urn:example:bob1682', true)). +answer('urn:example:complies'('urn:example:bob1683', true)). +answer('urn:example:complies'('urn:example:bob1684', true)). +answer('urn:example:complies'('urn:example:bob1685', true)). +answer('urn:example:complies'('urn:example:bob1686', true)). +answer('urn:example:complies'('urn:example:bob1687', true)). +answer('urn:example:complies'('urn:example:bob1688', true)). +answer('urn:example:complies'('urn:example:bob1689', true)). +answer('urn:example:complies'('urn:example:bob1690', true)). +answer('urn:example:complies'('urn:example:bob1691', true)). +answer('urn:example:complies'('urn:example:bob1692', true)). +answer('urn:example:complies'('urn:example:bob1693', true)). +answer('urn:example:complies'('urn:example:bob1694', true)). +answer('urn:example:complies'('urn:example:bob1695', true)). +answer('urn:example:complies'('urn:example:bob1696', true)). +answer('urn:example:complies'('urn:example:bob1697', true)). +answer('urn:example:complies'('urn:example:bob1698', true)). +answer('urn:example:complies'('urn:example:bob1699', true)). +answer('urn:example:complies'('urn:example:bob1700', true)). +answer('urn:example:complies'('urn:example:bob1701', true)). +answer('urn:example:complies'('urn:example:bob1702', true)). +answer('urn:example:complies'('urn:example:bob1703', true)). +answer('urn:example:complies'('urn:example:bob1704', true)). +answer('urn:example:complies'('urn:example:bob1705', true)). +answer('urn:example:complies'('urn:example:bob1706', true)). +answer('urn:example:complies'('urn:example:bob1707', true)). +answer('urn:example:complies'('urn:example:bob1708', true)). +answer('urn:example:complies'('urn:example:bob1709', true)). +answer('urn:example:complies'('urn:example:bob1710', true)). +answer('urn:example:complies'('urn:example:bob1711', true)). +answer('urn:example:complies'('urn:example:bob1712', true)). +answer('urn:example:complies'('urn:example:bob1713', true)). +answer('urn:example:complies'('urn:example:bob1714', true)). +answer('urn:example:complies'('urn:example:bob1715', true)). +answer('urn:example:complies'('urn:example:bob1716', true)). +answer('urn:example:complies'('urn:example:bob1717', true)). +answer('urn:example:complies'('urn:example:bob1718', true)). +answer('urn:example:complies'('urn:example:bob1719', true)). +answer('urn:example:complies'('urn:example:bob1720', true)). +answer('urn:example:complies'('urn:example:bob1721', true)). +answer('urn:example:complies'('urn:example:bob1722', true)). +answer('urn:example:complies'('urn:example:bob1723', true)). +answer('urn:example:complies'('urn:example:bob1724', true)). +answer('urn:example:complies'('urn:example:bob1725', true)). +answer('urn:example:complies'('urn:example:bob1726', true)). +answer('urn:example:complies'('urn:example:bob1727', true)). +answer('urn:example:complies'('urn:example:bob1728', true)). +answer('urn:example:complies'('urn:example:bob1729', true)). +answer('urn:example:complies'('urn:example:bob1730', true)). +answer('urn:example:complies'('urn:example:bob1731', true)). +answer('urn:example:complies'('urn:example:bob1732', true)). +answer('urn:example:complies'('urn:example:bob1733', true)). +answer('urn:example:complies'('urn:example:bob1734', true)). +answer('urn:example:complies'('urn:example:bob1735', true)). +answer('urn:example:complies'('urn:example:bob1736', true)). +answer('urn:example:complies'('urn:example:bob1737', true)). +answer('urn:example:complies'('urn:example:bob1738', true)). +answer('urn:example:complies'('urn:example:bob1739', true)). +answer('urn:example:complies'('urn:example:bob1740', true)). +answer('urn:example:complies'('urn:example:bob1741', true)). +answer('urn:example:complies'('urn:example:bob1742', true)). +answer('urn:example:complies'('urn:example:bob1743', true)). +answer('urn:example:complies'('urn:example:bob1744', true)). +answer('urn:example:complies'('urn:example:bob1745', true)). +answer('urn:example:complies'('urn:example:bob1746', true)). +answer('urn:example:complies'('urn:example:bob1747', true)). +answer('urn:example:complies'('urn:example:bob1748', true)). +answer('urn:example:complies'('urn:example:bob1749', true)). +answer('urn:example:complies'('urn:example:bob1750', true)). +answer('urn:example:complies'('urn:example:bob1751', true)). +answer('urn:example:complies'('urn:example:bob1752', true)). +answer('urn:example:complies'('urn:example:bob1753', true)). +answer('urn:example:complies'('urn:example:bob1754', true)). +answer('urn:example:complies'('urn:example:bob1755', true)). +answer('urn:example:complies'('urn:example:bob1756', true)). +answer('urn:example:complies'('urn:example:bob1757', true)). +answer('urn:example:complies'('urn:example:bob1758', true)). +answer('urn:example:complies'('urn:example:bob1759', true)). +answer('urn:example:complies'('urn:example:bob1760', true)). +answer('urn:example:complies'('urn:example:bob1761', true)). +answer('urn:example:complies'('urn:example:bob1762', true)). +answer('urn:example:complies'('urn:example:bob1763', true)). +answer('urn:example:complies'('urn:example:bob1764', true)). +answer('urn:example:complies'('urn:example:bob1765', true)). +answer('urn:example:complies'('urn:example:bob1766', true)). +answer('urn:example:complies'('urn:example:bob1767', true)). +answer('urn:example:complies'('urn:example:bob1768', true)). +answer('urn:example:complies'('urn:example:bob1769', true)). +answer('urn:example:complies'('urn:example:bob1770', true)). +answer('urn:example:complies'('urn:example:bob1771', true)). +answer('urn:example:complies'('urn:example:bob1772', true)). +answer('urn:example:complies'('urn:example:bob1773', true)). +answer('urn:example:complies'('urn:example:bob1774', true)). +answer('urn:example:complies'('urn:example:bob1775', true)). +answer('urn:example:complies'('urn:example:bob1776', true)). +answer('urn:example:complies'('urn:example:bob1777', true)). +answer('urn:example:complies'('urn:example:bob1778', true)). +answer('urn:example:complies'('urn:example:bob1779', true)). +answer('urn:example:complies'('urn:example:bob1780', true)). +answer('urn:example:complies'('urn:example:bob1781', true)). +answer('urn:example:complies'('urn:example:bob1782', true)). +answer('urn:example:complies'('urn:example:bob1783', true)). +answer('urn:example:complies'('urn:example:bob1784', true)). +answer('urn:example:complies'('urn:example:bob1785', true)). +answer('urn:example:complies'('urn:example:bob1786', true)). +answer('urn:example:complies'('urn:example:bob1787', true)). +answer('urn:example:complies'('urn:example:bob1788', true)). +answer('urn:example:complies'('urn:example:bob1789', true)). +answer('urn:example:complies'('urn:example:bob1790', true)). +answer('urn:example:complies'('urn:example:bob1791', true)). +answer('urn:example:complies'('urn:example:bob1792', true)). +answer('urn:example:complies'('urn:example:bob1793', true)). +answer('urn:example:complies'('urn:example:bob1794', true)). +answer('urn:example:complies'('urn:example:bob1795', true)). +answer('urn:example:complies'('urn:example:bob1796', true)). +answer('urn:example:complies'('urn:example:bob1797', true)). +answer('urn:example:complies'('urn:example:bob1798', true)). +answer('urn:example:complies'('urn:example:bob1799', true)). +answer('urn:example:complies'('urn:example:bob1800', true)). +answer('urn:example:complies'('urn:example:bob1801', true)). +answer('urn:example:complies'('urn:example:bob1802', true)). +answer('urn:example:complies'('urn:example:bob1803', true)). +answer('urn:example:complies'('urn:example:bob1804', true)). +answer('urn:example:complies'('urn:example:bob1805', true)). +answer('urn:example:complies'('urn:example:bob1806', true)). +answer('urn:example:complies'('urn:example:bob1807', true)). +answer('urn:example:complies'('urn:example:bob1808', true)). +answer('urn:example:complies'('urn:example:bob1809', true)). +answer('urn:example:complies'('urn:example:bob1810', true)). +answer('urn:example:complies'('urn:example:bob1811', true)). +answer('urn:example:complies'('urn:example:bob1812', true)). +answer('urn:example:complies'('urn:example:bob1813', true)). +answer('urn:example:complies'('urn:example:bob1814', true)). +answer('urn:example:complies'('urn:example:bob1815', true)). +answer('urn:example:complies'('urn:example:bob1816', true)). +answer('urn:example:complies'('urn:example:bob1817', true)). +answer('urn:example:complies'('urn:example:bob1818', true)). +answer('urn:example:complies'('urn:example:bob1819', true)). +answer('urn:example:complies'('urn:example:bob1820', true)). +answer('urn:example:complies'('urn:example:bob1821', true)). +answer('urn:example:complies'('urn:example:bob1822', true)). +answer('urn:example:complies'('urn:example:bob1823', true)). +answer('urn:example:complies'('urn:example:bob1824', true)). +answer('urn:example:complies'('urn:example:bob1825', true)). +answer('urn:example:complies'('urn:example:bob1826', true)). +answer('urn:example:complies'('urn:example:bob1827', true)). +answer('urn:example:complies'('urn:example:bob1828', true)). +answer('urn:example:complies'('urn:example:bob1829', true)). +answer('urn:example:complies'('urn:example:bob1830', true)). +answer('urn:example:complies'('urn:example:bob1831', true)). +answer('urn:example:complies'('urn:example:bob1832', true)). +answer('urn:example:complies'('urn:example:bob1833', true)). +answer('urn:example:complies'('urn:example:bob1834', true)). +answer('urn:example:complies'('urn:example:bob1835', true)). +answer('urn:example:complies'('urn:example:bob1836', true)). +answer('urn:example:complies'('urn:example:bob1837', true)). +answer('urn:example:complies'('urn:example:bob1838', true)). +answer('urn:example:complies'('urn:example:bob1839', true)). +answer('urn:example:complies'('urn:example:bob1840', true)). +answer('urn:example:complies'('urn:example:bob1841', true)). +answer('urn:example:complies'('urn:example:bob1842', true)). +answer('urn:example:complies'('urn:example:bob1843', true)). +answer('urn:example:complies'('urn:example:bob1844', true)). +answer('urn:example:complies'('urn:example:bob1845', true)). +answer('urn:example:complies'('urn:example:bob1846', true)). +answer('urn:example:complies'('urn:example:bob1847', true)). +answer('urn:example:complies'('urn:example:bob1848', true)). +answer('urn:example:complies'('urn:example:bob1849', true)). +answer('urn:example:complies'('urn:example:bob1850', true)). +answer('urn:example:complies'('urn:example:bob1851', true)). +answer('urn:example:complies'('urn:example:bob1852', true)). +answer('urn:example:complies'('urn:example:bob1853', true)). +answer('urn:example:complies'('urn:example:bob1854', true)). +answer('urn:example:complies'('urn:example:bob1855', true)). +answer('urn:example:complies'('urn:example:bob1856', true)). +answer('urn:example:complies'('urn:example:bob1857', true)). +answer('urn:example:complies'('urn:example:bob1858', true)). +answer('urn:example:complies'('urn:example:bob1859', true)). +answer('urn:example:complies'('urn:example:bob1860', true)). +answer('urn:example:complies'('urn:example:bob1861', true)). +answer('urn:example:complies'('urn:example:bob1862', true)). +answer('urn:example:complies'('urn:example:bob1863', true)). +answer('urn:example:complies'('urn:example:bob1864', true)). +answer('urn:example:complies'('urn:example:bob1865', true)). +answer('urn:example:complies'('urn:example:bob1866', true)). +answer('urn:example:complies'('urn:example:bob1867', true)). +answer('urn:example:complies'('urn:example:bob1868', true)). +answer('urn:example:complies'('urn:example:bob1869', true)). +answer('urn:example:complies'('urn:example:bob1870', true)). +answer('urn:example:complies'('urn:example:bob1871', true)). +answer('urn:example:complies'('urn:example:bob1872', true)). +answer('urn:example:complies'('urn:example:bob1873', true)). +answer('urn:example:complies'('urn:example:bob1874', true)). +answer('urn:example:complies'('urn:example:bob1875', true)). +answer('urn:example:complies'('urn:example:bob1876', true)). +answer('urn:example:complies'('urn:example:bob1877', true)). +answer('urn:example:complies'('urn:example:bob1878', true)). +answer('urn:example:complies'('urn:example:bob1879', true)). +answer('urn:example:complies'('urn:example:bob1880', true)). +answer('urn:example:complies'('urn:example:bob1881', true)). +answer('urn:example:complies'('urn:example:bob1882', true)). +answer('urn:example:complies'('urn:example:bob1883', true)). +answer('urn:example:complies'('urn:example:bob1884', true)). +answer('urn:example:complies'('urn:example:bob1885', true)). +answer('urn:example:complies'('urn:example:bob1886', true)). +answer('urn:example:complies'('urn:example:bob1887', true)). +answer('urn:example:complies'('urn:example:bob1888', true)). +answer('urn:example:complies'('urn:example:bob1889', true)). +answer('urn:example:complies'('urn:example:bob1890', true)). +answer('urn:example:complies'('urn:example:bob1891', true)). +answer('urn:example:complies'('urn:example:bob1892', true)). +answer('urn:example:complies'('urn:example:bob1893', true)). +answer('urn:example:complies'('urn:example:bob1894', true)). +answer('urn:example:complies'('urn:example:bob1895', true)). +answer('urn:example:complies'('urn:example:bob1896', true)). +answer('urn:example:complies'('urn:example:bob1897', true)). +answer('urn:example:complies'('urn:example:bob1898', true)). +answer('urn:example:complies'('urn:example:bob1899', true)). +answer('urn:example:complies'('urn:example:bob1900', true)). +answer('urn:example:complies'('urn:example:bob1901', true)). +answer('urn:example:complies'('urn:example:bob1902', true)). +answer('urn:example:complies'('urn:example:bob1903', true)). +answer('urn:example:complies'('urn:example:bob1904', true)). +answer('urn:example:complies'('urn:example:bob1905', true)). +answer('urn:example:complies'('urn:example:bob1906', true)). +answer('urn:example:complies'('urn:example:bob1907', true)). +answer('urn:example:complies'('urn:example:bob1908', true)). +answer('urn:example:complies'('urn:example:bob1909', true)). +answer('urn:example:complies'('urn:example:bob1910', true)). +answer('urn:example:complies'('urn:example:bob1911', true)). +answer('urn:example:complies'('urn:example:bob1912', true)). +answer('urn:example:complies'('urn:example:bob1913', true)). +answer('urn:example:complies'('urn:example:bob1914', true)). +answer('urn:example:complies'('urn:example:bob1915', true)). +answer('urn:example:complies'('urn:example:bob1916', true)). +answer('urn:example:complies'('urn:example:bob1917', true)). +answer('urn:example:complies'('urn:example:bob1918', true)). +answer('urn:example:complies'('urn:example:bob1919', true)). +answer('urn:example:complies'('urn:example:bob1920', true)). +answer('urn:example:complies'('urn:example:bob1921', true)). +answer('urn:example:complies'('urn:example:bob1922', true)). +answer('urn:example:complies'('urn:example:bob1923', true)). +answer('urn:example:complies'('urn:example:bob1924', true)). +answer('urn:example:complies'('urn:example:bob1925', true)). +answer('urn:example:complies'('urn:example:bob1926', true)). +answer('urn:example:complies'('urn:example:bob1927', true)). +answer('urn:example:complies'('urn:example:bob1928', true)). +answer('urn:example:complies'('urn:example:bob1929', true)). +answer('urn:example:complies'('urn:example:bob1930', true)). +answer('urn:example:complies'('urn:example:bob1931', true)). +answer('urn:example:complies'('urn:example:bob1932', true)). +answer('urn:example:complies'('urn:example:bob1933', true)). +answer('urn:example:complies'('urn:example:bob1934', true)). +answer('urn:example:complies'('urn:example:bob1935', true)). +answer('urn:example:complies'('urn:example:bob1936', true)). +answer('urn:example:complies'('urn:example:bob1937', true)). +answer('urn:example:complies'('urn:example:bob1938', true)). +answer('urn:example:complies'('urn:example:bob1939', true)). +answer('urn:example:complies'('urn:example:bob1940', true)). +answer('urn:example:complies'('urn:example:bob1941', true)). +answer('urn:example:complies'('urn:example:bob1942', true)). +answer('urn:example:complies'('urn:example:bob1943', true)). +answer('urn:example:complies'('urn:example:bob1944', true)). +answer('urn:example:complies'('urn:example:bob1945', true)). +answer('urn:example:complies'('urn:example:bob1946', true)). +answer('urn:example:complies'('urn:example:bob1947', true)). +answer('urn:example:complies'('urn:example:bob1948', true)). +answer('urn:example:complies'('urn:example:bob1949', true)). +answer('urn:example:complies'('urn:example:bob1950', true)). +answer('urn:example:complies'('urn:example:bob1951', true)). +answer('urn:example:complies'('urn:example:bob1952', true)). +answer('urn:example:complies'('urn:example:bob1953', true)). +answer('urn:example:complies'('urn:example:bob1954', true)). +answer('urn:example:complies'('urn:example:bob1955', true)). +answer('urn:example:complies'('urn:example:bob1956', true)). +answer('urn:example:complies'('urn:example:bob1957', true)). +answer('urn:example:complies'('urn:example:bob1958', true)). +answer('urn:example:complies'('urn:example:bob1959', true)). +answer('urn:example:complies'('urn:example:bob1960', true)). +answer('urn:example:complies'('urn:example:bob1961', true)). +answer('urn:example:complies'('urn:example:bob1962', true)). +answer('urn:example:complies'('urn:example:bob1963', true)). +answer('urn:example:complies'('urn:example:bob1964', true)). +answer('urn:example:complies'('urn:example:bob1965', true)). +answer('urn:example:complies'('urn:example:bob1966', true)). +answer('urn:example:complies'('urn:example:bob1967', true)). +answer('urn:example:complies'('urn:example:bob1968', true)). +answer('urn:example:complies'('urn:example:bob1969', true)). +answer('urn:example:complies'('urn:example:bob1970', true)). +answer('urn:example:complies'('urn:example:bob1971', true)). +answer('urn:example:complies'('urn:example:bob1972', true)). +answer('urn:example:complies'('urn:example:bob1973', true)). +answer('urn:example:complies'('urn:example:bob1974', true)). +answer('urn:example:complies'('urn:example:bob1975', true)). +answer('urn:example:complies'('urn:example:bob1976', true)). +answer('urn:example:complies'('urn:example:bob1977', true)). +answer('urn:example:complies'('urn:example:bob1978', true)). +answer('urn:example:complies'('urn:example:bob1979', true)). +answer('urn:example:complies'('urn:example:bob1980', true)). +answer('urn:example:complies'('urn:example:bob1981', true)). +answer('urn:example:complies'('urn:example:bob1982', true)). +answer('urn:example:complies'('urn:example:bob1983', true)). +answer('urn:example:complies'('urn:example:bob1984', true)). +answer('urn:example:complies'('urn:example:bob1985', true)). +answer('urn:example:complies'('urn:example:bob1986', true)). +answer('urn:example:complies'('urn:example:bob1987', true)). +answer('urn:example:complies'('urn:example:bob1988', true)). +answer('urn:example:complies'('urn:example:bob1989', true)). +answer('urn:example:complies'('urn:example:bob1990', true)). +answer('urn:example:complies'('urn:example:bob1991', true)). +answer('urn:example:complies'('urn:example:bob1992', true)). +answer('urn:example:complies'('urn:example:bob1993', true)). +answer('urn:example:complies'('urn:example:bob1994', true)). +answer('urn:example:complies'('urn:example:bob1995', true)). +answer('urn:example:complies'('urn:example:bob1996', true)). +answer('urn:example:complies'('urn:example:bob1997', true)). +answer('urn:example:complies'('urn:example:bob1998', true)). +answer('urn:example:complies'('urn:example:bob1999', true)). +answer('urn:example:complies'('urn:example:bob2000', true)). +answer('urn:example:complies'('urn:example:bob2001', true)). +answer('urn:example:complies'('urn:example:bob2002', true)). +answer('urn:example:complies'('urn:example:bob2003', true)). +answer('urn:example:complies'('urn:example:bob2004', true)). +answer('urn:example:complies'('urn:example:bob2005', true)). +answer('urn:example:complies'('urn:example:bob2006', true)). +answer('urn:example:complies'('urn:example:bob2007', true)). +answer('urn:example:complies'('urn:example:bob2008', true)). +answer('urn:example:complies'('urn:example:bob2009', true)). +answer('urn:example:complies'('urn:example:bob2010', true)). +answer('urn:example:complies'('urn:example:bob2011', true)). +answer('urn:example:complies'('urn:example:bob2012', true)). +answer('urn:example:complies'('urn:example:bob2013', true)). +answer('urn:example:complies'('urn:example:bob2014', true)). +answer('urn:example:complies'('urn:example:bob2015', true)). +answer('urn:example:complies'('urn:example:bob2016', true)). +answer('urn:example:complies'('urn:example:bob2017', true)). +answer('urn:example:complies'('urn:example:bob2018', true)). +answer('urn:example:complies'('urn:example:bob2019', true)). +answer('urn:example:complies'('urn:example:bob2020', true)). +answer('urn:example:complies'('urn:example:bob2021', true)). +answer('urn:example:complies'('urn:example:bob2022', true)). +answer('urn:example:complies'('urn:example:bob2023', true)). +answer('urn:example:complies'('urn:example:bob2024', true)). +answer('urn:example:complies'('urn:example:bob2025', true)). +answer('urn:example:complies'('urn:example:bob2026', true)). +answer('urn:example:complies'('urn:example:bob2027', true)). +answer('urn:example:complies'('urn:example:bob2028', true)). +answer('urn:example:complies'('urn:example:bob2029', true)). +answer('urn:example:complies'('urn:example:bob2030', true)). +answer('urn:example:complies'('urn:example:bob2031', true)). +answer('urn:example:complies'('urn:example:bob2032', true)). +answer('urn:example:complies'('urn:example:bob2033', true)). +answer('urn:example:complies'('urn:example:bob2034', true)). +answer('urn:example:complies'('urn:example:bob2035', true)). +answer('urn:example:complies'('urn:example:bob2036', true)). +answer('urn:example:complies'('urn:example:bob2037', true)). +answer('urn:example:complies'('urn:example:bob2038', true)). +answer('urn:example:complies'('urn:example:bob2039', true)). +answer('urn:example:complies'('urn:example:bob2040', true)). +answer('urn:example:complies'('urn:example:bob2041', true)). +answer('urn:example:complies'('urn:example:bob2042', true)). +answer('urn:example:complies'('urn:example:bob2043', true)). +answer('urn:example:complies'('urn:example:bob2044', true)). +answer('urn:example:complies'('urn:example:bob2045', true)). +answer('urn:example:complies'('urn:example:bob2046', true)). +answer('urn:example:complies'('urn:example:bob2047', true)). +answer('urn:example:complies'('urn:example:bob2048', true)). +answer('urn:example:complies'('urn:example:bob2049', true)). +answer('urn:example:complies'('urn:example:bob2050', true)). +answer('urn:example:complies'('urn:example:bob2051', true)). +answer('urn:example:complies'('urn:example:bob2052', true)). +answer('urn:example:complies'('urn:example:bob2053', true)). +answer('urn:example:complies'('urn:example:bob2054', true)). +answer('urn:example:complies'('urn:example:bob2055', true)). +answer('urn:example:complies'('urn:example:bob2056', true)). +answer('urn:example:complies'('urn:example:bob2057', true)). +answer('urn:example:complies'('urn:example:bob2058', true)). +answer('urn:example:complies'('urn:example:bob2059', true)). +answer('urn:example:complies'('urn:example:bob2060', true)). +answer('urn:example:complies'('urn:example:bob2061', true)). +answer('urn:example:complies'('urn:example:bob2062', true)). +answer('urn:example:complies'('urn:example:bob2063', true)). +answer('urn:example:complies'('urn:example:bob2064', true)). +answer('urn:example:complies'('urn:example:bob2065', true)). +answer('urn:example:complies'('urn:example:bob2066', true)). +answer('urn:example:complies'('urn:example:bob2067', true)). +answer('urn:example:complies'('urn:example:bob2068', true)). +answer('urn:example:complies'('urn:example:bob2069', true)). +answer('urn:example:complies'('urn:example:bob2070', true)). +answer('urn:example:complies'('urn:example:bob2071', true)). +answer('urn:example:complies'('urn:example:bob2072', true)). +answer('urn:example:complies'('urn:example:bob2073', true)). +answer('urn:example:complies'('urn:example:bob2074', true)). +answer('urn:example:complies'('urn:example:bob2075', true)). +answer('urn:example:complies'('urn:example:bob2076', true)). +answer('urn:example:complies'('urn:example:bob2077', true)). +answer('urn:example:complies'('urn:example:bob2078', true)). +answer('urn:example:complies'('urn:example:bob2079', true)). +answer('urn:example:complies'('urn:example:bob2080', true)). +answer('urn:example:complies'('urn:example:bob2081', true)). +answer('urn:example:complies'('urn:example:bob2082', true)). +answer('urn:example:complies'('urn:example:bob2083', true)). +answer('urn:example:complies'('urn:example:bob2084', true)). +answer('urn:example:complies'('urn:example:bob2085', true)). +answer('urn:example:complies'('urn:example:bob2086', true)). +answer('urn:example:complies'('urn:example:bob2087', true)). +answer('urn:example:complies'('urn:example:bob2088', true)). +answer('urn:example:complies'('urn:example:bob2089', true)). +answer('urn:example:complies'('urn:example:bob2090', true)). +answer('urn:example:complies'('urn:example:bob2091', true)). +answer('urn:example:complies'('urn:example:bob2092', true)). +answer('urn:example:complies'('urn:example:bob2093', true)). +answer('urn:example:complies'('urn:example:bob2094', true)). +answer('urn:example:complies'('urn:example:bob2095', true)). +answer('urn:example:complies'('urn:example:bob2096', true)). +answer('urn:example:complies'('urn:example:bob2097', true)). +answer('urn:example:complies'('urn:example:bob2098', true)). +answer('urn:example:complies'('urn:example:bob2099', true)). +answer('urn:example:complies'('urn:example:bob2100', true)). +answer('urn:example:complies'('urn:example:bob2101', true)). +answer('urn:example:complies'('urn:example:bob2102', true)). +answer('urn:example:complies'('urn:example:bob2103', true)). +answer('urn:example:complies'('urn:example:bob2104', true)). +answer('urn:example:complies'('urn:example:bob2105', true)). +answer('urn:example:complies'('urn:example:bob2106', true)). +answer('urn:example:complies'('urn:example:bob2107', true)). +answer('urn:example:complies'('urn:example:bob2108', true)). +answer('urn:example:complies'('urn:example:bob2109', true)). +answer('urn:example:complies'('urn:example:bob2110', true)). +answer('urn:example:complies'('urn:example:bob2111', true)). +answer('urn:example:complies'('urn:example:bob2112', true)). +answer('urn:example:complies'('urn:example:bob2113', true)). +answer('urn:example:complies'('urn:example:bob2114', true)). +answer('urn:example:complies'('urn:example:bob2115', true)). +answer('urn:example:complies'('urn:example:bob2116', true)). +answer('urn:example:complies'('urn:example:bob2117', true)). +answer('urn:example:complies'('urn:example:bob2118', true)). +answer('urn:example:complies'('urn:example:bob2119', true)). +answer('urn:example:complies'('urn:example:bob2120', true)). +answer('urn:example:complies'('urn:example:bob2121', true)). +answer('urn:example:complies'('urn:example:bob2122', true)). +answer('urn:example:complies'('urn:example:bob2123', true)). +answer('urn:example:complies'('urn:example:bob2124', true)). +answer('urn:example:complies'('urn:example:bob2125', true)). +answer('urn:example:complies'('urn:example:bob2126', true)). +answer('urn:example:complies'('urn:example:bob2127', true)). +answer('urn:example:complies'('urn:example:bob2128', true)). +answer('urn:example:complies'('urn:example:bob2129', true)). +answer('urn:example:complies'('urn:example:bob2130', true)). +answer('urn:example:complies'('urn:example:bob2131', true)). +answer('urn:example:complies'('urn:example:bob2132', true)). +answer('urn:example:complies'('urn:example:bob2133', true)). +answer('urn:example:complies'('urn:example:bob2134', true)). +answer('urn:example:complies'('urn:example:bob2135', true)). +answer('urn:example:complies'('urn:example:bob2136', true)). +answer('urn:example:complies'('urn:example:bob2137', true)). +answer('urn:example:complies'('urn:example:bob2138', true)). +answer('urn:example:complies'('urn:example:bob2139', true)). +answer('urn:example:complies'('urn:example:bob2140', true)). +answer('urn:example:complies'('urn:example:bob2141', true)). +answer('urn:example:complies'('urn:example:bob2142', true)). +answer('urn:example:complies'('urn:example:bob2143', true)). +answer('urn:example:complies'('urn:example:bob2144', true)). +answer('urn:example:complies'('urn:example:bob2145', true)). +answer('urn:example:complies'('urn:example:bob2146', true)). +answer('urn:example:complies'('urn:example:bob2147', true)). +answer('urn:example:complies'('urn:example:bob2148', true)). +answer('urn:example:complies'('urn:example:bob2149', true)). +answer('urn:example:complies'('urn:example:bob2150', true)). +answer('urn:example:complies'('urn:example:bob2151', true)). +answer('urn:example:complies'('urn:example:bob2152', true)). +answer('urn:example:complies'('urn:example:bob2153', true)). +answer('urn:example:complies'('urn:example:bob2154', true)). +answer('urn:example:complies'('urn:example:bob2155', true)). +answer('urn:example:complies'('urn:example:bob2156', true)). +answer('urn:example:complies'('urn:example:bob2157', true)). +answer('urn:example:complies'('urn:example:bob2158', true)). +answer('urn:example:complies'('urn:example:bob2159', true)). +answer('urn:example:complies'('urn:example:bob2160', true)). +answer('urn:example:complies'('urn:example:bob2161', true)). +answer('urn:example:complies'('urn:example:bob2162', true)). +answer('urn:example:complies'('urn:example:bob2163', true)). +answer('urn:example:complies'('urn:example:bob2164', true)). +answer('urn:example:complies'('urn:example:bob2165', true)). +answer('urn:example:complies'('urn:example:bob2166', true)). +answer('urn:example:complies'('urn:example:bob2167', true)). +answer('urn:example:complies'('urn:example:bob2168', true)). +answer('urn:example:complies'('urn:example:bob2169', true)). +answer('urn:example:complies'('urn:example:bob2170', true)). +answer('urn:example:complies'('urn:example:bob2171', true)). +answer('urn:example:complies'('urn:example:bob2172', true)). +answer('urn:example:complies'('urn:example:bob2173', true)). +answer('urn:example:complies'('urn:example:bob2174', true)). +answer('urn:example:complies'('urn:example:bob2175', true)). +answer('urn:example:complies'('urn:example:bob2176', true)). +answer('urn:example:complies'('urn:example:bob2177', true)). +answer('urn:example:complies'('urn:example:bob2178', true)). +answer('urn:example:complies'('urn:example:bob2179', true)). +answer('urn:example:complies'('urn:example:bob2180', true)). +answer('urn:example:complies'('urn:example:bob2181', true)). +answer('urn:example:complies'('urn:example:bob2182', true)). +answer('urn:example:complies'('urn:example:bob2183', true)). +answer('urn:example:complies'('urn:example:bob2184', true)). +answer('urn:example:complies'('urn:example:bob2185', true)). +answer('urn:example:complies'('urn:example:bob2186', true)). +answer('urn:example:complies'('urn:example:bob2187', true)). +answer('urn:example:complies'('urn:example:bob2188', true)). +answer('urn:example:complies'('urn:example:bob2189', true)). +answer('urn:example:complies'('urn:example:bob2190', true)). +answer('urn:example:complies'('urn:example:bob2191', true)). +answer('urn:example:complies'('urn:example:bob2192', true)). +answer('urn:example:complies'('urn:example:bob2193', true)). +answer('urn:example:complies'('urn:example:bob2194', true)). +answer('urn:example:complies'('urn:example:bob2195', true)). +answer('urn:example:complies'('urn:example:bob2196', true)). +answer('urn:example:complies'('urn:example:bob2197', true)). +answer('urn:example:complies'('urn:example:bob2198', true)). +answer('urn:example:complies'('urn:example:bob2199', true)). +answer('urn:example:complies'('urn:example:bob2200', true)). +answer('urn:example:complies'('urn:example:bob2201', true)). +answer('urn:example:complies'('urn:example:bob2202', true)). +answer('urn:example:complies'('urn:example:bob2203', true)). +answer('urn:example:complies'('urn:example:bob2204', true)). +answer('urn:example:complies'('urn:example:bob2205', true)). +answer('urn:example:complies'('urn:example:bob2206', true)). +answer('urn:example:complies'('urn:example:bob2207', true)). +answer('urn:example:complies'('urn:example:bob2208', true)). +answer('urn:example:complies'('urn:example:bob2209', true)). +answer('urn:example:complies'('urn:example:bob2210', true)). +answer('urn:example:complies'('urn:example:bob2211', true)). +answer('urn:example:complies'('urn:example:bob2212', true)). +answer('urn:example:complies'('urn:example:bob2213', true)). +answer('urn:example:complies'('urn:example:bob2214', true)). +answer('urn:example:complies'('urn:example:bob2215', true)). +answer('urn:example:complies'('urn:example:bob2216', true)). +answer('urn:example:complies'('urn:example:bob2217', true)). +answer('urn:example:complies'('urn:example:bob2218', true)). +answer('urn:example:complies'('urn:example:bob2219', true)). +answer('urn:example:complies'('urn:example:bob2220', true)). +answer('urn:example:complies'('urn:example:bob2221', true)). +answer('urn:example:complies'('urn:example:bob2222', true)). +answer('urn:example:complies'('urn:example:bob2223', true)). +answer('urn:example:complies'('urn:example:bob2224', true)). +answer('urn:example:complies'('urn:example:bob2225', true)). +answer('urn:example:complies'('urn:example:bob2226', true)). +answer('urn:example:complies'('urn:example:bob2227', true)). +answer('urn:example:complies'('urn:example:bob2228', true)). +answer('urn:example:complies'('urn:example:bob2229', true)). +answer('urn:example:complies'('urn:example:bob2230', true)). +answer('urn:example:complies'('urn:example:bob2231', true)). +answer('urn:example:complies'('urn:example:bob2232', true)). +answer('urn:example:complies'('urn:example:bob2233', true)). +answer('urn:example:complies'('urn:example:bob2234', true)). +answer('urn:example:complies'('urn:example:bob2235', true)). +answer('urn:example:complies'('urn:example:bob2236', true)). +answer('urn:example:complies'('urn:example:bob2237', true)). +answer('urn:example:complies'('urn:example:bob2238', true)). +answer('urn:example:complies'('urn:example:bob2239', true)). +answer('urn:example:complies'('urn:example:bob2240', true)). +answer('urn:example:complies'('urn:example:bob2241', true)). +answer('urn:example:complies'('urn:example:bob2242', true)). +answer('urn:example:complies'('urn:example:bob2243', true)). +answer('urn:example:complies'('urn:example:bob2244', true)). +answer('urn:example:complies'('urn:example:bob2245', true)). +answer('urn:example:complies'('urn:example:bob2246', true)). +answer('urn:example:complies'('urn:example:bob2247', true)). +answer('urn:example:complies'('urn:example:bob2248', true)). +answer('urn:example:complies'('urn:example:bob2249', true)). +answer('urn:example:complies'('urn:example:bob2250', true)). +answer('urn:example:complies'('urn:example:bob2251', true)). +answer('urn:example:complies'('urn:example:bob2252', true)). +answer('urn:example:complies'('urn:example:bob2253', true)). +answer('urn:example:complies'('urn:example:bob2254', true)). +answer('urn:example:complies'('urn:example:bob2255', true)). +answer('urn:example:complies'('urn:example:bob2256', true)). +answer('urn:example:complies'('urn:example:bob2257', true)). +answer('urn:example:complies'('urn:example:bob2258', true)). +answer('urn:example:complies'('urn:example:bob2259', true)). +answer('urn:example:complies'('urn:example:bob2260', true)). +answer('urn:example:complies'('urn:example:bob2261', true)). +answer('urn:example:complies'('urn:example:bob2262', true)). +answer('urn:example:complies'('urn:example:bob2263', true)). +answer('urn:example:complies'('urn:example:bob2264', true)). +answer('urn:example:complies'('urn:example:bob2265', true)). +answer('urn:example:complies'('urn:example:bob2266', true)). +answer('urn:example:complies'('urn:example:bob2267', true)). +answer('urn:example:complies'('urn:example:bob2268', true)). +answer('urn:example:complies'('urn:example:bob2269', true)). +answer('urn:example:complies'('urn:example:bob2270', true)). +answer('urn:example:complies'('urn:example:bob2271', true)). +answer('urn:example:complies'('urn:example:bob2272', true)). +answer('urn:example:complies'('urn:example:bob2273', true)). +answer('urn:example:complies'('urn:example:bob2274', true)). +answer('urn:example:complies'('urn:example:bob2275', true)). +answer('urn:example:complies'('urn:example:bob2276', true)). +answer('urn:example:complies'('urn:example:bob2277', true)). +answer('urn:example:complies'('urn:example:bob2278', true)). +answer('urn:example:complies'('urn:example:bob2279', true)). +answer('urn:example:complies'('urn:example:bob2280', true)). +answer('urn:example:complies'('urn:example:bob2281', true)). +answer('urn:example:complies'('urn:example:bob2282', true)). +answer('urn:example:complies'('urn:example:bob2283', true)). +answer('urn:example:complies'('urn:example:bob2284', true)). +answer('urn:example:complies'('urn:example:bob2285', true)). +answer('urn:example:complies'('urn:example:bob2286', true)). +answer('urn:example:complies'('urn:example:bob2287', true)). +answer('urn:example:complies'('urn:example:bob2288', true)). +answer('urn:example:complies'('urn:example:bob2289', true)). +answer('urn:example:complies'('urn:example:bob2290', true)). +answer('urn:example:complies'('urn:example:bob2291', true)). +answer('urn:example:complies'('urn:example:bob2292', true)). +answer('urn:example:complies'('urn:example:bob2293', true)). +answer('urn:example:complies'('urn:example:bob2294', true)). +answer('urn:example:complies'('urn:example:bob2295', true)). +answer('urn:example:complies'('urn:example:bob2296', true)). +answer('urn:example:complies'('urn:example:bob2297', true)). +answer('urn:example:complies'('urn:example:bob2298', true)). +answer('urn:example:complies'('urn:example:bob2299', true)). +answer('urn:example:complies'('urn:example:bob2300', true)). +answer('urn:example:complies'('urn:example:bob2301', true)). +answer('urn:example:complies'('urn:example:bob2302', true)). +answer('urn:example:complies'('urn:example:bob2303', true)). +answer('urn:example:complies'('urn:example:bob2304', true)). +answer('urn:example:complies'('urn:example:bob2305', true)). +answer('urn:example:complies'('urn:example:bob2306', true)). +answer('urn:example:complies'('urn:example:bob2307', true)). +answer('urn:example:complies'('urn:example:bob2308', true)). +answer('urn:example:complies'('urn:example:bob2309', true)). +answer('urn:example:complies'('urn:example:bob2310', true)). +answer('urn:example:complies'('urn:example:bob2311', true)). +answer('urn:example:complies'('urn:example:bob2312', true)). +answer('urn:example:complies'('urn:example:bob2313', true)). +answer('urn:example:complies'('urn:example:bob2314', true)). +answer('urn:example:complies'('urn:example:bob2315', true)). +answer('urn:example:complies'('urn:example:bob2316', true)). +answer('urn:example:complies'('urn:example:bob2317', true)). +answer('urn:example:complies'('urn:example:bob2318', true)). +answer('urn:example:complies'('urn:example:bob2319', true)). +answer('urn:example:complies'('urn:example:bob2320', true)). +answer('urn:example:complies'('urn:example:bob2321', true)). +answer('urn:example:complies'('urn:example:bob2322', true)). +answer('urn:example:complies'('urn:example:bob2323', true)). +answer('urn:example:complies'('urn:example:bob2324', true)). +answer('urn:example:complies'('urn:example:bob2325', true)). +answer('urn:example:complies'('urn:example:bob2326', true)). +answer('urn:example:complies'('urn:example:bob2327', true)). +answer('urn:example:complies'('urn:example:bob2328', true)). +answer('urn:example:complies'('urn:example:bob2329', true)). +answer('urn:example:complies'('urn:example:bob2330', true)). +answer('urn:example:complies'('urn:example:bob2331', true)). +answer('urn:example:complies'('urn:example:bob2332', true)). +answer('urn:example:complies'('urn:example:bob2333', true)). +answer('urn:example:complies'('urn:example:bob2334', true)). +answer('urn:example:complies'('urn:example:bob2335', true)). +answer('urn:example:complies'('urn:example:bob2336', true)). +answer('urn:example:complies'('urn:example:bob2337', true)). +answer('urn:example:complies'('urn:example:bob2338', true)). +answer('urn:example:complies'('urn:example:bob2339', true)). +answer('urn:example:complies'('urn:example:bob2340', true)). +answer('urn:example:complies'('urn:example:bob2341', true)). +answer('urn:example:complies'('urn:example:bob2342', true)). +answer('urn:example:complies'('urn:example:bob2343', true)). +answer('urn:example:complies'('urn:example:bob2344', true)). +answer('urn:example:complies'('urn:example:bob2345', true)). +answer('urn:example:complies'('urn:example:bob2346', true)). +answer('urn:example:complies'('urn:example:bob2347', true)). +answer('urn:example:complies'('urn:example:bob2348', true)). +answer('urn:example:complies'('urn:example:bob2349', true)). +answer('urn:example:complies'('urn:example:bob2350', true)). +answer('urn:example:complies'('urn:example:bob2351', true)). +answer('urn:example:complies'('urn:example:bob2352', true)). +answer('urn:example:complies'('urn:example:bob2353', true)). +answer('urn:example:complies'('urn:example:bob2354', true)). +answer('urn:example:complies'('urn:example:bob2355', true)). +answer('urn:example:complies'('urn:example:bob2356', true)). +answer('urn:example:complies'('urn:example:bob2357', true)). +answer('urn:example:complies'('urn:example:bob2358', true)). +answer('urn:example:complies'('urn:example:bob2359', true)). +answer('urn:example:complies'('urn:example:bob2360', true)). +answer('urn:example:complies'('urn:example:bob2361', true)). +answer('urn:example:complies'('urn:example:bob2362', true)). +answer('urn:example:complies'('urn:example:bob2363', true)). +answer('urn:example:complies'('urn:example:bob2364', true)). +answer('urn:example:complies'('urn:example:bob2365', true)). +answer('urn:example:complies'('urn:example:bob2366', true)). +answer('urn:example:complies'('urn:example:bob2367', true)). +answer('urn:example:complies'('urn:example:bob2368', true)). +answer('urn:example:complies'('urn:example:bob2369', true)). +answer('urn:example:complies'('urn:example:bob2370', true)). +answer('urn:example:complies'('urn:example:bob2371', true)). +answer('urn:example:complies'('urn:example:bob2372', true)). +answer('urn:example:complies'('urn:example:bob2373', true)). +answer('urn:example:complies'('urn:example:bob2374', true)). +answer('urn:example:complies'('urn:example:bob2375', true)). +answer('urn:example:complies'('urn:example:bob2376', true)). +answer('urn:example:complies'('urn:example:bob2377', true)). +answer('urn:example:complies'('urn:example:bob2378', true)). +answer('urn:example:complies'('urn:example:bob2379', true)). +answer('urn:example:complies'('urn:example:bob2380', true)). +answer('urn:example:complies'('urn:example:bob2381', true)). +answer('urn:example:complies'('urn:example:bob2382', true)). +answer('urn:example:complies'('urn:example:bob2383', true)). +answer('urn:example:complies'('urn:example:bob2384', true)). +answer('urn:example:complies'('urn:example:bob2385', true)). +answer('urn:example:complies'('urn:example:bob2386', true)). +answer('urn:example:complies'('urn:example:bob2387', true)). +answer('urn:example:complies'('urn:example:bob2388', true)). +answer('urn:example:complies'('urn:example:bob2389', true)). +answer('urn:example:complies'('urn:example:bob2390', true)). +answer('urn:example:complies'('urn:example:bob2391', true)). +answer('urn:example:complies'('urn:example:bob2392', true)). +answer('urn:example:complies'('urn:example:bob2393', true)). +answer('urn:example:complies'('urn:example:bob2394', true)). +answer('urn:example:complies'('urn:example:bob2395', true)). +answer('urn:example:complies'('urn:example:bob2396', true)). +answer('urn:example:complies'('urn:example:bob2397', true)). +answer('urn:example:complies'('urn:example:bob2398', true)). +answer('urn:example:complies'('urn:example:bob2399', true)). +answer('urn:example:complies'('urn:example:bob2400', true)). +answer('urn:example:complies'('urn:example:bob2401', true)). +answer('urn:example:complies'('urn:example:bob2402', true)). +answer('urn:example:complies'('urn:example:bob2403', true)). +answer('urn:example:complies'('urn:example:bob2404', true)). +answer('urn:example:complies'('urn:example:bob2405', true)). +answer('urn:example:complies'('urn:example:bob2406', true)). +answer('urn:example:complies'('urn:example:bob2407', true)). +answer('urn:example:complies'('urn:example:bob2408', true)). +answer('urn:example:complies'('urn:example:bob2409', true)). +answer('urn:example:complies'('urn:example:bob2410', true)). +answer('urn:example:complies'('urn:example:bob2411', true)). +answer('urn:example:complies'('urn:example:bob2412', true)). +answer('urn:example:complies'('urn:example:bob2413', true)). +answer('urn:example:complies'('urn:example:bob2414', true)). +answer('urn:example:complies'('urn:example:bob2415', true)). +answer('urn:example:complies'('urn:example:bob2416', true)). +answer('urn:example:complies'('urn:example:bob2417', true)). +answer('urn:example:complies'('urn:example:bob2418', true)). +answer('urn:example:complies'('urn:example:bob2419', true)). +answer('urn:example:complies'('urn:example:bob2420', true)). +answer('urn:example:complies'('urn:example:bob2421', true)). +answer('urn:example:complies'('urn:example:bob2422', true)). +answer('urn:example:complies'('urn:example:bob2423', true)). +answer('urn:example:complies'('urn:example:bob2424', true)). +answer('urn:example:complies'('urn:example:bob2425', true)). +answer('urn:example:complies'('urn:example:bob2426', true)). +answer('urn:example:complies'('urn:example:bob2427', true)). +answer('urn:example:complies'('urn:example:bob2428', true)). +answer('urn:example:complies'('urn:example:bob2429', true)). +answer('urn:example:complies'('urn:example:bob2430', true)). +answer('urn:example:complies'('urn:example:bob2431', true)). +answer('urn:example:complies'('urn:example:bob2432', true)). +answer('urn:example:complies'('urn:example:bob2433', true)). +answer('urn:example:complies'('urn:example:bob2434', true)). +answer('urn:example:complies'('urn:example:bob2435', true)). +answer('urn:example:complies'('urn:example:bob2436', true)). +answer('urn:example:complies'('urn:example:bob2437', true)). +answer('urn:example:complies'('urn:example:bob2438', true)). +answer('urn:example:complies'('urn:example:bob2439', true)). +answer('urn:example:complies'('urn:example:bob2440', true)). +answer('urn:example:complies'('urn:example:bob2441', true)). +answer('urn:example:complies'('urn:example:bob2442', true)). +answer('urn:example:complies'('urn:example:bob2443', true)). +answer('urn:example:complies'('urn:example:bob2444', true)). +answer('urn:example:complies'('urn:example:bob2445', true)). +answer('urn:example:complies'('urn:example:bob2446', true)). +answer('urn:example:complies'('urn:example:bob2447', true)). +answer('urn:example:complies'('urn:example:bob2448', true)). +answer('urn:example:complies'('urn:example:bob2449', true)). +answer('urn:example:complies'('urn:example:bob2450', true)). +answer('urn:example:complies'('urn:example:bob2451', true)). +answer('urn:example:complies'('urn:example:bob2452', true)). +answer('urn:example:complies'('urn:example:bob2453', true)). +answer('urn:example:complies'('urn:example:bob2454', true)). +answer('urn:example:complies'('urn:example:bob2455', true)). +answer('urn:example:complies'('urn:example:bob2456', true)). +answer('urn:example:complies'('urn:example:bob2457', true)). +answer('urn:example:complies'('urn:example:bob2458', true)). +answer('urn:example:complies'('urn:example:bob2459', true)). +answer('urn:example:complies'('urn:example:bob2460', true)). +answer('urn:example:complies'('urn:example:bob2461', true)). +answer('urn:example:complies'('urn:example:bob2462', true)). +answer('urn:example:complies'('urn:example:bob2463', true)). +answer('urn:example:complies'('urn:example:bob2464', true)). +answer('urn:example:complies'('urn:example:bob2465', true)). +answer('urn:example:complies'('urn:example:bob2466', true)). +answer('urn:example:complies'('urn:example:bob2467', true)). +answer('urn:example:complies'('urn:example:bob2468', true)). +answer('urn:example:complies'('urn:example:bob2469', true)). +answer('urn:example:complies'('urn:example:bob2470', true)). +answer('urn:example:complies'('urn:example:bob2471', true)). +answer('urn:example:complies'('urn:example:bob2472', true)). +answer('urn:example:complies'('urn:example:bob2473', true)). +answer('urn:example:complies'('urn:example:bob2474', true)). +answer('urn:example:complies'('urn:example:bob2475', true)). +answer('urn:example:complies'('urn:example:bob2476', true)). +answer('urn:example:complies'('urn:example:bob2477', true)). +answer('urn:example:complies'('urn:example:bob2478', true)). +answer('urn:example:complies'('urn:example:bob2479', true)). +answer('urn:example:complies'('urn:example:bob2480', true)). +answer('urn:example:complies'('urn:example:bob2481', true)). +answer('urn:example:complies'('urn:example:bob2482', true)). +answer('urn:example:complies'('urn:example:bob2483', true)). +answer('urn:example:complies'('urn:example:bob2484', true)). +answer('urn:example:complies'('urn:example:bob2485', true)). +answer('urn:example:complies'('urn:example:bob2486', true)). +answer('urn:example:complies'('urn:example:bob2487', true)). +answer('urn:example:complies'('urn:example:bob2488', true)). +answer('urn:example:complies'('urn:example:bob2489', true)). +answer('urn:example:complies'('urn:example:bob2490', true)). +answer('urn:example:complies'('urn:example:bob2491', true)). +answer('urn:example:complies'('urn:example:bob2492', true)). +answer('urn:example:complies'('urn:example:bob2493', true)). +answer('urn:example:complies'('urn:example:bob2494', true)). +answer('urn:example:complies'('urn:example:bob2495', true)). +answer('urn:example:complies'('urn:example:bob2496', true)). +answer('urn:example:complies'('urn:example:bob2497', true)). +answer('urn:example:complies'('urn:example:bob2498', true)). +answer('urn:example:complies'('urn:example:bob2499', true)). +answer('urn:example:complies'('urn:example:bob2500', true)). +answer('urn:example:complies'('urn:example:bob2501', true)). +answer('urn:example:complies'('urn:example:bob2502', true)). +answer('urn:example:complies'('urn:example:bob2503', true)). +answer('urn:example:complies'('urn:example:bob2504', true)). +answer('urn:example:complies'('urn:example:bob2505', true)). +answer('urn:example:complies'('urn:example:bob2506', true)). +answer('urn:example:complies'('urn:example:bob2507', true)). +answer('urn:example:complies'('urn:example:bob2508', true)). +answer('urn:example:complies'('urn:example:bob2509', true)). +answer('urn:example:complies'('urn:example:bob2510', true)). +answer('urn:example:complies'('urn:example:bob2511', true)). +answer('urn:example:complies'('urn:example:bob2512', true)). +answer('urn:example:complies'('urn:example:bob2513', true)). +answer('urn:example:complies'('urn:example:bob2514', true)). +answer('urn:example:complies'('urn:example:bob2515', true)). +answer('urn:example:complies'('urn:example:bob2516', true)). +answer('urn:example:complies'('urn:example:bob2517', true)). +answer('urn:example:complies'('urn:example:bob2518', true)). +answer('urn:example:complies'('urn:example:bob2519', true)). +answer('urn:example:complies'('urn:example:bob2520', true)). +answer('urn:example:complies'('urn:example:bob2521', true)). +answer('urn:example:complies'('urn:example:bob2522', true)). +answer('urn:example:complies'('urn:example:bob2523', true)). +answer('urn:example:complies'('urn:example:bob2524', true)). +answer('urn:example:complies'('urn:example:bob2525', true)). +answer('urn:example:complies'('urn:example:bob2526', true)). +answer('urn:example:complies'('urn:example:bob2527', true)). +answer('urn:example:complies'('urn:example:bob2528', true)). +answer('urn:example:complies'('urn:example:bob2529', true)). +answer('urn:example:complies'('urn:example:bob2530', true)). +answer('urn:example:complies'('urn:example:bob2531', true)). +answer('urn:example:complies'('urn:example:bob2532', true)). +answer('urn:example:complies'('urn:example:bob2533', true)). +answer('urn:example:complies'('urn:example:bob2534', true)). +answer('urn:example:complies'('urn:example:bob2535', true)). +answer('urn:example:complies'('urn:example:bob2536', true)). +answer('urn:example:complies'('urn:example:bob2537', true)). +answer('urn:example:complies'('urn:example:bob2538', true)). +answer('urn:example:complies'('urn:example:bob2539', true)). +answer('urn:example:complies'('urn:example:bob2540', true)). +answer('urn:example:complies'('urn:example:bob2541', true)). +answer('urn:example:complies'('urn:example:bob2542', true)). +answer('urn:example:complies'('urn:example:bob2543', true)). +answer('urn:example:complies'('urn:example:bob2544', true)). +answer('urn:example:complies'('urn:example:bob2545', true)). +answer('urn:example:complies'('urn:example:bob2546', true)). +answer('urn:example:complies'('urn:example:bob2547', true)). +answer('urn:example:complies'('urn:example:bob2548', true)). +answer('urn:example:complies'('urn:example:bob2549', true)). +answer('urn:example:complies'('urn:example:bob2550', true)). +answer('urn:example:complies'('urn:example:bob2551', true)). +answer('urn:example:complies'('urn:example:bob2552', true)). +answer('urn:example:complies'('urn:example:bob2553', true)). +answer('urn:example:complies'('urn:example:bob2554', true)). +answer('urn:example:complies'('urn:example:bob2555', true)). +answer('urn:example:complies'('urn:example:bob2556', true)). +answer('urn:example:complies'('urn:example:bob2557', true)). +answer('urn:example:complies'('urn:example:bob2558', true)). +answer('urn:example:complies'('urn:example:bob2559', true)). +answer('urn:example:complies'('urn:example:bob2560', true)). +answer('urn:example:complies'('urn:example:bob2561', true)). +answer('urn:example:complies'('urn:example:bob2562', true)). +answer('urn:example:complies'('urn:example:bob2563', true)). +answer('urn:example:complies'('urn:example:bob2564', true)). +answer('urn:example:complies'('urn:example:bob2565', true)). +answer('urn:example:complies'('urn:example:bob2566', true)). +answer('urn:example:complies'('urn:example:bob2567', true)). +answer('urn:example:complies'('urn:example:bob2568', true)). +answer('urn:example:complies'('urn:example:bob2569', true)). +answer('urn:example:complies'('urn:example:bob2570', true)). +answer('urn:example:complies'('urn:example:bob2571', true)). +answer('urn:example:complies'('urn:example:bob2572', true)). +answer('urn:example:complies'('urn:example:bob2573', true)). +answer('urn:example:complies'('urn:example:bob2574', true)). +answer('urn:example:complies'('urn:example:bob2575', true)). +answer('urn:example:complies'('urn:example:bob2576', true)). +answer('urn:example:complies'('urn:example:bob2577', true)). +answer('urn:example:complies'('urn:example:bob2578', true)). +answer('urn:example:complies'('urn:example:bob2579', true)). +answer('urn:example:complies'('urn:example:bob2580', true)). +answer('urn:example:complies'('urn:example:bob2581', true)). +answer('urn:example:complies'('urn:example:bob2582', true)). +answer('urn:example:complies'('urn:example:bob2583', true)). +answer('urn:example:complies'('urn:example:bob2584', true)). +answer('urn:example:complies'('urn:example:bob2585', true)). +answer('urn:example:complies'('urn:example:bob2586', true)). +answer('urn:example:complies'('urn:example:bob2587', true)). +answer('urn:example:complies'('urn:example:bob2588', true)). +answer('urn:example:complies'('urn:example:bob2589', true)). +answer('urn:example:complies'('urn:example:bob2590', true)). +answer('urn:example:complies'('urn:example:bob2591', true)). +answer('urn:example:complies'('urn:example:bob2592', true)). +answer('urn:example:complies'('urn:example:bob2593', true)). +answer('urn:example:complies'('urn:example:bob2594', true)). +answer('urn:example:complies'('urn:example:bob2595', true)). +answer('urn:example:complies'('urn:example:bob2596', true)). +answer('urn:example:complies'('urn:example:bob2597', true)). +answer('urn:example:complies'('urn:example:bob2598', true)). +answer('urn:example:complies'('urn:example:bob2599', true)). +answer('urn:example:complies'('urn:example:bob2600', true)). +answer('urn:example:complies'('urn:example:bob2601', true)). +answer('urn:example:complies'('urn:example:bob2602', true)). +answer('urn:example:complies'('urn:example:bob2603', true)). +answer('urn:example:complies'('urn:example:bob2604', true)). +answer('urn:example:complies'('urn:example:bob2605', true)). +answer('urn:example:complies'('urn:example:bob2606', true)). +answer('urn:example:complies'('urn:example:bob2607', true)). +answer('urn:example:complies'('urn:example:bob2608', true)). +answer('urn:example:complies'('urn:example:bob2609', true)). +answer('urn:example:complies'('urn:example:bob2610', true)). +answer('urn:example:complies'('urn:example:bob2611', true)). +answer('urn:example:complies'('urn:example:bob2612', true)). +answer('urn:example:complies'('urn:example:bob2613', true)). +answer('urn:example:complies'('urn:example:bob2614', true)). +answer('urn:example:complies'('urn:example:bob2615', true)). +answer('urn:example:complies'('urn:example:bob2616', true)). +answer('urn:example:complies'('urn:example:bob2617', true)). +answer('urn:example:complies'('urn:example:bob2618', true)). +answer('urn:example:complies'('urn:example:bob2619', true)). +answer('urn:example:complies'('urn:example:bob2620', true)). +answer('urn:example:complies'('urn:example:bob2621', true)). +answer('urn:example:complies'('urn:example:bob2622', true)). +answer('urn:example:complies'('urn:example:bob2623', true)). +answer('urn:example:complies'('urn:example:bob2624', true)). +answer('urn:example:complies'('urn:example:bob2625', true)). +answer('urn:example:complies'('urn:example:bob2626', true)). +answer('urn:example:complies'('urn:example:bob2627', true)). +answer('urn:example:complies'('urn:example:bob2628', true)). +answer('urn:example:complies'('urn:example:bob2629', true)). +answer('urn:example:complies'('urn:example:bob2630', true)). +answer('urn:example:complies'('urn:example:bob2631', true)). +answer('urn:example:complies'('urn:example:bob2632', true)). +answer('urn:example:complies'('urn:example:bob2633', true)). +answer('urn:example:complies'('urn:example:bob2634', true)). +answer('urn:example:complies'('urn:example:bob2635', true)). +answer('urn:example:complies'('urn:example:bob2636', true)). +answer('urn:example:complies'('urn:example:bob2637', true)). +answer('urn:example:complies'('urn:example:bob2638', true)). +answer('urn:example:complies'('urn:example:bob2639', true)). +answer('urn:example:complies'('urn:example:bob2640', true)). +answer('urn:example:complies'('urn:example:bob2641', true)). +answer('urn:example:complies'('urn:example:bob2642', true)). +answer('urn:example:complies'('urn:example:bob2643', true)). +answer('urn:example:complies'('urn:example:bob2644', true)). +answer('urn:example:complies'('urn:example:bob2645', true)). +answer('urn:example:complies'('urn:example:bob2646', true)). +answer('urn:example:complies'('urn:example:bob2647', true)). +answer('urn:example:complies'('urn:example:bob2648', true)). +answer('urn:example:complies'('urn:example:bob2649', true)). +answer('urn:example:complies'('urn:example:bob2650', true)). +answer('urn:example:complies'('urn:example:bob2651', true)). +answer('urn:example:complies'('urn:example:bob2652', true)). +answer('urn:example:complies'('urn:example:bob2653', true)). +answer('urn:example:complies'('urn:example:bob2654', true)). +answer('urn:example:complies'('urn:example:bob2655', true)). +answer('urn:example:complies'('urn:example:bob2656', true)). +answer('urn:example:complies'('urn:example:bob2657', true)). +answer('urn:example:complies'('urn:example:bob2658', true)). +answer('urn:example:complies'('urn:example:bob2659', true)). +answer('urn:example:complies'('urn:example:bob2660', true)). +answer('urn:example:complies'('urn:example:bob2661', true)). +answer('urn:example:complies'('urn:example:bob2662', true)). +answer('urn:example:complies'('urn:example:bob2663', true)). +answer('urn:example:complies'('urn:example:bob2664', true)). +answer('urn:example:complies'('urn:example:bob2665', true)). +answer('urn:example:complies'('urn:example:bob2666', true)). +answer('urn:example:complies'('urn:example:bob2667', true)). +answer('urn:example:complies'('urn:example:bob2668', true)). +answer('urn:example:complies'('urn:example:bob2669', true)). +answer('urn:example:complies'('urn:example:bob2670', true)). +answer('urn:example:complies'('urn:example:bob2671', true)). +answer('urn:example:complies'('urn:example:bob2672', true)). +answer('urn:example:complies'('urn:example:bob2673', true)). +answer('urn:example:complies'('urn:example:bob2674', true)). +answer('urn:example:complies'('urn:example:bob2675', true)). +answer('urn:example:complies'('urn:example:bob2676', true)). +answer('urn:example:complies'('urn:example:bob2677', true)). +answer('urn:example:complies'('urn:example:bob2678', true)). +answer('urn:example:complies'('urn:example:bob2679', true)). +answer('urn:example:complies'('urn:example:bob2680', true)). +answer('urn:example:complies'('urn:example:bob2681', true)). +answer('urn:example:complies'('urn:example:bob2682', true)). +answer('urn:example:complies'('urn:example:bob2683', true)). +answer('urn:example:complies'('urn:example:bob2684', true)). +answer('urn:example:complies'('urn:example:bob2685', true)). +answer('urn:example:complies'('urn:example:bob2686', true)). +answer('urn:example:complies'('urn:example:bob2687', true)). +answer('urn:example:complies'('urn:example:bob2688', true)). +answer('urn:example:complies'('urn:example:bob2689', true)). +answer('urn:example:complies'('urn:example:bob2690', true)). +answer('urn:example:complies'('urn:example:bob2691', true)). +answer('urn:example:complies'('urn:example:bob2692', true)). +answer('urn:example:complies'('urn:example:bob2693', true)). +answer('urn:example:complies'('urn:example:bob2694', true)). +answer('urn:example:complies'('urn:example:bob2695', true)). +answer('urn:example:complies'('urn:example:bob2696', true)). +answer('urn:example:complies'('urn:example:bob2697', true)). +answer('urn:example:complies'('urn:example:bob2698', true)). +answer('urn:example:complies'('urn:example:bob2699', true)). +answer('urn:example:complies'('urn:example:bob2700', true)). +answer('urn:example:complies'('urn:example:bob2701', true)). +answer('urn:example:complies'('urn:example:bob2702', true)). +answer('urn:example:complies'('urn:example:bob2703', true)). +answer('urn:example:complies'('urn:example:bob2704', true)). +answer('urn:example:complies'('urn:example:bob2705', true)). +answer('urn:example:complies'('urn:example:bob2706', true)). +answer('urn:example:complies'('urn:example:bob2707', true)). +answer('urn:example:complies'('urn:example:bob2708', true)). +answer('urn:example:complies'('urn:example:bob2709', true)). +answer('urn:example:complies'('urn:example:bob2710', true)). +answer('urn:example:complies'('urn:example:bob2711', true)). +answer('urn:example:complies'('urn:example:bob2712', true)). +answer('urn:example:complies'('urn:example:bob2713', true)). +answer('urn:example:complies'('urn:example:bob2714', true)). +answer('urn:example:complies'('urn:example:bob2715', true)). +answer('urn:example:complies'('urn:example:bob2716', true)). +answer('urn:example:complies'('urn:example:bob2717', true)). +answer('urn:example:complies'('urn:example:bob2718', true)). +answer('urn:example:complies'('urn:example:bob2719', true)). +answer('urn:example:complies'('urn:example:bob2720', true)). +answer('urn:example:complies'('urn:example:bob2721', true)). +answer('urn:example:complies'('urn:example:bob2722', true)). +answer('urn:example:complies'('urn:example:bob2723', true)). +answer('urn:example:complies'('urn:example:bob2724', true)). +answer('urn:example:complies'('urn:example:bob2725', true)). +answer('urn:example:complies'('urn:example:bob2726', true)). +answer('urn:example:complies'('urn:example:bob2727', true)). +answer('urn:example:complies'('urn:example:bob2728', true)). +answer('urn:example:complies'('urn:example:bob2729', true)). +answer('urn:example:complies'('urn:example:bob2730', true)). +answer('urn:example:complies'('urn:example:bob2731', true)). +answer('urn:example:complies'('urn:example:bob2732', true)). +answer('urn:example:complies'('urn:example:bob2733', true)). +answer('urn:example:complies'('urn:example:bob2734', true)). +answer('urn:example:complies'('urn:example:bob2735', true)). +answer('urn:example:complies'('urn:example:bob2736', true)). +answer('urn:example:complies'('urn:example:bob2737', true)). +answer('urn:example:complies'('urn:example:bob2738', true)). +answer('urn:example:complies'('urn:example:bob2739', true)). +answer('urn:example:complies'('urn:example:bob2740', true)). +answer('urn:example:complies'('urn:example:bob2741', true)). +answer('urn:example:complies'('urn:example:bob2742', true)). +answer('urn:example:complies'('urn:example:bob2743', true)). +answer('urn:example:complies'('urn:example:bob2744', true)). +answer('urn:example:complies'('urn:example:bob2745', true)). +answer('urn:example:complies'('urn:example:bob2746', true)). +answer('urn:example:complies'('urn:example:bob2747', true)). +answer('urn:example:complies'('urn:example:bob2748', true)). +answer('urn:example:complies'('urn:example:bob2749', true)). +answer('urn:example:complies'('urn:example:bob2750', true)). +answer('urn:example:complies'('urn:example:bob2751', true)). +answer('urn:example:complies'('urn:example:bob2752', true)). +answer('urn:example:complies'('urn:example:bob2753', true)). +answer('urn:example:complies'('urn:example:bob2754', true)). +answer('urn:example:complies'('urn:example:bob2755', true)). +answer('urn:example:complies'('urn:example:bob2756', true)). +answer('urn:example:complies'('urn:example:bob2757', true)). +answer('urn:example:complies'('urn:example:bob2758', true)). +answer('urn:example:complies'('urn:example:bob2759', true)). +answer('urn:example:complies'('urn:example:bob2760', true)). +answer('urn:example:complies'('urn:example:bob2761', true)). +answer('urn:example:complies'('urn:example:bob2762', true)). +answer('urn:example:complies'('urn:example:bob2763', true)). +answer('urn:example:complies'('urn:example:bob2764', true)). +answer('urn:example:complies'('urn:example:bob2765', true)). +answer('urn:example:complies'('urn:example:bob2766', true)). +answer('urn:example:complies'('urn:example:bob2767', true)). +answer('urn:example:complies'('urn:example:bob2768', true)). +answer('urn:example:complies'('urn:example:bob2769', true)). +answer('urn:example:complies'('urn:example:bob2770', true)). +answer('urn:example:complies'('urn:example:bob2771', true)). +answer('urn:example:complies'('urn:example:bob2772', true)). +answer('urn:example:complies'('urn:example:bob2773', true)). +answer('urn:example:complies'('urn:example:bob2774', true)). +answer('urn:example:complies'('urn:example:bob2775', true)). +answer('urn:example:complies'('urn:example:bob2776', true)). +answer('urn:example:complies'('urn:example:bob2777', true)). +answer('urn:example:complies'('urn:example:bob2778', true)). +answer('urn:example:complies'('urn:example:bob2779', true)). +answer('urn:example:complies'('urn:example:bob2780', true)). +answer('urn:example:complies'('urn:example:bob2781', true)). +answer('urn:example:complies'('urn:example:bob2782', true)). +answer('urn:example:complies'('urn:example:bob2783', true)). +answer('urn:example:complies'('urn:example:bob2784', true)). +answer('urn:example:complies'('urn:example:bob2785', true)). +answer('urn:example:complies'('urn:example:bob2786', true)). +answer('urn:example:complies'('urn:example:bob2787', true)). +answer('urn:example:complies'('urn:example:bob2788', true)). +answer('urn:example:complies'('urn:example:bob2789', true)). +answer('urn:example:complies'('urn:example:bob2790', true)). +answer('urn:example:complies'('urn:example:bob2791', true)). +answer('urn:example:complies'('urn:example:bob2792', true)). +answer('urn:example:complies'('urn:example:bob2793', true)). +answer('urn:example:complies'('urn:example:bob2794', true)). +answer('urn:example:complies'('urn:example:bob2795', true)). +answer('urn:example:complies'('urn:example:bob2796', true)). +answer('urn:example:complies'('urn:example:bob2797', true)). +answer('urn:example:complies'('urn:example:bob2798', true)). +answer('urn:example:complies'('urn:example:bob2799', true)). +answer('urn:example:complies'('urn:example:bob2800', true)). +answer('urn:example:complies'('urn:example:bob2801', true)). +answer('urn:example:complies'('urn:example:bob2802', true)). +answer('urn:example:complies'('urn:example:bob2803', true)). +answer('urn:example:complies'('urn:example:bob2804', true)). +answer('urn:example:complies'('urn:example:bob2805', true)). +answer('urn:example:complies'('urn:example:bob2806', true)). +answer('urn:example:complies'('urn:example:bob2807', true)). +answer('urn:example:complies'('urn:example:bob2808', true)). +answer('urn:example:complies'('urn:example:bob2809', true)). +answer('urn:example:complies'('urn:example:bob2810', true)). +answer('urn:example:complies'('urn:example:bob2811', true)). +answer('urn:example:complies'('urn:example:bob2812', true)). +answer('urn:example:complies'('urn:example:bob2813', true)). +answer('urn:example:complies'('urn:example:bob2814', true)). +answer('urn:example:complies'('urn:example:bob2815', true)). +answer('urn:example:complies'('urn:example:bob2816', true)). +answer('urn:example:complies'('urn:example:bob2817', true)). +answer('urn:example:complies'('urn:example:bob2818', true)). +answer('urn:example:complies'('urn:example:bob2819', true)). +answer('urn:example:complies'('urn:example:bob2820', true)). +answer('urn:example:complies'('urn:example:bob2821', true)). +answer('urn:example:complies'('urn:example:bob2822', true)). +answer('urn:example:complies'('urn:example:bob2823', true)). +answer('urn:example:complies'('urn:example:bob2824', true)). +answer('urn:example:complies'('urn:example:bob2825', true)). +answer('urn:example:complies'('urn:example:bob2826', true)). +answer('urn:example:complies'('urn:example:bob2827', true)). +answer('urn:example:complies'('urn:example:bob2828', true)). +answer('urn:example:complies'('urn:example:bob2829', true)). +answer('urn:example:complies'('urn:example:bob2830', true)). +answer('urn:example:complies'('urn:example:bob2831', true)). +answer('urn:example:complies'('urn:example:bob2832', true)). +answer('urn:example:complies'('urn:example:bob2833', true)). +answer('urn:example:complies'('urn:example:bob2834', true)). +answer('urn:example:complies'('urn:example:bob2835', true)). +answer('urn:example:complies'('urn:example:bob2836', true)). +answer('urn:example:complies'('urn:example:bob2837', true)). +answer('urn:example:complies'('urn:example:bob2838', true)). +answer('urn:example:complies'('urn:example:bob2839', true)). +answer('urn:example:complies'('urn:example:bob2840', true)). +answer('urn:example:complies'('urn:example:bob2841', true)). +answer('urn:example:complies'('urn:example:bob2842', true)). +answer('urn:example:complies'('urn:example:bob2843', true)). +answer('urn:example:complies'('urn:example:bob2844', true)). +answer('urn:example:complies'('urn:example:bob2845', true)). +answer('urn:example:complies'('urn:example:bob2846', true)). +answer('urn:example:complies'('urn:example:bob2847', true)). +answer('urn:example:complies'('urn:example:bob2848', true)). +answer('urn:example:complies'('urn:example:bob2849', true)). +answer('urn:example:complies'('urn:example:bob2850', true)). +answer('urn:example:complies'('urn:example:bob2851', true)). +answer('urn:example:complies'('urn:example:bob2852', true)). +answer('urn:example:complies'('urn:example:bob2853', true)). +answer('urn:example:complies'('urn:example:bob2854', true)). +answer('urn:example:complies'('urn:example:bob2855', true)). +answer('urn:example:complies'('urn:example:bob2856', true)). +answer('urn:example:complies'('urn:example:bob2857', true)). +answer('urn:example:complies'('urn:example:bob2858', true)). +answer('urn:example:complies'('urn:example:bob2859', true)). +answer('urn:example:complies'('urn:example:bob2860', true)). +answer('urn:example:complies'('urn:example:bob2861', true)). +answer('urn:example:complies'('urn:example:bob2862', true)). +answer('urn:example:complies'('urn:example:bob2863', true)). +answer('urn:example:complies'('urn:example:bob2864', true)). +answer('urn:example:complies'('urn:example:bob2865', true)). +answer('urn:example:complies'('urn:example:bob2866', true)). +answer('urn:example:complies'('urn:example:bob2867', true)). +answer('urn:example:complies'('urn:example:bob2868', true)). +answer('urn:example:complies'('urn:example:bob2869', true)). +answer('urn:example:complies'('urn:example:bob2870', true)). +answer('urn:example:complies'('urn:example:bob2871', true)). +answer('urn:example:complies'('urn:example:bob2872', true)). +answer('urn:example:complies'('urn:example:bob2873', true)). +answer('urn:example:complies'('urn:example:bob2874', true)). +answer('urn:example:complies'('urn:example:bob2875', true)). +answer('urn:example:complies'('urn:example:bob2876', true)). +answer('urn:example:complies'('urn:example:bob2877', true)). +answer('urn:example:complies'('urn:example:bob2878', true)). +answer('urn:example:complies'('urn:example:bob2879', true)). +answer('urn:example:complies'('urn:example:bob2880', true)). +answer('urn:example:complies'('urn:example:bob2881', true)). +answer('urn:example:complies'('urn:example:bob2882', true)). +answer('urn:example:complies'('urn:example:bob2883', true)). +answer('urn:example:complies'('urn:example:bob2884', true)). +answer('urn:example:complies'('urn:example:bob2885', true)). +answer('urn:example:complies'('urn:example:bob2886', true)). +answer('urn:example:complies'('urn:example:bob2887', true)). +answer('urn:example:complies'('urn:example:bob2888', true)). +answer('urn:example:complies'('urn:example:bob2889', true)). +answer('urn:example:complies'('urn:example:bob2890', true)). +answer('urn:example:complies'('urn:example:bob2891', true)). +answer('urn:example:complies'('urn:example:bob2892', true)). +answer('urn:example:complies'('urn:example:bob2893', true)). +answer('urn:example:complies'('urn:example:bob2894', true)). +answer('urn:example:complies'('urn:example:bob2895', true)). +answer('urn:example:complies'('urn:example:bob2896', true)). +answer('urn:example:complies'('urn:example:bob2897', true)). +answer('urn:example:complies'('urn:example:bob2898', true)). +answer('urn:example:complies'('urn:example:bob2899', true)). +answer('urn:example:complies'('urn:example:bob2900', true)). +answer('urn:example:complies'('urn:example:bob2901', true)). +answer('urn:example:complies'('urn:example:bob2902', true)). +answer('urn:example:complies'('urn:example:bob2903', true)). +answer('urn:example:complies'('urn:example:bob2904', true)). +answer('urn:example:complies'('urn:example:bob2905', true)). +answer('urn:example:complies'('urn:example:bob2906', true)). +answer('urn:example:complies'('urn:example:bob2907', true)). +answer('urn:example:complies'('urn:example:bob2908', true)). +answer('urn:example:complies'('urn:example:bob2909', true)). +answer('urn:example:complies'('urn:example:bob2910', true)). +answer('urn:example:complies'('urn:example:bob2911', true)). +answer('urn:example:complies'('urn:example:bob2912', true)). +answer('urn:example:complies'('urn:example:bob2913', true)). +answer('urn:example:complies'('urn:example:bob2914', true)). +answer('urn:example:complies'('urn:example:bob2915', true)). +answer('urn:example:complies'('urn:example:bob2916', true)). +answer('urn:example:complies'('urn:example:bob2917', true)). +answer('urn:example:complies'('urn:example:bob2918', true)). +answer('urn:example:complies'('urn:example:bob2919', true)). +answer('urn:example:complies'('urn:example:bob2920', true)). +answer('urn:example:complies'('urn:example:bob2921', true)). +answer('urn:example:complies'('urn:example:bob2922', true)). +answer('urn:example:complies'('urn:example:bob2923', true)). +answer('urn:example:complies'('urn:example:bob2924', true)). +answer('urn:example:complies'('urn:example:bob2925', true)). +answer('urn:example:complies'('urn:example:bob2926', true)). +answer('urn:example:complies'('urn:example:bob2927', true)). +answer('urn:example:complies'('urn:example:bob2928', true)). +answer('urn:example:complies'('urn:example:bob2929', true)). +answer('urn:example:complies'('urn:example:bob2930', true)). +answer('urn:example:complies'('urn:example:bob2931', true)). +answer('urn:example:complies'('urn:example:bob2932', true)). +answer('urn:example:complies'('urn:example:bob2933', true)). +answer('urn:example:complies'('urn:example:bob2934', true)). +answer('urn:example:complies'('urn:example:bob2935', true)). +answer('urn:example:complies'('urn:example:bob2936', true)). +answer('urn:example:complies'('urn:example:bob2937', true)). +answer('urn:example:complies'('urn:example:bob2938', true)). +answer('urn:example:complies'('urn:example:bob2939', true)). +answer('urn:example:complies'('urn:example:bob2940', true)). +answer('urn:example:complies'('urn:example:bob2941', true)). +answer('urn:example:complies'('urn:example:bob2942', true)). +answer('urn:example:complies'('urn:example:bob2943', true)). +answer('urn:example:complies'('urn:example:bob2944', true)). +answer('urn:example:complies'('urn:example:bob2945', true)). +answer('urn:example:complies'('urn:example:bob2946', true)). +answer('urn:example:complies'('urn:example:bob2947', true)). +answer('urn:example:complies'('urn:example:bob2948', true)). +answer('urn:example:complies'('urn:example:bob2949', true)). +answer('urn:example:complies'('urn:example:bob2950', true)). +answer('urn:example:complies'('urn:example:bob2951', true)). +answer('urn:example:complies'('urn:example:bob2952', true)). +answer('urn:example:complies'('urn:example:bob2953', true)). +answer('urn:example:complies'('urn:example:bob2954', true)). +answer('urn:example:complies'('urn:example:bob2955', true)). +answer('urn:example:complies'('urn:example:bob2956', true)). +answer('urn:example:complies'('urn:example:bob2957', true)). +answer('urn:example:complies'('urn:example:bob2958', true)). +answer('urn:example:complies'('urn:example:bob2959', true)). +answer('urn:example:complies'('urn:example:bob2960', true)). +answer('urn:example:complies'('urn:example:bob2961', true)). +answer('urn:example:complies'('urn:example:bob2962', true)). +answer('urn:example:complies'('urn:example:bob2963', true)). +answer('urn:example:complies'('urn:example:bob2964', true)). +answer('urn:example:complies'('urn:example:bob2965', true)). +answer('urn:example:complies'('urn:example:bob2966', true)). +answer('urn:example:complies'('urn:example:bob2967', true)). +answer('urn:example:complies'('urn:example:bob2968', true)). +answer('urn:example:complies'('urn:example:bob2969', true)). +answer('urn:example:complies'('urn:example:bob2970', true)). +answer('urn:example:complies'('urn:example:bob2971', true)). +answer('urn:example:complies'('urn:example:bob2972', true)). +answer('urn:example:complies'('urn:example:bob2973', true)). +answer('urn:example:complies'('urn:example:bob2974', true)). +answer('urn:example:complies'('urn:example:bob2975', true)). +answer('urn:example:complies'('urn:example:bob2976', true)). +answer('urn:example:complies'('urn:example:bob2977', true)). +answer('urn:example:complies'('urn:example:bob2978', true)). +answer('urn:example:complies'('urn:example:bob2979', true)). +answer('urn:example:complies'('urn:example:bob2980', true)). +answer('urn:example:complies'('urn:example:bob2981', true)). +answer('urn:example:complies'('urn:example:bob2982', true)). +answer('urn:example:complies'('urn:example:bob2983', true)). +answer('urn:example:complies'('urn:example:bob2984', true)). +answer('urn:example:complies'('urn:example:bob2985', true)). +answer('urn:example:complies'('urn:example:bob2986', true)). +answer('urn:example:complies'('urn:example:bob2987', true)). +answer('urn:example:complies'('urn:example:bob2988', true)). +answer('urn:example:complies'('urn:example:bob2989', true)). +answer('urn:example:complies'('urn:example:bob2990', true)). +answer('urn:example:complies'('urn:example:bob2991', true)). +answer('urn:example:complies'('urn:example:bob2992', true)). +answer('urn:example:complies'('urn:example:bob2993', true)). +answer('urn:example:complies'('urn:example:bob2994', true)). +answer('urn:example:complies'('urn:example:bob2995', true)). +answer('urn:example:complies'('urn:example:bob2996', true)). +answer('urn:example:complies'('urn:example:bob2997', true)). +answer('urn:example:complies'('urn:example:bob2998', true)). +answer('urn:example:complies'('urn:example:bob2999', true)). +answer('urn:example:complies'('urn:example:bob3000', true)). +answer('urn:example:complies'('urn:example:bob3001', true)). +answer('urn:example:complies'('urn:example:bob3002', true)). +answer('urn:example:complies'('urn:example:bob3003', true)). +answer('urn:example:complies'('urn:example:bob3004', true)). +answer('urn:example:complies'('urn:example:bob3005', true)). +answer('urn:example:complies'('urn:example:bob3006', true)). +answer('urn:example:complies'('urn:example:bob3007', true)). +answer('urn:example:complies'('urn:example:bob3008', true)). +answer('urn:example:complies'('urn:example:bob3009', true)). +answer('urn:example:complies'('urn:example:bob3010', true)). +answer('urn:example:complies'('urn:example:bob3011', true)). +answer('urn:example:complies'('urn:example:bob3012', true)). +answer('urn:example:complies'('urn:example:bob3013', true)). +answer('urn:example:complies'('urn:example:bob3014', true)). +answer('urn:example:complies'('urn:example:bob3015', true)). +answer('urn:example:complies'('urn:example:bob3016', true)). +answer('urn:example:complies'('urn:example:bob3017', true)). +answer('urn:example:complies'('urn:example:bob3018', true)). +answer('urn:example:complies'('urn:example:bob3019', true)). +answer('urn:example:complies'('urn:example:bob3020', true)). +answer('urn:example:complies'('urn:example:bob3021', true)). +answer('urn:example:complies'('urn:example:bob3022', true)). +answer('urn:example:complies'('urn:example:bob3023', true)). +answer('urn:example:complies'('urn:example:bob3024', true)). +answer('urn:example:complies'('urn:example:bob3025', true)). +answer('urn:example:complies'('urn:example:bob3026', true)). +answer('urn:example:complies'('urn:example:bob3027', true)). +answer('urn:example:complies'('urn:example:bob3028', true)). +answer('urn:example:complies'('urn:example:bob3029', true)). +answer('urn:example:complies'('urn:example:bob3030', true)). +answer('urn:example:complies'('urn:example:bob3031', true)). +answer('urn:example:complies'('urn:example:bob3032', true)). +answer('urn:example:complies'('urn:example:bob3033', true)). +answer('urn:example:complies'('urn:example:bob3034', true)). +answer('urn:example:complies'('urn:example:bob3035', true)). +answer('urn:example:complies'('urn:example:bob3036', true)). +answer('urn:example:complies'('urn:example:bob3037', true)). +answer('urn:example:complies'('urn:example:bob3038', true)). +answer('urn:example:complies'('urn:example:bob3039', true)). +answer('urn:example:complies'('urn:example:bob3040', true)). +answer('urn:example:complies'('urn:example:bob3041', true)). +answer('urn:example:complies'('urn:example:bob3042', true)). +answer('urn:example:complies'('urn:example:bob3043', true)). +answer('urn:example:complies'('urn:example:bob3044', true)). +answer('urn:example:complies'('urn:example:bob3045', true)). +answer('urn:example:complies'('urn:example:bob3046', true)). +answer('urn:example:complies'('urn:example:bob3047', true)). +answer('urn:example:complies'('urn:example:bob3048', true)). +answer('urn:example:complies'('urn:example:bob3049', true)). +answer('urn:example:complies'('urn:example:bob3050', true)). +answer('urn:example:complies'('urn:example:bob3051', true)). +answer('urn:example:complies'('urn:example:bob3052', true)). +answer('urn:example:complies'('urn:example:bob3053', true)). +answer('urn:example:complies'('urn:example:bob3054', true)). +answer('urn:example:complies'('urn:example:bob3055', true)). +answer('urn:example:complies'('urn:example:bob3056', true)). +answer('urn:example:complies'('urn:example:bob3057', true)). +answer('urn:example:complies'('urn:example:bob3058', true)). +answer('urn:example:complies'('urn:example:bob3059', true)). +answer('urn:example:complies'('urn:example:bob3060', true)). +answer('urn:example:complies'('urn:example:bob3061', true)). +answer('urn:example:complies'('urn:example:bob3062', true)). +answer('urn:example:complies'('urn:example:bob3063', true)). +answer('urn:example:complies'('urn:example:bob3064', true)). +answer('urn:example:complies'('urn:example:bob3065', true)). +answer('urn:example:complies'('urn:example:bob3066', true)). +answer('urn:example:complies'('urn:example:bob3067', true)). +answer('urn:example:complies'('urn:example:bob3068', true)). +answer('urn:example:complies'('urn:example:bob3069', true)). +answer('urn:example:complies'('urn:example:bob3070', true)). +answer('urn:example:complies'('urn:example:bob3071', true)). +answer('urn:example:complies'('urn:example:bob3072', true)). +answer('urn:example:complies'('urn:example:bob3073', true)). +answer('urn:example:complies'('urn:example:bob3074', true)). +answer('urn:example:complies'('urn:example:bob3075', true)). +answer('urn:example:complies'('urn:example:bob3076', true)). +answer('urn:example:complies'('urn:example:bob3077', true)). +answer('urn:example:complies'('urn:example:bob3078', true)). +answer('urn:example:complies'('urn:example:bob3079', true)). +answer('urn:example:complies'('urn:example:bob3080', true)). +answer('urn:example:complies'('urn:example:bob3081', true)). +answer('urn:example:complies'('urn:example:bob3082', true)). +answer('urn:example:complies'('urn:example:bob3083', true)). +answer('urn:example:complies'('urn:example:bob3084', true)). +answer('urn:example:complies'('urn:example:bob3085', true)). +answer('urn:example:complies'('urn:example:bob3086', true)). +answer('urn:example:complies'('urn:example:bob3087', true)). +answer('urn:example:complies'('urn:example:bob3088', true)). +answer('urn:example:complies'('urn:example:bob3089', true)). +answer('urn:example:complies'('urn:example:bob3090', true)). +answer('urn:example:complies'('urn:example:bob3091', true)). +answer('urn:example:complies'('urn:example:bob3092', true)). +answer('urn:example:complies'('urn:example:bob3093', true)). +answer('urn:example:complies'('urn:example:bob3094', true)). +answer('urn:example:complies'('urn:example:bob3095', true)). +answer('urn:example:complies'('urn:example:bob3096', true)). +answer('urn:example:complies'('urn:example:bob3097', true)). +answer('urn:example:complies'('urn:example:bob3098', true)). +answer('urn:example:complies'('urn:example:bob3099', true)). +answer('urn:example:complies'('urn:example:bob3100', true)). +answer('urn:example:complies'('urn:example:bob3101', true)). +answer('urn:example:complies'('urn:example:bob3102', true)). +answer('urn:example:complies'('urn:example:bob3103', true)). +answer('urn:example:complies'('urn:example:bob3104', true)). +answer('urn:example:complies'('urn:example:bob3105', true)). +answer('urn:example:complies'('urn:example:bob3106', true)). +answer('urn:example:complies'('urn:example:bob3107', true)). +answer('urn:example:complies'('urn:example:bob3108', true)). +answer('urn:example:complies'('urn:example:bob3109', true)). +answer('urn:example:complies'('urn:example:bob3110', true)). +answer('urn:example:complies'('urn:example:bob3111', true)). +answer('urn:example:complies'('urn:example:bob3112', true)). +answer('urn:example:complies'('urn:example:bob3113', true)). +answer('urn:example:complies'('urn:example:bob3114', true)). +answer('urn:example:complies'('urn:example:bob3115', true)). +answer('urn:example:complies'('urn:example:bob3116', true)). +answer('urn:example:complies'('urn:example:bob3117', true)). +answer('urn:example:complies'('urn:example:bob3118', true)). +answer('urn:example:complies'('urn:example:bob3119', true)). +answer('urn:example:complies'('urn:example:bob3120', true)). +answer('urn:example:complies'('urn:example:bob3121', true)). +answer('urn:example:complies'('urn:example:bob3122', true)). +answer('urn:example:complies'('urn:example:bob3123', true)). +answer('urn:example:complies'('urn:example:bob3124', true)). +answer('urn:example:complies'('urn:example:bob3125', true)). +answer('urn:example:complies'('urn:example:bob3126', true)). +answer('urn:example:complies'('urn:example:bob3127', true)). +answer('urn:example:complies'('urn:example:bob3128', true)). +answer('urn:example:complies'('urn:example:bob3129', true)). +answer('urn:example:complies'('urn:example:bob3130', true)). +answer('urn:example:complies'('urn:example:bob3131', true)). +answer('urn:example:complies'('urn:example:bob3132', true)). +answer('urn:example:complies'('urn:example:bob3133', true)). +answer('urn:example:complies'('urn:example:bob3134', true)). +answer('urn:example:complies'('urn:example:bob3135', true)). +answer('urn:example:complies'('urn:example:bob3136', true)). +answer('urn:example:complies'('urn:example:bob3137', true)). +answer('urn:example:complies'('urn:example:bob3138', true)). +answer('urn:example:complies'('urn:example:bob3139', true)). +answer('urn:example:complies'('urn:example:bob3140', true)). +answer('urn:example:complies'('urn:example:bob3141', true)). +answer('urn:example:complies'('urn:example:bob3142', true)). +answer('urn:example:complies'('urn:example:bob3143', true)). +answer('urn:example:complies'('urn:example:bob3144', true)). +answer('urn:example:complies'('urn:example:bob3145', true)). +answer('urn:example:complies'('urn:example:bob3146', true)). +answer('urn:example:complies'('urn:example:bob3147', true)). +answer('urn:example:complies'('urn:example:bob3148', true)). +answer('urn:example:complies'('urn:example:bob3149', true)). +answer('urn:example:complies'('urn:example:bob3150', true)). +answer('urn:example:complies'('urn:example:bob3151', true)). +answer('urn:example:complies'('urn:example:bob3152', true)). +answer('urn:example:complies'('urn:example:bob3153', true)). +answer('urn:example:complies'('urn:example:bob3154', true)). +answer('urn:example:complies'('urn:example:bob3155', true)). +answer('urn:example:complies'('urn:example:bob3156', true)). +answer('urn:example:complies'('urn:example:bob3157', true)). +answer('urn:example:complies'('urn:example:bob3158', true)). +answer('urn:example:complies'('urn:example:bob3159', true)). +answer('urn:example:complies'('urn:example:bob3160', true)). +answer('urn:example:complies'('urn:example:bob3161', true)). +answer('urn:example:complies'('urn:example:bob3162', true)). +answer('urn:example:complies'('urn:example:bob3163', true)). +answer('urn:example:complies'('urn:example:bob3164', true)). +answer('urn:example:complies'('urn:example:bob3165', true)). +answer('urn:example:complies'('urn:example:bob3166', true)). +answer('urn:example:complies'('urn:example:bob3167', true)). +answer('urn:example:complies'('urn:example:bob3168', true)). +answer('urn:example:complies'('urn:example:bob3169', true)). +answer('urn:example:complies'('urn:example:bob3170', true)). +answer('urn:example:complies'('urn:example:bob3171', true)). +answer('urn:example:complies'('urn:example:bob3172', true)). +answer('urn:example:complies'('urn:example:bob3173', true)). +answer('urn:example:complies'('urn:example:bob3174', true)). +answer('urn:example:complies'('urn:example:bob3175', true)). +answer('urn:example:complies'('urn:example:bob3176', true)). +answer('urn:example:complies'('urn:example:bob3177', true)). +answer('urn:example:complies'('urn:example:bob3178', true)). +answer('urn:example:complies'('urn:example:bob3179', true)). +answer('urn:example:complies'('urn:example:bob3180', true)). +answer('urn:example:complies'('urn:example:bob3181', true)). +answer('urn:example:complies'('urn:example:bob3182', true)). +answer('urn:example:complies'('urn:example:bob3183', true)). +answer('urn:example:complies'('urn:example:bob3184', true)). +answer('urn:example:complies'('urn:example:bob3185', true)). +answer('urn:example:complies'('urn:example:bob3186', true)). +answer('urn:example:complies'('urn:example:bob3187', true)). +answer('urn:example:complies'('urn:example:bob3188', true)). +answer('urn:example:complies'('urn:example:bob3189', true)). +answer('urn:example:complies'('urn:example:bob3190', true)). +answer('urn:example:complies'('urn:example:bob3191', true)). +answer('urn:example:complies'('urn:example:bob3192', true)). +answer('urn:example:complies'('urn:example:bob3193', true)). +answer('urn:example:complies'('urn:example:bob3194', true)). +answer('urn:example:complies'('urn:example:bob3195', true)). +answer('urn:example:complies'('urn:example:bob3196', true)). +answer('urn:example:complies'('urn:example:bob3197', true)). +answer('urn:example:complies'('urn:example:bob3198', true)). +answer('urn:example:complies'('urn:example:bob3199', true)). +answer('urn:example:complies'('urn:example:bob3200', true)). +answer('urn:example:complies'('urn:example:bob3201', true)). +answer('urn:example:complies'('urn:example:bob3202', true)). +answer('urn:example:complies'('urn:example:bob3203', true)). +answer('urn:example:complies'('urn:example:bob3204', true)). +answer('urn:example:complies'('urn:example:bob3205', true)). +answer('urn:example:complies'('urn:example:bob3206', true)). +answer('urn:example:complies'('urn:example:bob3207', true)). +answer('urn:example:complies'('urn:example:bob3208', true)). +answer('urn:example:complies'('urn:example:bob3209', true)). +answer('urn:example:complies'('urn:example:bob3210', true)). +answer('urn:example:complies'('urn:example:bob3211', true)). +answer('urn:example:complies'('urn:example:bob3212', true)). +answer('urn:example:complies'('urn:example:bob3213', true)). +answer('urn:example:complies'('urn:example:bob3214', true)). +answer('urn:example:complies'('urn:example:bob3215', true)). +answer('urn:example:complies'('urn:example:bob3216', true)). +answer('urn:example:complies'('urn:example:bob3217', true)). +answer('urn:example:complies'('urn:example:bob3218', true)). +answer('urn:example:complies'('urn:example:bob3219', true)). +answer('urn:example:complies'('urn:example:bob3220', true)). +answer('urn:example:complies'('urn:example:bob3221', true)). +answer('urn:example:complies'('urn:example:bob3222', true)). +answer('urn:example:complies'('urn:example:bob3223', true)). +answer('urn:example:complies'('urn:example:bob3224', true)). +answer('urn:example:complies'('urn:example:bob3225', true)). +answer('urn:example:complies'('urn:example:bob3226', true)). +answer('urn:example:complies'('urn:example:bob3227', true)). +answer('urn:example:complies'('urn:example:bob3228', true)). +answer('urn:example:complies'('urn:example:bob3229', true)). +answer('urn:example:complies'('urn:example:bob3230', true)). +answer('urn:example:complies'('urn:example:bob3231', true)). +answer('urn:example:complies'('urn:example:bob3232', true)). +answer('urn:example:complies'('urn:example:bob3233', true)). +answer('urn:example:complies'('urn:example:bob3234', true)). +answer('urn:example:complies'('urn:example:bob3235', true)). +answer('urn:example:complies'('urn:example:bob3236', true)). +answer('urn:example:complies'('urn:example:bob3237', true)). +answer('urn:example:complies'('urn:example:bob3238', true)). +answer('urn:example:complies'('urn:example:bob3239', true)). +answer('urn:example:complies'('urn:example:bob3240', true)). +answer('urn:example:complies'('urn:example:bob3241', true)). +answer('urn:example:complies'('urn:example:bob3242', true)). +answer('urn:example:complies'('urn:example:bob3243', true)). +answer('urn:example:complies'('urn:example:bob3244', true)). +answer('urn:example:complies'('urn:example:bob3245', true)). +answer('urn:example:complies'('urn:example:bob3246', true)). +answer('urn:example:complies'('urn:example:bob3247', true)). +answer('urn:example:complies'('urn:example:bob3248', true)). +answer('urn:example:complies'('urn:example:bob3249', true)). +answer('urn:example:complies'('urn:example:bob3250', true)). +answer('urn:example:complies'('urn:example:bob3251', true)). +answer('urn:example:complies'('urn:example:bob3252', true)). +answer('urn:example:complies'('urn:example:bob3253', true)). +answer('urn:example:complies'('urn:example:bob3254', true)). +answer('urn:example:complies'('urn:example:bob3255', true)). +answer('urn:example:complies'('urn:example:bob3256', true)). +answer('urn:example:complies'('urn:example:bob3257', true)). +answer('urn:example:complies'('urn:example:bob3258', true)). +answer('urn:example:complies'('urn:example:bob3259', true)). +answer('urn:example:complies'('urn:example:bob3260', true)). +answer('urn:example:complies'('urn:example:bob3261', true)). +answer('urn:example:complies'('urn:example:bob3262', true)). +answer('urn:example:complies'('urn:example:bob3263', true)). +answer('urn:example:complies'('urn:example:bob3264', true)). +answer('urn:example:complies'('urn:example:bob3265', true)). +answer('urn:example:complies'('urn:example:bob3266', true)). +answer('urn:example:complies'('urn:example:bob3267', true)). +answer('urn:example:complies'('urn:example:bob3268', true)). +answer('urn:example:complies'('urn:example:bob3269', true)). +answer('urn:example:complies'('urn:example:bob3270', true)). +answer('urn:example:complies'('urn:example:bob3271', true)). +answer('urn:example:complies'('urn:example:bob3272', true)). +answer('urn:example:complies'('urn:example:bob3273', true)). +answer('urn:example:complies'('urn:example:bob3274', true)). +answer('urn:example:complies'('urn:example:bob3275', true)). +answer('urn:example:complies'('urn:example:bob3276', true)). +answer('urn:example:complies'('urn:example:bob3277', true)). +answer('urn:example:complies'('urn:example:bob3278', true)). +answer('urn:example:complies'('urn:example:bob3279', true)). +answer('urn:example:complies'('urn:example:bob3280', true)). +answer('urn:example:complies'('urn:example:bob3281', true)). +answer('urn:example:complies'('urn:example:bob3282', true)). +answer('urn:example:complies'('urn:example:bob3283', true)). +answer('urn:example:complies'('urn:example:bob3284', true)). +answer('urn:example:complies'('urn:example:bob3285', true)). +answer('urn:example:complies'('urn:example:bob3286', true)). +answer('urn:example:complies'('urn:example:bob3287', true)). +answer('urn:example:complies'('urn:example:bob3288', true)). +answer('urn:example:complies'('urn:example:bob3289', true)). +answer('urn:example:complies'('urn:example:bob3290', true)). +answer('urn:example:complies'('urn:example:bob3291', true)). +answer('urn:example:complies'('urn:example:bob3292', true)). +answer('urn:example:complies'('urn:example:bob3293', true)). +answer('urn:example:complies'('urn:example:bob3294', true)). +answer('urn:example:complies'('urn:example:bob3295', true)). +answer('urn:example:complies'('urn:example:bob3296', true)). +answer('urn:example:complies'('urn:example:bob3297', true)). +answer('urn:example:complies'('urn:example:bob3298', true)). +answer('urn:example:complies'('urn:example:bob3299', true)). +answer('urn:example:complies'('urn:example:bob3300', true)). +answer('urn:example:complies'('urn:example:bob3301', true)). +answer('urn:example:complies'('urn:example:bob3302', true)). +answer('urn:example:complies'('urn:example:bob3303', true)). +answer('urn:example:complies'('urn:example:bob3304', true)). +answer('urn:example:complies'('urn:example:bob3305', true)). +answer('urn:example:complies'('urn:example:bob3306', true)). +answer('urn:example:complies'('urn:example:bob3307', true)). +answer('urn:example:complies'('urn:example:bob3308', true)). +answer('urn:example:complies'('urn:example:bob3309', true)). +answer('urn:example:complies'('urn:example:bob3310', true)). +answer('urn:example:complies'('urn:example:bob3311', true)). +answer('urn:example:complies'('urn:example:bob3312', true)). +answer('urn:example:complies'('urn:example:bob3313', true)). +answer('urn:example:complies'('urn:example:bob3314', true)). +answer('urn:example:complies'('urn:example:bob3315', true)). +answer('urn:example:complies'('urn:example:bob3316', true)). +answer('urn:example:complies'('urn:example:bob3317', true)). +answer('urn:example:complies'('urn:example:bob3318', true)). +answer('urn:example:complies'('urn:example:bob3319', true)). +answer('urn:example:complies'('urn:example:bob3320', true)). +answer('urn:example:complies'('urn:example:bob3321', true)). +answer('urn:example:complies'('urn:example:bob3322', true)). +answer('urn:example:complies'('urn:example:bob3323', true)). +answer('urn:example:complies'('urn:example:bob3324', true)). +answer('urn:example:complies'('urn:example:bob3325', true)). +answer('urn:example:complies'('urn:example:bob3326', true)). +answer('urn:example:complies'('urn:example:bob3327', true)). +answer('urn:example:complies'('urn:example:bob3328', true)). +answer('urn:example:complies'('urn:example:bob3329', true)). +answer('urn:example:complies'('urn:example:bob3330', true)). +answer('urn:example:complies'('urn:example:bob3331', true)). +answer('urn:example:complies'('urn:example:bob3332', true)). +answer('urn:example:complies'('urn:example:bob3333', true)). +answer('urn:example:complies'('urn:example:bob3334', true)). +answer('urn:example:complies'('urn:example:bob3335', true)). +answer('urn:example:complies'('urn:example:bob3336', true)). +answer('urn:example:complies'('urn:example:bob3337', true)). +answer('urn:example:complies'('urn:example:bob3338', true)). +answer('urn:example:complies'('urn:example:bob3339', true)). +answer('urn:example:complies'('urn:example:bob3340', true)). +answer('urn:example:complies'('urn:example:bob3341', true)). +answer('urn:example:complies'('urn:example:bob3342', true)). +answer('urn:example:complies'('urn:example:bob3343', true)). +answer('urn:example:complies'('urn:example:bob3344', true)). +answer('urn:example:complies'('urn:example:bob3345', true)). +answer('urn:example:complies'('urn:example:bob3346', true)). +answer('urn:example:complies'('urn:example:bob3347', true)). +answer('urn:example:complies'('urn:example:bob3348', true)). +answer('urn:example:complies'('urn:example:bob3349', true)). +answer('urn:example:complies'('urn:example:bob3350', true)). +answer('urn:example:complies'('urn:example:bob3351', true)). +answer('urn:example:complies'('urn:example:bob3352', true)). +answer('urn:example:complies'('urn:example:bob3353', true)). +answer('urn:example:complies'('urn:example:bob3354', true)). +answer('urn:example:complies'('urn:example:bob3355', true)). +answer('urn:example:complies'('urn:example:bob3356', true)). +answer('urn:example:complies'('urn:example:bob3357', true)). +answer('urn:example:complies'('urn:example:bob3358', true)). +answer('urn:example:complies'('urn:example:bob3359', true)). +answer('urn:example:complies'('urn:example:bob3360', true)). +answer('urn:example:complies'('urn:example:bob3361', true)). +answer('urn:example:complies'('urn:example:bob3362', true)). +answer('urn:example:complies'('urn:example:bob3363', true)). +answer('urn:example:complies'('urn:example:bob3364', true)). +answer('urn:example:complies'('urn:example:bob3365', true)). +answer('urn:example:complies'('urn:example:bob3366', true)). +answer('urn:example:complies'('urn:example:bob3367', true)). +answer('urn:example:complies'('urn:example:bob3368', true)). +answer('urn:example:complies'('urn:example:bob3369', true)). +answer('urn:example:complies'('urn:example:bob3370', true)). +answer('urn:example:complies'('urn:example:bob3371', true)). +answer('urn:example:complies'('urn:example:bob3372', true)). +answer('urn:example:complies'('urn:example:bob3373', true)). +answer('urn:example:complies'('urn:example:bob3374', true)). +answer('urn:example:complies'('urn:example:bob3375', true)). +answer('urn:example:complies'('urn:example:bob3376', true)). +answer('urn:example:complies'('urn:example:bob3377', true)). +answer('urn:example:complies'('urn:example:bob3378', true)). +answer('urn:example:complies'('urn:example:bob3379', true)). +answer('urn:example:complies'('urn:example:bob3380', true)). +answer('urn:example:complies'('urn:example:bob3381', true)). +answer('urn:example:complies'('urn:example:bob3382', true)). +answer('urn:example:complies'('urn:example:bob3383', true)). +answer('urn:example:complies'('urn:example:bob3384', true)). +answer('urn:example:complies'('urn:example:bob3385', true)). +answer('urn:example:complies'('urn:example:bob3386', true)). +answer('urn:example:complies'('urn:example:bob3387', true)). +answer('urn:example:complies'('urn:example:bob3388', true)). +answer('urn:example:complies'('urn:example:bob3389', true)). +answer('urn:example:complies'('urn:example:bob3390', true)). +answer('urn:example:complies'('urn:example:bob3391', true)). +answer('urn:example:complies'('urn:example:bob3392', true)). +answer('urn:example:complies'('urn:example:bob3393', true)). +answer('urn:example:complies'('urn:example:bob3394', true)). +answer('urn:example:complies'('urn:example:bob3395', true)). +answer('urn:example:complies'('urn:example:bob3396', true)). +answer('urn:example:complies'('urn:example:bob3397', true)). +answer('urn:example:complies'('urn:example:bob3398', true)). +answer('urn:example:complies'('urn:example:bob3399', true)). +answer('urn:example:complies'('urn:example:bob3400', true)). +answer('urn:example:complies'('urn:example:bob3401', true)). +answer('urn:example:complies'('urn:example:bob3402', true)). +answer('urn:example:complies'('urn:example:bob3403', true)). +answer('urn:example:complies'('urn:example:bob3404', true)). +answer('urn:example:complies'('urn:example:bob3405', true)). +answer('urn:example:complies'('urn:example:bob3406', true)). +answer('urn:example:complies'('urn:example:bob3407', true)). +answer('urn:example:complies'('urn:example:bob3408', true)). +answer('urn:example:complies'('urn:example:bob3409', true)). +answer('urn:example:complies'('urn:example:bob3410', true)). +answer('urn:example:complies'('urn:example:bob3411', true)). +answer('urn:example:complies'('urn:example:bob3412', true)). +answer('urn:example:complies'('urn:example:bob3413', true)). +answer('urn:example:complies'('urn:example:bob3414', true)). +answer('urn:example:complies'('urn:example:bob3415', true)). +answer('urn:example:complies'('urn:example:bob3416', true)). +answer('urn:example:complies'('urn:example:bob3417', true)). +answer('urn:example:complies'('urn:example:bob3418', true)). +answer('urn:example:complies'('urn:example:bob3419', true)). +answer('urn:example:complies'('urn:example:bob3420', true)). +answer('urn:example:complies'('urn:example:bob3421', true)). +answer('urn:example:complies'('urn:example:bob3422', true)). +answer('urn:example:complies'('urn:example:bob3423', true)). +answer('urn:example:complies'('urn:example:bob3424', true)). +answer('urn:example:complies'('urn:example:bob3425', true)). +answer('urn:example:complies'('urn:example:bob3426', true)). +answer('urn:example:complies'('urn:example:bob3427', true)). +answer('urn:example:complies'('urn:example:bob3428', true)). +answer('urn:example:complies'('urn:example:bob3429', true)). +answer('urn:example:complies'('urn:example:bob3430', true)). +answer('urn:example:complies'('urn:example:bob3431', true)). +answer('urn:example:complies'('urn:example:bob3432', true)). +answer('urn:example:complies'('urn:example:bob3433', true)). +answer('urn:example:complies'('urn:example:bob3434', true)). +answer('urn:example:complies'('urn:example:bob3435', true)). +answer('urn:example:complies'('urn:example:bob3436', true)). +answer('urn:example:complies'('urn:example:bob3437', true)). +answer('urn:example:complies'('urn:example:bob3438', true)). +answer('urn:example:complies'('urn:example:bob3439', true)). +answer('urn:example:complies'('urn:example:bob3440', true)). +answer('urn:example:complies'('urn:example:bob3441', true)). +answer('urn:example:complies'('urn:example:bob3442', true)). +answer('urn:example:complies'('urn:example:bob3443', true)). +answer('urn:example:complies'('urn:example:bob3444', true)). +answer('urn:example:complies'('urn:example:bob3445', true)). +answer('urn:example:complies'('urn:example:bob3446', true)). +answer('urn:example:complies'('urn:example:bob3447', true)). +answer('urn:example:complies'('urn:example:bob3448', true)). +answer('urn:example:complies'('urn:example:bob3449', true)). +answer('urn:example:complies'('urn:example:bob3450', true)). +answer('urn:example:complies'('urn:example:bob3451', true)). +answer('urn:example:complies'('urn:example:bob3452', true)). +answer('urn:example:complies'('urn:example:bob3453', true)). +answer('urn:example:complies'('urn:example:bob3454', true)). +answer('urn:example:complies'('urn:example:bob3455', true)). +answer('urn:example:complies'('urn:example:bob3456', true)). +answer('urn:example:complies'('urn:example:bob3457', true)). +answer('urn:example:complies'('urn:example:bob3458', true)). +answer('urn:example:complies'('urn:example:bob3459', true)). +answer('urn:example:complies'('urn:example:bob3460', true)). +answer('urn:example:complies'('urn:example:bob3461', true)). +answer('urn:example:complies'('urn:example:bob3462', true)). +answer('urn:example:complies'('urn:example:bob3463', true)). +answer('urn:example:complies'('urn:example:bob3464', true)). +answer('urn:example:complies'('urn:example:bob3465', true)). +answer('urn:example:complies'('urn:example:bob3466', true)). +answer('urn:example:complies'('urn:example:bob3467', true)). +answer('urn:example:complies'('urn:example:bob3468', true)). +answer('urn:example:complies'('urn:example:bob3469', true)). +answer('urn:example:complies'('urn:example:bob3470', true)). +answer('urn:example:complies'('urn:example:bob3471', true)). +answer('urn:example:complies'('urn:example:bob3472', true)). +answer('urn:example:complies'('urn:example:bob3473', true)). +answer('urn:example:complies'('urn:example:bob3474', true)). +answer('urn:example:complies'('urn:example:bob3475', true)). +answer('urn:example:complies'('urn:example:bob3476', true)). +answer('urn:example:complies'('urn:example:bob3477', true)). +answer('urn:example:complies'('urn:example:bob3478', true)). +answer('urn:example:complies'('urn:example:bob3479', true)). +answer('urn:example:complies'('urn:example:bob3480', true)). +answer('urn:example:complies'('urn:example:bob3481', true)). +answer('urn:example:complies'('urn:example:bob3482', true)). +answer('urn:example:complies'('urn:example:bob3483', true)). +answer('urn:example:complies'('urn:example:bob3484', true)). +answer('urn:example:complies'('urn:example:bob3485', true)). +answer('urn:example:complies'('urn:example:bob3486', true)). +answer('urn:example:complies'('urn:example:bob3487', true)). +answer('urn:example:complies'('urn:example:bob3488', true)). +answer('urn:example:complies'('urn:example:bob3489', true)). +answer('urn:example:complies'('urn:example:bob3490', true)). +answer('urn:example:complies'('urn:example:bob3491', true)). +answer('urn:example:complies'('urn:example:bob3492', true)). +answer('urn:example:complies'('urn:example:bob3493', true)). +answer('urn:example:complies'('urn:example:bob3494', true)). +answer('urn:example:complies'('urn:example:bob3495', true)). +answer('urn:example:complies'('urn:example:bob3496', true)). +answer('urn:example:complies'('urn:example:bob3497', true)). +answer('urn:example:complies'('urn:example:bob3498', true)). +answer('urn:example:complies'('urn:example:bob3499', true)). +answer('urn:example:complies'('urn:example:bob3500', true)). +answer('urn:example:complies'('urn:example:bob3501', true)). +answer('urn:example:complies'('urn:example:bob3502', true)). +answer('urn:example:complies'('urn:example:bob3503', true)). +answer('urn:example:complies'('urn:example:bob3504', true)). +answer('urn:example:complies'('urn:example:bob3505', true)). +answer('urn:example:complies'('urn:example:bob3506', true)). +answer('urn:example:complies'('urn:example:bob3507', true)). +answer('urn:example:complies'('urn:example:bob3508', true)). +answer('urn:example:complies'('urn:example:bob3509', true)). +answer('urn:example:complies'('urn:example:bob3510', true)). +answer('urn:example:complies'('urn:example:bob3511', true)). +answer('urn:example:complies'('urn:example:bob3512', true)). +answer('urn:example:complies'('urn:example:bob3513', true)). +answer('urn:example:complies'('urn:example:bob3514', true)). +answer('urn:example:complies'('urn:example:bob3515', true)). +answer('urn:example:complies'('urn:example:bob3516', true)). +answer('urn:example:complies'('urn:example:bob3517', true)). +answer('urn:example:complies'('urn:example:bob3518', true)). +answer('urn:example:complies'('urn:example:bob3519', true)). +answer('urn:example:complies'('urn:example:bob3520', true)). +answer('urn:example:complies'('urn:example:bob3521', true)). +answer('urn:example:complies'('urn:example:bob3522', true)). +answer('urn:example:complies'('urn:example:bob3523', true)). +answer('urn:example:complies'('urn:example:bob3524', true)). +answer('urn:example:complies'('urn:example:bob3525', true)). +answer('urn:example:complies'('urn:example:bob3526', true)). +answer('urn:example:complies'('urn:example:bob3527', true)). +answer('urn:example:complies'('urn:example:bob3528', true)). +answer('urn:example:complies'('urn:example:bob3529', true)). +answer('urn:example:complies'('urn:example:bob3530', true)). +answer('urn:example:complies'('urn:example:bob3531', true)). +answer('urn:example:complies'('urn:example:bob3532', true)). +answer('urn:example:complies'('urn:example:bob3533', true)). +answer('urn:example:complies'('urn:example:bob3534', true)). +answer('urn:example:complies'('urn:example:bob3535', true)). +answer('urn:example:complies'('urn:example:bob3536', true)). +answer('urn:example:complies'('urn:example:bob3537', true)). +answer('urn:example:complies'('urn:example:bob3538', true)). +answer('urn:example:complies'('urn:example:bob3539', true)). +answer('urn:example:complies'('urn:example:bob3540', true)). +answer('urn:example:complies'('urn:example:bob3541', true)). +answer('urn:example:complies'('urn:example:bob3542', true)). +answer('urn:example:complies'('urn:example:bob3543', true)). +answer('urn:example:complies'('urn:example:bob3544', true)). +answer('urn:example:complies'('urn:example:bob3545', true)). +answer('urn:example:complies'('urn:example:bob3546', true)). +answer('urn:example:complies'('urn:example:bob3547', true)). +answer('urn:example:complies'('urn:example:bob3548', true)). +answer('urn:example:complies'('urn:example:bob3549', true)). +answer('urn:example:complies'('urn:example:bob3550', true)). +answer('urn:example:complies'('urn:example:bob3551', true)). +answer('urn:example:complies'('urn:example:bob3552', true)). +answer('urn:example:complies'('urn:example:bob3553', true)). +answer('urn:example:complies'('urn:example:bob3554', true)). +answer('urn:example:complies'('urn:example:bob3555', true)). +answer('urn:example:complies'('urn:example:bob3556', true)). +answer('urn:example:complies'('urn:example:bob3557', true)). +answer('urn:example:complies'('urn:example:bob3558', true)). +answer('urn:example:complies'('urn:example:bob3559', true)). +answer('urn:example:complies'('urn:example:bob3560', true)). +answer('urn:example:complies'('urn:example:bob3561', true)). +answer('urn:example:complies'('urn:example:bob3562', true)). +answer('urn:example:complies'('urn:example:bob3563', true)). +answer('urn:example:complies'('urn:example:bob3564', true)). +answer('urn:example:complies'('urn:example:bob3565', true)). +answer('urn:example:complies'('urn:example:bob3566', true)). +answer('urn:example:complies'('urn:example:bob3567', true)). +answer('urn:example:complies'('urn:example:bob3568', true)). +answer('urn:example:complies'('urn:example:bob3569', true)). +answer('urn:example:complies'('urn:example:bob3570', true)). +answer('urn:example:complies'('urn:example:bob3571', true)). +answer('urn:example:complies'('urn:example:bob3572', true)). +answer('urn:example:complies'('urn:example:bob3573', true)). +answer('urn:example:complies'('urn:example:bob3574', true)). +answer('urn:example:complies'('urn:example:bob3575', true)). +answer('urn:example:complies'('urn:example:bob3576', true)). +answer('urn:example:complies'('urn:example:bob3577', true)). +answer('urn:example:complies'('urn:example:bob3578', true)). +answer('urn:example:complies'('urn:example:bob3579', true)). +answer('urn:example:complies'('urn:example:bob3580', true)). +answer('urn:example:complies'('urn:example:bob3581', true)). +answer('urn:example:complies'('urn:example:bob3582', true)). +answer('urn:example:complies'('urn:example:bob3583', true)). +answer('urn:example:complies'('urn:example:bob3584', true)). +answer('urn:example:complies'('urn:example:bob3585', true)). +answer('urn:example:complies'('urn:example:bob3586', true)). +answer('urn:example:complies'('urn:example:bob3587', true)). +answer('urn:example:complies'('urn:example:bob3588', true)). +answer('urn:example:complies'('urn:example:bob3589', true)). +answer('urn:example:complies'('urn:example:bob3590', true)). +answer('urn:example:complies'('urn:example:bob3591', true)). +answer('urn:example:complies'('urn:example:bob3592', true)). +answer('urn:example:complies'('urn:example:bob3593', true)). +answer('urn:example:complies'('urn:example:bob3594', true)). +answer('urn:example:complies'('urn:example:bob3595', true)). +answer('urn:example:complies'('urn:example:bob3596', true)). +answer('urn:example:complies'('urn:example:bob3597', true)). +answer('urn:example:complies'('urn:example:bob3598', true)). +answer('urn:example:complies'('urn:example:bob3599', true)). +answer('urn:example:complies'('urn:example:bob3600', true)). +answer('urn:example:complies'('urn:example:bob3601', true)). +answer('urn:example:complies'('urn:example:bob3602', true)). +answer('urn:example:complies'('urn:example:bob3603', true)). +answer('urn:example:complies'('urn:example:bob3604', true)). +answer('urn:example:complies'('urn:example:bob3605', true)). +answer('urn:example:complies'('urn:example:bob3606', true)). +answer('urn:example:complies'('urn:example:bob3607', true)). +answer('urn:example:complies'('urn:example:bob3608', true)). +answer('urn:example:complies'('urn:example:bob3609', true)). +answer('urn:example:complies'('urn:example:bob3610', true)). +answer('urn:example:complies'('urn:example:bob3611', true)). +answer('urn:example:complies'('urn:example:bob3612', true)). +answer('urn:example:complies'('urn:example:bob3613', true)). +answer('urn:example:complies'('urn:example:bob3614', true)). +answer('urn:example:complies'('urn:example:bob3615', true)). +answer('urn:example:complies'('urn:example:bob3616', true)). +answer('urn:example:complies'('urn:example:bob3617', true)). +answer('urn:example:complies'('urn:example:bob3618', true)). +answer('urn:example:complies'('urn:example:bob3619', true)). +answer('urn:example:complies'('urn:example:bob3620', true)). +answer('urn:example:complies'('urn:example:bob3621', true)). +answer('urn:example:complies'('urn:example:bob3622', true)). +answer('urn:example:complies'('urn:example:bob3623', true)). +answer('urn:example:complies'('urn:example:bob3624', true)). +answer('urn:example:complies'('urn:example:bob3625', true)). +answer('urn:example:complies'('urn:example:bob3626', true)). +answer('urn:example:complies'('urn:example:bob3627', true)). +answer('urn:example:complies'('urn:example:bob3628', true)). +answer('urn:example:complies'('urn:example:bob3629', true)). +answer('urn:example:complies'('urn:example:bob3630', true)). +answer('urn:example:complies'('urn:example:bob3631', true)). +answer('urn:example:complies'('urn:example:bob3632', true)). +answer('urn:example:complies'('urn:example:bob3633', true)). +answer('urn:example:complies'('urn:example:bob3634', true)). +answer('urn:example:complies'('urn:example:bob3635', true)). +answer('urn:example:complies'('urn:example:bob3636', true)). +answer('urn:example:complies'('urn:example:bob3637', true)). +answer('urn:example:complies'('urn:example:bob3638', true)). +answer('urn:example:complies'('urn:example:bob3639', true)). +answer('urn:example:complies'('urn:example:bob3640', true)). +answer('urn:example:complies'('urn:example:bob3641', true)). +answer('urn:example:complies'('urn:example:bob3642', true)). +answer('urn:example:complies'('urn:example:bob3643', true)). +answer('urn:example:complies'('urn:example:bob3644', true)). +answer('urn:example:complies'('urn:example:bob3645', true)). +answer('urn:example:complies'('urn:example:bob3646', true)). +answer('urn:example:complies'('urn:example:bob3647', true)). +answer('urn:example:complies'('urn:example:bob3648', true)). +answer('urn:example:complies'('urn:example:bob3649', true)). +answer('urn:example:complies'('urn:example:bob3650', true)). +answer('urn:example:complies'('urn:example:bob3651', true)). +answer('urn:example:complies'('urn:example:bob3652', true)). +answer('urn:example:complies'('urn:example:bob3653', true)). +answer('urn:example:complies'('urn:example:bob3654', true)). +answer('urn:example:complies'('urn:example:bob3655', true)). +answer('urn:example:complies'('urn:example:bob3656', true)). +answer('urn:example:complies'('urn:example:bob3657', true)). +answer('urn:example:complies'('urn:example:bob3658', true)). +answer('urn:example:complies'('urn:example:bob3659', true)). +answer('urn:example:complies'('urn:example:bob3660', true)). +answer('urn:example:complies'('urn:example:bob3661', true)). +answer('urn:example:complies'('urn:example:bob3662', true)). +answer('urn:example:complies'('urn:example:bob3663', true)). +answer('urn:example:complies'('urn:example:bob3664', true)). +answer('urn:example:complies'('urn:example:bob3665', true)). +answer('urn:example:complies'('urn:example:bob3666', true)). +answer('urn:example:complies'('urn:example:bob3667', true)). +answer('urn:example:complies'('urn:example:bob3668', true)). +answer('urn:example:complies'('urn:example:bob3669', true)). +answer('urn:example:complies'('urn:example:bob3670', true)). +answer('urn:example:complies'('urn:example:bob3671', true)). +answer('urn:example:complies'('urn:example:bob3672', true)). +answer('urn:example:complies'('urn:example:bob3673', true)). +answer('urn:example:complies'('urn:example:bob3674', true)). +answer('urn:example:complies'('urn:example:bob3675', true)). +answer('urn:example:complies'('urn:example:bob3676', true)). +answer('urn:example:complies'('urn:example:bob3677', true)). +answer('urn:example:complies'('urn:example:bob3678', true)). +answer('urn:example:complies'('urn:example:bob3679', true)). +answer('urn:example:complies'('urn:example:bob3680', true)). +answer('urn:example:complies'('urn:example:bob3681', true)). +answer('urn:example:complies'('urn:example:bob3682', true)). +answer('urn:example:complies'('urn:example:bob3683', true)). +answer('urn:example:complies'('urn:example:bob3684', true)). +answer('urn:example:complies'('urn:example:bob3685', true)). +answer('urn:example:complies'('urn:example:bob3686', true)). +answer('urn:example:complies'('urn:example:bob3687', true)). +answer('urn:example:complies'('urn:example:bob3688', true)). +answer('urn:example:complies'('urn:example:bob3689', true)). +answer('urn:example:complies'('urn:example:bob3690', true)). +answer('urn:example:complies'('urn:example:bob3691', true)). +answer('urn:example:complies'('urn:example:bob3692', true)). +answer('urn:example:complies'('urn:example:bob3693', true)). +answer('urn:example:complies'('urn:example:bob3694', true)). +answer('urn:example:complies'('urn:example:bob3695', true)). +answer('urn:example:complies'('urn:example:bob3696', true)). +answer('urn:example:complies'('urn:example:bob3697', true)). +answer('urn:example:complies'('urn:example:bob3698', true)). +answer('urn:example:complies'('urn:example:bob3699', true)). +answer('urn:example:complies'('urn:example:bob3700', true)). +answer('urn:example:complies'('urn:example:bob3701', true)). +answer('urn:example:complies'('urn:example:bob3702', true)). +answer('urn:example:complies'('urn:example:bob3703', true)). +answer('urn:example:complies'('urn:example:bob3704', true)). +answer('urn:example:complies'('urn:example:bob3705', true)). +answer('urn:example:complies'('urn:example:bob3706', true)). +answer('urn:example:complies'('urn:example:bob3707', true)). +answer('urn:example:complies'('urn:example:bob3708', true)). +answer('urn:example:complies'('urn:example:bob3709', true)). +answer('urn:example:complies'('urn:example:bob3710', true)). +answer('urn:example:complies'('urn:example:bob3711', true)). +answer('urn:example:complies'('urn:example:bob3712', true)). +answer('urn:example:complies'('urn:example:bob3713', true)). +answer('urn:example:complies'('urn:example:bob3714', true)). +answer('urn:example:complies'('urn:example:bob3715', true)). +answer('urn:example:complies'('urn:example:bob3716', true)). +answer('urn:example:complies'('urn:example:bob3717', true)). +answer('urn:example:complies'('urn:example:bob3718', true)). +answer('urn:example:complies'('urn:example:bob3719', true)). +answer('urn:example:complies'('urn:example:bob3720', true)). +answer('urn:example:complies'('urn:example:bob3721', true)). +answer('urn:example:complies'('urn:example:bob3722', true)). +answer('urn:example:complies'('urn:example:bob3723', true)). +answer('urn:example:complies'('urn:example:bob3724', true)). +answer('urn:example:complies'('urn:example:bob3725', true)). +answer('urn:example:complies'('urn:example:bob3726', true)). +answer('urn:example:complies'('urn:example:bob3727', true)). +answer('urn:example:complies'('urn:example:bob3728', true)). +answer('urn:example:complies'('urn:example:bob3729', true)). +answer('urn:example:complies'('urn:example:bob3730', true)). +answer('urn:example:complies'('urn:example:bob3731', true)). +answer('urn:example:complies'('urn:example:bob3732', true)). +answer('urn:example:complies'('urn:example:bob3733', true)). +answer('urn:example:complies'('urn:example:bob3734', true)). +answer('urn:example:complies'('urn:example:bob3735', true)). +answer('urn:example:complies'('urn:example:bob3736', true)). +answer('urn:example:complies'('urn:example:bob3737', true)). +answer('urn:example:complies'('urn:example:bob3738', true)). +answer('urn:example:complies'('urn:example:bob3739', true)). +answer('urn:example:complies'('urn:example:bob3740', true)). +answer('urn:example:complies'('urn:example:bob3741', true)). +answer('urn:example:complies'('urn:example:bob3742', true)). +answer('urn:example:complies'('urn:example:bob3743', true)). +answer('urn:example:complies'('urn:example:bob3744', true)). +answer('urn:example:complies'('urn:example:bob3745', true)). +answer('urn:example:complies'('urn:example:bob3746', true)). +answer('urn:example:complies'('urn:example:bob3747', true)). +answer('urn:example:complies'('urn:example:bob3748', true)). +answer('urn:example:complies'('urn:example:bob3749', true)). +answer('urn:example:complies'('urn:example:bob3750', true)). +answer('urn:example:complies'('urn:example:bob3751', true)). +answer('urn:example:complies'('urn:example:bob3752', true)). +answer('urn:example:complies'('urn:example:bob3753', true)). +answer('urn:example:complies'('urn:example:bob3754', true)). +answer('urn:example:complies'('urn:example:bob3755', true)). +answer('urn:example:complies'('urn:example:bob3756', true)). +answer('urn:example:complies'('urn:example:bob3757', true)). +answer('urn:example:complies'('urn:example:bob3758', true)). +answer('urn:example:complies'('urn:example:bob3759', true)). +answer('urn:example:complies'('urn:example:bob3760', true)). +answer('urn:example:complies'('urn:example:bob3761', true)). +answer('urn:example:complies'('urn:example:bob3762', true)). +answer('urn:example:complies'('urn:example:bob3763', true)). +answer('urn:example:complies'('urn:example:bob3764', true)). +answer('urn:example:complies'('urn:example:bob3765', true)). +answer('urn:example:complies'('urn:example:bob3766', true)). +answer('urn:example:complies'('urn:example:bob3767', true)). +answer('urn:example:complies'('urn:example:bob3768', true)). +answer('urn:example:complies'('urn:example:bob3769', true)). +answer('urn:example:complies'('urn:example:bob3770', true)). +answer('urn:example:complies'('urn:example:bob3771', true)). +answer('urn:example:complies'('urn:example:bob3772', true)). +answer('urn:example:complies'('urn:example:bob3773', true)). +answer('urn:example:complies'('urn:example:bob3774', true)). +answer('urn:example:complies'('urn:example:bob3775', true)). +answer('urn:example:complies'('urn:example:bob3776', true)). +answer('urn:example:complies'('urn:example:bob3777', true)). +answer('urn:example:complies'('urn:example:bob3778', true)). +answer('urn:example:complies'('urn:example:bob3779', true)). +answer('urn:example:complies'('urn:example:bob3780', true)). +answer('urn:example:complies'('urn:example:bob3781', true)). +answer('urn:example:complies'('urn:example:bob3782', true)). +answer('urn:example:complies'('urn:example:bob3783', true)). +answer('urn:example:complies'('urn:example:bob3784', true)). +answer('urn:example:complies'('urn:example:bob3785', true)). +answer('urn:example:complies'('urn:example:bob3786', true)). +answer('urn:example:complies'('urn:example:bob3787', true)). +answer('urn:example:complies'('urn:example:bob3788', true)). +answer('urn:example:complies'('urn:example:bob3789', true)). +answer('urn:example:complies'('urn:example:bob3790', true)). +answer('urn:example:complies'('urn:example:bob3791', true)). +answer('urn:example:complies'('urn:example:bob3792', true)). +answer('urn:example:complies'('urn:example:bob3793', true)). +answer('urn:example:complies'('urn:example:bob3794', true)). +answer('urn:example:complies'('urn:example:bob3795', true)). +answer('urn:example:complies'('urn:example:bob3796', true)). +answer('urn:example:complies'('urn:example:bob3797', true)). +answer('urn:example:complies'('urn:example:bob3798', true)). +answer('urn:example:complies'('urn:example:bob3799', true)). +answer('urn:example:complies'('urn:example:bob3800', true)). +answer('urn:example:complies'('urn:example:bob3801', true)). +answer('urn:example:complies'('urn:example:bob3802', true)). +answer('urn:example:complies'('urn:example:bob3803', true)). +answer('urn:example:complies'('urn:example:bob3804', true)). +answer('urn:example:complies'('urn:example:bob3805', true)). +answer('urn:example:complies'('urn:example:bob3806', true)). +answer('urn:example:complies'('urn:example:bob3807', true)). +answer('urn:example:complies'('urn:example:bob3808', true)). +answer('urn:example:complies'('urn:example:bob3809', true)). +answer('urn:example:complies'('urn:example:bob3810', true)). +answer('urn:example:complies'('urn:example:bob3811', true)). +answer('urn:example:complies'('urn:example:bob3812', true)). +answer('urn:example:complies'('urn:example:bob3813', true)). +answer('urn:example:complies'('urn:example:bob3814', true)). +answer('urn:example:complies'('urn:example:bob3815', true)). +answer('urn:example:complies'('urn:example:bob3816', true)). +answer('urn:example:complies'('urn:example:bob3817', true)). +answer('urn:example:complies'('urn:example:bob3818', true)). +answer('urn:example:complies'('urn:example:bob3819', true)). +answer('urn:example:complies'('urn:example:bob3820', true)). +answer('urn:example:complies'('urn:example:bob3821', true)). +answer('urn:example:complies'('urn:example:bob3822', true)). +answer('urn:example:complies'('urn:example:bob3823', true)). +answer('urn:example:complies'('urn:example:bob3824', true)). +answer('urn:example:complies'('urn:example:bob3825', true)). +answer('urn:example:complies'('urn:example:bob3826', true)). +answer('urn:example:complies'('urn:example:bob3827', true)). +answer('urn:example:complies'('urn:example:bob3828', true)). +answer('urn:example:complies'('urn:example:bob3829', true)). +answer('urn:example:complies'('urn:example:bob3830', true)). +answer('urn:example:complies'('urn:example:bob3831', true)). +answer('urn:example:complies'('urn:example:bob3832', true)). +answer('urn:example:complies'('urn:example:bob3833', true)). +answer('urn:example:complies'('urn:example:bob3834', true)). +answer('urn:example:complies'('urn:example:bob3835', true)). +answer('urn:example:complies'('urn:example:bob3836', true)). +answer('urn:example:complies'('urn:example:bob3837', true)). +answer('urn:example:complies'('urn:example:bob3838', true)). +answer('urn:example:complies'('urn:example:bob3839', true)). +answer('urn:example:complies'('urn:example:bob3840', true)). +answer('urn:example:complies'('urn:example:bob3841', true)). +answer('urn:example:complies'('urn:example:bob3842', true)). +answer('urn:example:complies'('urn:example:bob3843', true)). +answer('urn:example:complies'('urn:example:bob3844', true)). +answer('urn:example:complies'('urn:example:bob3845', true)). +answer('urn:example:complies'('urn:example:bob3846', true)). +answer('urn:example:complies'('urn:example:bob3847', true)). +answer('urn:example:complies'('urn:example:bob3848', true)). +answer('urn:example:complies'('urn:example:bob3849', true)). +answer('urn:example:complies'('urn:example:bob3850', true)). +answer('urn:example:complies'('urn:example:bob3851', true)). +answer('urn:example:complies'('urn:example:bob3852', true)). +answer('urn:example:complies'('urn:example:bob3853', true)). +answer('urn:example:complies'('urn:example:bob3854', true)). +answer('urn:example:complies'('urn:example:bob3855', true)). +answer('urn:example:complies'('urn:example:bob3856', true)). +answer('urn:example:complies'('urn:example:bob3857', true)). +answer('urn:example:complies'('urn:example:bob3858', true)). +answer('urn:example:complies'('urn:example:bob3859', true)). +answer('urn:example:complies'('urn:example:bob3860', true)). +answer('urn:example:complies'('urn:example:bob3861', true)). +answer('urn:example:complies'('urn:example:bob3862', true)). +answer('urn:example:complies'('urn:example:bob3863', true)). +answer('urn:example:complies'('urn:example:bob3864', true)). +answer('urn:example:complies'('urn:example:bob3865', true)). +answer('urn:example:complies'('urn:example:bob3866', true)). +answer('urn:example:complies'('urn:example:bob3867', true)). +answer('urn:example:complies'('urn:example:bob3868', true)). +answer('urn:example:complies'('urn:example:bob3869', true)). +answer('urn:example:complies'('urn:example:bob3870', true)). +answer('urn:example:complies'('urn:example:bob3871', true)). +answer('urn:example:complies'('urn:example:bob3872', true)). +answer('urn:example:complies'('urn:example:bob3873', true)). +answer('urn:example:complies'('urn:example:bob3874', true)). +answer('urn:example:complies'('urn:example:bob3875', true)). +answer('urn:example:complies'('urn:example:bob3876', true)). +answer('urn:example:complies'('urn:example:bob3877', true)). +answer('urn:example:complies'('urn:example:bob3878', true)). +answer('urn:example:complies'('urn:example:bob3879', true)). +answer('urn:example:complies'('urn:example:bob3880', true)). +answer('urn:example:complies'('urn:example:bob3881', true)). +answer('urn:example:complies'('urn:example:bob3882', true)). +answer('urn:example:complies'('urn:example:bob3883', true)). +answer('urn:example:complies'('urn:example:bob3884', true)). +answer('urn:example:complies'('urn:example:bob3885', true)). +answer('urn:example:complies'('urn:example:bob3886', true)). +answer('urn:example:complies'('urn:example:bob3887', true)). +answer('urn:example:complies'('urn:example:bob3888', true)). +answer('urn:example:complies'('urn:example:bob3889', true)). +answer('urn:example:complies'('urn:example:bob3890', true)). +answer('urn:example:complies'('urn:example:bob3891', true)). +answer('urn:example:complies'('urn:example:bob3892', true)). +answer('urn:example:complies'('urn:example:bob3893', true)). +answer('urn:example:complies'('urn:example:bob3894', true)). +answer('urn:example:complies'('urn:example:bob3895', true)). +answer('urn:example:complies'('urn:example:bob3896', true)). +answer('urn:example:complies'('urn:example:bob3897', true)). +answer('urn:example:complies'('urn:example:bob3898', true)). +answer('urn:example:complies'('urn:example:bob3899', true)). +answer('urn:example:complies'('urn:example:bob3900', true)). +answer('urn:example:complies'('urn:example:bob3901', true)). +answer('urn:example:complies'('urn:example:bob3902', true)). +answer('urn:example:complies'('urn:example:bob3903', true)). +answer('urn:example:complies'('urn:example:bob3904', true)). +answer('urn:example:complies'('urn:example:bob3905', true)). +answer('urn:example:complies'('urn:example:bob3906', true)). +answer('urn:example:complies'('urn:example:bob3907', true)). +answer('urn:example:complies'('urn:example:bob3908', true)). +answer('urn:example:complies'('urn:example:bob3909', true)). +answer('urn:example:complies'('urn:example:bob3910', true)). +answer('urn:example:complies'('urn:example:bob3911', true)). +answer('urn:example:complies'('urn:example:bob3912', true)). +answer('urn:example:complies'('urn:example:bob3913', true)). +answer('urn:example:complies'('urn:example:bob3914', true)). +answer('urn:example:complies'('urn:example:bob3915', true)). +answer('urn:example:complies'('urn:example:bob3916', true)). +answer('urn:example:complies'('urn:example:bob3917', true)). +answer('urn:example:complies'('urn:example:bob3918', true)). +answer('urn:example:complies'('urn:example:bob3919', true)). +answer('urn:example:complies'('urn:example:bob3920', true)). +answer('urn:example:complies'('urn:example:bob3921', true)). +answer('urn:example:complies'('urn:example:bob3922', true)). +answer('urn:example:complies'('urn:example:bob3923', true)). +answer('urn:example:complies'('urn:example:bob3924', true)). +answer('urn:example:complies'('urn:example:bob3925', true)). +answer('urn:example:complies'('urn:example:bob3926', true)). +answer('urn:example:complies'('urn:example:bob3927', true)). +answer('urn:example:complies'('urn:example:bob3928', true)). +answer('urn:example:complies'('urn:example:bob3929', true)). +answer('urn:example:complies'('urn:example:bob3930', true)). +answer('urn:example:complies'('urn:example:bob3931', true)). +answer('urn:example:complies'('urn:example:bob3932', true)). +answer('urn:example:complies'('urn:example:bob3933', true)). +answer('urn:example:complies'('urn:example:bob3934', true)). +answer('urn:example:complies'('urn:example:bob3935', true)). +answer('urn:example:complies'('urn:example:bob3936', true)). +answer('urn:example:complies'('urn:example:bob3937', true)). +answer('urn:example:complies'('urn:example:bob3938', true)). +answer('urn:example:complies'('urn:example:bob3939', true)). +answer('urn:example:complies'('urn:example:bob3940', true)). +answer('urn:example:complies'('urn:example:bob3941', true)). +answer('urn:example:complies'('urn:example:bob3942', true)). +answer('urn:example:complies'('urn:example:bob3943', true)). +answer('urn:example:complies'('urn:example:bob3944', true)). +answer('urn:example:complies'('urn:example:bob3945', true)). +answer('urn:example:complies'('urn:example:bob3946', true)). +answer('urn:example:complies'('urn:example:bob3947', true)). +answer('urn:example:complies'('urn:example:bob3948', true)). +answer('urn:example:complies'('urn:example:bob3949', true)). +answer('urn:example:complies'('urn:example:bob3950', true)). +answer('urn:example:complies'('urn:example:bob3951', true)). +answer('urn:example:complies'('urn:example:bob3952', true)). +answer('urn:example:complies'('urn:example:bob3953', true)). +answer('urn:example:complies'('urn:example:bob3954', true)). +answer('urn:example:complies'('urn:example:bob3955', true)). +answer('urn:example:complies'('urn:example:bob3956', true)). +answer('urn:example:complies'('urn:example:bob3957', true)). +answer('urn:example:complies'('urn:example:bob3958', true)). +answer('urn:example:complies'('urn:example:bob3959', true)). +answer('urn:example:complies'('urn:example:bob3960', true)). +answer('urn:example:complies'('urn:example:bob3961', true)). +answer('urn:example:complies'('urn:example:bob3962', true)). +answer('urn:example:complies'('urn:example:bob3963', true)). +answer('urn:example:complies'('urn:example:bob3964', true)). +answer('urn:example:complies'('urn:example:bob3965', true)). +answer('urn:example:complies'('urn:example:bob3966', true)). +answer('urn:example:complies'('urn:example:bob3967', true)). +answer('urn:example:complies'('urn:example:bob3968', true)). +answer('urn:example:complies'('urn:example:bob3969', true)). +answer('urn:example:complies'('urn:example:bob3970', true)). +answer('urn:example:complies'('urn:example:bob3971', true)). +answer('urn:example:complies'('urn:example:bob3972', true)). +answer('urn:example:complies'('urn:example:bob3973', true)). +answer('urn:example:complies'('urn:example:bob3974', true)). +answer('urn:example:complies'('urn:example:bob3975', true)). +answer('urn:example:complies'('urn:example:bob3976', true)). +answer('urn:example:complies'('urn:example:bob3977', true)). +answer('urn:example:complies'('urn:example:bob3978', true)). +answer('urn:example:complies'('urn:example:bob3979', true)). +answer('urn:example:complies'('urn:example:bob3980', true)). +answer('urn:example:complies'('urn:example:bob3981', true)). +answer('urn:example:complies'('urn:example:bob3982', true)). +answer('urn:example:complies'('urn:example:bob3983', true)). +answer('urn:example:complies'('urn:example:bob3984', true)). +answer('urn:example:complies'('urn:example:bob3985', true)). +answer('urn:example:complies'('urn:example:bob3986', true)). +answer('urn:example:complies'('urn:example:bob3987', true)). +answer('urn:example:complies'('urn:example:bob3988', true)). +answer('urn:example:complies'('urn:example:bob3989', true)). +answer('urn:example:complies'('urn:example:bob3990', true)). +answer('urn:example:complies'('urn:example:bob3991', true)). +answer('urn:example:complies'('urn:example:bob3992', true)). +answer('urn:example:complies'('urn:example:bob3993', true)). +answer('urn:example:complies'('urn:example:bob3994', true)). +answer('urn:example:complies'('urn:example:bob3995', true)). +answer('urn:example:complies'('urn:example:bob3996', true)). +answer('urn:example:complies'('urn:example:bob3997', true)). +answer('urn:example:complies'('urn:example:bob3998', true)). +answer('urn:example:complies'('urn:example:bob3999', true)). +answer('urn:example:complies'('urn:example:bob4000', true)). +answer('urn:example:complies'('urn:example:bob4001', true)). +answer('urn:example:complies'('urn:example:bob4002', true)). +answer('urn:example:complies'('urn:example:bob4003', true)). +answer('urn:example:complies'('urn:example:bob4004', true)). +answer('urn:example:complies'('urn:example:bob4005', true)). +answer('urn:example:complies'('urn:example:bob4006', true)). +answer('urn:example:complies'('urn:example:bob4007', true)). +answer('urn:example:complies'('urn:example:bob4008', true)). +answer('urn:example:complies'('urn:example:bob4009', true)). +answer('urn:example:complies'('urn:example:bob4010', true)). +answer('urn:example:complies'('urn:example:bob4011', true)). +answer('urn:example:complies'('urn:example:bob4012', true)). +answer('urn:example:complies'('urn:example:bob4013', true)). +answer('urn:example:complies'('urn:example:bob4014', true)). +answer('urn:example:complies'('urn:example:bob4015', true)). +answer('urn:example:complies'('urn:example:bob4016', true)). +answer('urn:example:complies'('urn:example:bob4017', true)). +answer('urn:example:complies'('urn:example:bob4018', true)). +answer('urn:example:complies'('urn:example:bob4019', true)). +answer('urn:example:complies'('urn:example:bob4020', true)). +answer('urn:example:complies'('urn:example:bob4021', true)). +answer('urn:example:complies'('urn:example:bob4022', true)). +answer('urn:example:complies'('urn:example:bob4023', true)). +answer('urn:example:complies'('urn:example:bob4024', true)). +answer('urn:example:complies'('urn:example:bob4025', true)). +answer('urn:example:complies'('urn:example:bob4026', true)). +answer('urn:example:complies'('urn:example:bob4027', true)). +answer('urn:example:complies'('urn:example:bob4028', true)). +answer('urn:example:complies'('urn:example:bob4029', true)). +answer('urn:example:complies'('urn:example:bob4030', true)). +answer('urn:example:complies'('urn:example:bob4031', true)). +answer('urn:example:complies'('urn:example:bob4032', true)). +answer('urn:example:complies'('urn:example:bob4033', true)). +answer('urn:example:complies'('urn:example:bob4034', true)). +answer('urn:example:complies'('urn:example:bob4035', true)). +answer('urn:example:complies'('urn:example:bob4036', true)). +answer('urn:example:complies'('urn:example:bob4037', true)). +answer('urn:example:complies'('urn:example:bob4038', true)). +answer('urn:example:complies'('urn:example:bob4039', true)). +answer('urn:example:complies'('urn:example:bob4040', true)). +answer('urn:example:complies'('urn:example:bob4041', true)). +answer('urn:example:complies'('urn:example:bob4042', true)). +answer('urn:example:complies'('urn:example:bob4043', true)). +answer('urn:example:complies'('urn:example:bob4044', true)). +answer('urn:example:complies'('urn:example:bob4045', true)). +answer('urn:example:complies'('urn:example:bob4046', true)). +answer('urn:example:complies'('urn:example:bob4047', true)). +answer('urn:example:complies'('urn:example:bob4048', true)). +answer('urn:example:complies'('urn:example:bob4049', true)). +answer('urn:example:complies'('urn:example:bob4050', true)). +answer('urn:example:complies'('urn:example:bob4051', true)). +answer('urn:example:complies'('urn:example:bob4052', true)). +answer('urn:example:complies'('urn:example:bob4053', true)). +answer('urn:example:complies'('urn:example:bob4054', true)). +answer('urn:example:complies'('urn:example:bob4055', true)). +answer('urn:example:complies'('urn:example:bob4056', true)). +answer('urn:example:complies'('urn:example:bob4057', true)). +answer('urn:example:complies'('urn:example:bob4058', true)). +answer('urn:example:complies'('urn:example:bob4059', true)). +answer('urn:example:complies'('urn:example:bob4060', true)). +answer('urn:example:complies'('urn:example:bob4061', true)). +answer('urn:example:complies'('urn:example:bob4062', true)). +answer('urn:example:complies'('urn:example:bob4063', true)). +answer('urn:example:complies'('urn:example:bob4064', true)). +answer('urn:example:complies'('urn:example:bob4065', true)). +answer('urn:example:complies'('urn:example:bob4066', true)). +answer('urn:example:complies'('urn:example:bob4067', true)). +answer('urn:example:complies'('urn:example:bob4068', true)). +answer('urn:example:complies'('urn:example:bob4069', true)). +answer('urn:example:complies'('urn:example:bob4070', true)). +answer('urn:example:complies'('urn:example:bob4071', true)). +answer('urn:example:complies'('urn:example:bob4072', true)). +answer('urn:example:complies'('urn:example:bob4073', true)). +answer('urn:example:complies'('urn:example:bob4074', true)). +answer('urn:example:complies'('urn:example:bob4075', true)). +answer('urn:example:complies'('urn:example:bob4076', true)). +answer('urn:example:complies'('urn:example:bob4077', true)). +answer('urn:example:complies'('urn:example:bob4078', true)). +answer('urn:example:complies'('urn:example:bob4079', true)). +answer('urn:example:complies'('urn:example:bob4080', true)). +answer('urn:example:complies'('urn:example:bob4081', true)). +answer('urn:example:complies'('urn:example:bob4082', true)). +answer('urn:example:complies'('urn:example:bob4083', true)). +answer('urn:example:complies'('urn:example:bob4084', true)). +answer('urn:example:complies'('urn:example:bob4085', true)). +answer('urn:example:complies'('urn:example:bob4086', true)). +answer('urn:example:complies'('urn:example:bob4087', true)). +answer('urn:example:complies'('urn:example:bob4088', true)). +answer('urn:example:complies'('urn:example:bob4089', true)). +answer('urn:example:complies'('urn:example:bob4090', true)). +answer('urn:example:complies'('urn:example:bob4091', true)). +answer('urn:example:complies'('urn:example:bob4092', true)). +answer('urn:example:complies'('urn:example:bob4093', true)). +answer('urn:example:complies'('urn:example:bob4094', true)). +answer('urn:example:complies'('urn:example:bob4095', true)). +answer('urn:example:complies'('urn:example:bob4096', true)). +answer('urn:example:complies'('urn:example:bob4097', true)). +answer('urn:example:complies'('urn:example:bob4098', true)). +answer('urn:example:complies'('urn:example:bob4099', true)). +answer('urn:example:complies'('urn:example:bob4100', true)). +answer('urn:example:complies'('urn:example:bob4101', true)). +answer('urn:example:complies'('urn:example:bob4102', true)). +answer('urn:example:complies'('urn:example:bob4103', true)). +answer('urn:example:complies'('urn:example:bob4104', true)). +answer('urn:example:complies'('urn:example:bob4105', true)). +answer('urn:example:complies'('urn:example:bob4106', true)). +answer('urn:example:complies'('urn:example:bob4107', true)). +answer('urn:example:complies'('urn:example:bob4108', true)). +answer('urn:example:complies'('urn:example:bob4109', true)). +answer('urn:example:complies'('urn:example:bob4110', true)). +answer('urn:example:complies'('urn:example:bob4111', true)). +answer('urn:example:complies'('urn:example:bob4112', true)). +answer('urn:example:complies'('urn:example:bob4113', true)). +answer('urn:example:complies'('urn:example:bob4114', true)). +answer('urn:example:complies'('urn:example:bob4115', true)). +answer('urn:example:complies'('urn:example:bob4116', true)). +answer('urn:example:complies'('urn:example:bob4117', true)). +answer('urn:example:complies'('urn:example:bob4118', true)). +answer('urn:example:complies'('urn:example:bob4119', true)). +answer('urn:example:complies'('urn:example:bob4120', true)). +answer('urn:example:complies'('urn:example:bob4121', true)). +answer('urn:example:complies'('urn:example:bob4122', true)). +answer('urn:example:complies'('urn:example:bob4123', true)). +answer('urn:example:complies'('urn:example:bob4124', true)). +answer('urn:example:complies'('urn:example:bob4125', true)). +answer('urn:example:complies'('urn:example:bob4126', true)). +answer('urn:example:complies'('urn:example:bob4127', true)). +answer('urn:example:complies'('urn:example:bob4128', true)). +answer('urn:example:complies'('urn:example:bob4129', true)). +answer('urn:example:complies'('urn:example:bob4130', true)). +answer('urn:example:complies'('urn:example:bob4131', true)). +answer('urn:example:complies'('urn:example:bob4132', true)). +answer('urn:example:complies'('urn:example:bob4133', true)). +answer('urn:example:complies'('urn:example:bob4134', true)). +answer('urn:example:complies'('urn:example:bob4135', true)). +answer('urn:example:complies'('urn:example:bob4136', true)). +answer('urn:example:complies'('urn:example:bob4137', true)). +answer('urn:example:complies'('urn:example:bob4138', true)). +answer('urn:example:complies'('urn:example:bob4139', true)). +answer('urn:example:complies'('urn:example:bob4140', true)). +answer('urn:example:complies'('urn:example:bob4141', true)). +answer('urn:example:complies'('urn:example:bob4142', true)). +answer('urn:example:complies'('urn:example:bob4143', true)). +answer('urn:example:complies'('urn:example:bob4144', true)). +answer('urn:example:complies'('urn:example:bob4145', true)). +answer('urn:example:complies'('urn:example:bob4146', true)). +answer('urn:example:complies'('urn:example:bob4147', true)). +answer('urn:example:complies'('urn:example:bob4148', true)). +answer('urn:example:complies'('urn:example:bob4149', true)). +answer('urn:example:complies'('urn:example:bob4150', true)). +answer('urn:example:complies'('urn:example:bob4151', true)). +answer('urn:example:complies'('urn:example:bob4152', true)). +answer('urn:example:complies'('urn:example:bob4153', true)). +answer('urn:example:complies'('urn:example:bob4154', true)). +answer('urn:example:complies'('urn:example:bob4155', true)). +answer('urn:example:complies'('urn:example:bob4156', true)). +answer('urn:example:complies'('urn:example:bob4157', true)). +answer('urn:example:complies'('urn:example:bob4158', true)). +answer('urn:example:complies'('urn:example:bob4159', true)). +answer('urn:example:complies'('urn:example:bob4160', true)). +answer('urn:example:complies'('urn:example:bob4161', true)). +answer('urn:example:complies'('urn:example:bob4162', true)). +answer('urn:example:complies'('urn:example:bob4163', true)). +answer('urn:example:complies'('urn:example:bob4164', true)). +answer('urn:example:complies'('urn:example:bob4165', true)). +answer('urn:example:complies'('urn:example:bob4166', true)). +answer('urn:example:complies'('urn:example:bob4167', true)). +answer('urn:example:complies'('urn:example:bob4168', true)). +answer('urn:example:complies'('urn:example:bob4169', true)). +answer('urn:example:complies'('urn:example:bob4170', true)). +answer('urn:example:complies'('urn:example:bob4171', true)). +answer('urn:example:complies'('urn:example:bob4172', true)). +answer('urn:example:complies'('urn:example:bob4173', true)). +answer('urn:example:complies'('urn:example:bob4174', true)). +answer('urn:example:complies'('urn:example:bob4175', true)). +answer('urn:example:complies'('urn:example:bob4176', true)). +answer('urn:example:complies'('urn:example:bob4177', true)). +answer('urn:example:complies'('urn:example:bob4178', true)). +answer('urn:example:complies'('urn:example:bob4179', true)). +answer('urn:example:complies'('urn:example:bob4180', true)). +answer('urn:example:complies'('urn:example:bob4181', true)). +answer('urn:example:complies'('urn:example:bob4182', true)). +answer('urn:example:complies'('urn:example:bob4183', true)). +answer('urn:example:complies'('urn:example:bob4184', true)). +answer('urn:example:complies'('urn:example:bob4185', true)). +answer('urn:example:complies'('urn:example:bob4186', true)). +answer('urn:example:complies'('urn:example:bob4187', true)). +answer('urn:example:complies'('urn:example:bob4188', true)). +answer('urn:example:complies'('urn:example:bob4189', true)). +answer('urn:example:complies'('urn:example:bob4190', true)). +answer('urn:example:complies'('urn:example:bob4191', true)). +answer('urn:example:complies'('urn:example:bob4192', true)). +answer('urn:example:complies'('urn:example:bob4193', true)). +answer('urn:example:complies'('urn:example:bob4194', true)). +answer('urn:example:complies'('urn:example:bob4195', true)). +answer('urn:example:complies'('urn:example:bob4196', true)). +answer('urn:example:complies'('urn:example:bob4197', true)). +answer('urn:example:complies'('urn:example:bob4198', true)). +answer('urn:example:complies'('urn:example:bob4199', true)). +answer('urn:example:complies'('urn:example:bob4200', true)). +answer('urn:example:complies'('urn:example:bob4201', true)). +answer('urn:example:complies'('urn:example:bob4202', true)). +answer('urn:example:complies'('urn:example:bob4203', true)). +answer('urn:example:complies'('urn:example:bob4204', true)). +answer('urn:example:complies'('urn:example:bob4205', true)). +answer('urn:example:complies'('urn:example:bob4206', true)). +answer('urn:example:complies'('urn:example:bob4207', true)). +answer('urn:example:complies'('urn:example:bob4208', true)). +answer('urn:example:complies'('urn:example:bob4209', true)). +answer('urn:example:complies'('urn:example:bob4210', true)). +answer('urn:example:complies'('urn:example:bob4211', true)). +answer('urn:example:complies'('urn:example:bob4212', true)). +answer('urn:example:complies'('urn:example:bob4213', true)). +answer('urn:example:complies'('urn:example:bob4214', true)). +answer('urn:example:complies'('urn:example:bob4215', true)). +answer('urn:example:complies'('urn:example:bob4216', true)). +answer('urn:example:complies'('urn:example:bob4217', true)). +answer('urn:example:complies'('urn:example:bob4218', true)). +answer('urn:example:complies'('urn:example:bob4219', true)). +answer('urn:example:complies'('urn:example:bob4220', true)). +answer('urn:example:complies'('urn:example:bob4221', true)). +answer('urn:example:complies'('urn:example:bob4222', true)). +answer('urn:example:complies'('urn:example:bob4223', true)). +answer('urn:example:complies'('urn:example:bob4224', true)). +answer('urn:example:complies'('urn:example:bob4225', true)). +answer('urn:example:complies'('urn:example:bob4226', true)). +answer('urn:example:complies'('urn:example:bob4227', true)). +answer('urn:example:complies'('urn:example:bob4228', true)). +answer('urn:example:complies'('urn:example:bob4229', true)). +answer('urn:example:complies'('urn:example:bob4230', true)). +answer('urn:example:complies'('urn:example:bob4231', true)). +answer('urn:example:complies'('urn:example:bob4232', true)). +answer('urn:example:complies'('urn:example:bob4233', true)). +answer('urn:example:complies'('urn:example:bob4234', true)). +answer('urn:example:complies'('urn:example:bob4235', true)). +answer('urn:example:complies'('urn:example:bob4236', true)). +answer('urn:example:complies'('urn:example:bob4237', true)). +answer('urn:example:complies'('urn:example:bob4238', true)). +answer('urn:example:complies'('urn:example:bob4239', true)). +answer('urn:example:complies'('urn:example:bob4240', true)). +answer('urn:example:complies'('urn:example:bob4241', true)). +answer('urn:example:complies'('urn:example:bob4242', true)). +answer('urn:example:complies'('urn:example:bob4243', true)). +answer('urn:example:complies'('urn:example:bob4244', true)). +answer('urn:example:complies'('urn:example:bob4245', true)). +answer('urn:example:complies'('urn:example:bob4246', true)). +answer('urn:example:complies'('urn:example:bob4247', true)). +answer('urn:example:complies'('urn:example:bob4248', true)). +answer('urn:example:complies'('urn:example:bob4249', true)). +answer('urn:example:complies'('urn:example:bob4250', true)). +answer('urn:example:complies'('urn:example:bob4251', true)). +answer('urn:example:complies'('urn:example:bob4252', true)). +answer('urn:example:complies'('urn:example:bob4253', true)). +answer('urn:example:complies'('urn:example:bob4254', true)). +answer('urn:example:complies'('urn:example:bob4255', true)). +answer('urn:example:complies'('urn:example:bob4256', true)). +answer('urn:example:complies'('urn:example:bob4257', true)). +answer('urn:example:complies'('urn:example:bob4258', true)). +answer('urn:example:complies'('urn:example:bob4259', true)). +answer('urn:example:complies'('urn:example:bob4260', true)). +answer('urn:example:complies'('urn:example:bob4261', true)). +answer('urn:example:complies'('urn:example:bob4262', true)). +answer('urn:example:complies'('urn:example:bob4263', true)). +answer('urn:example:complies'('urn:example:bob4264', true)). +answer('urn:example:complies'('urn:example:bob4265', true)). +answer('urn:example:complies'('urn:example:bob4266', true)). +answer('urn:example:complies'('urn:example:bob4267', true)). +answer('urn:example:complies'('urn:example:bob4268', true)). +answer('urn:example:complies'('urn:example:bob4269', true)). +answer('urn:example:complies'('urn:example:bob4270', true)). +answer('urn:example:complies'('urn:example:bob4271', true)). +answer('urn:example:complies'('urn:example:bob4272', true)). +answer('urn:example:complies'('urn:example:bob4273', true)). +answer('urn:example:complies'('urn:example:bob4274', true)). +answer('urn:example:complies'('urn:example:bob4275', true)). +answer('urn:example:complies'('urn:example:bob4276', true)). +answer('urn:example:complies'('urn:example:bob4277', true)). +answer('urn:example:complies'('urn:example:bob4278', true)). +answer('urn:example:complies'('urn:example:bob4279', true)). +answer('urn:example:complies'('urn:example:bob4280', true)). +answer('urn:example:complies'('urn:example:bob4281', true)). +answer('urn:example:complies'('urn:example:bob4282', true)). +answer('urn:example:complies'('urn:example:bob4283', true)). +answer('urn:example:complies'('urn:example:bob4284', true)). +answer('urn:example:complies'('urn:example:bob4285', true)). +answer('urn:example:complies'('urn:example:bob4286', true)). +answer('urn:example:complies'('urn:example:bob4287', true)). +answer('urn:example:complies'('urn:example:bob4288', true)). +answer('urn:example:complies'('urn:example:bob4289', true)). +answer('urn:example:complies'('urn:example:bob4290', true)). +answer('urn:example:complies'('urn:example:bob4291', true)). +answer('urn:example:complies'('urn:example:bob4292', true)). +answer('urn:example:complies'('urn:example:bob4293', true)). +answer('urn:example:complies'('urn:example:bob4294', true)). +answer('urn:example:complies'('urn:example:bob4295', true)). +answer('urn:example:complies'('urn:example:bob4296', true)). +answer('urn:example:complies'('urn:example:bob4297', true)). +answer('urn:example:complies'('urn:example:bob4298', true)). +answer('urn:example:complies'('urn:example:bob4299', true)). +answer('urn:example:complies'('urn:example:bob4300', true)). +answer('urn:example:complies'('urn:example:bob4301', true)). +answer('urn:example:complies'('urn:example:bob4302', true)). +answer('urn:example:complies'('urn:example:bob4303', true)). +answer('urn:example:complies'('urn:example:bob4304', true)). +answer('urn:example:complies'('urn:example:bob4305', true)). +answer('urn:example:complies'('urn:example:bob4306', true)). +answer('urn:example:complies'('urn:example:bob4307', true)). +answer('urn:example:complies'('urn:example:bob4308', true)). +answer('urn:example:complies'('urn:example:bob4309', true)). +answer('urn:example:complies'('urn:example:bob4310', true)). +answer('urn:example:complies'('urn:example:bob4311', true)). +answer('urn:example:complies'('urn:example:bob4312', true)). +answer('urn:example:complies'('urn:example:bob4313', true)). +answer('urn:example:complies'('urn:example:bob4314', true)). +answer('urn:example:complies'('urn:example:bob4315', true)). +answer('urn:example:complies'('urn:example:bob4316', true)). +answer('urn:example:complies'('urn:example:bob4317', true)). +answer('urn:example:complies'('urn:example:bob4318', true)). +answer('urn:example:complies'('urn:example:bob4319', true)). +answer('urn:example:complies'('urn:example:bob4320', true)). +answer('urn:example:complies'('urn:example:bob4321', true)). +answer('urn:example:complies'('urn:example:bob4322', true)). +answer('urn:example:complies'('urn:example:bob4323', true)). +answer('urn:example:complies'('urn:example:bob4324', true)). +answer('urn:example:complies'('urn:example:bob4325', true)). +answer('urn:example:complies'('urn:example:bob4326', true)). +answer('urn:example:complies'('urn:example:bob4327', true)). +answer('urn:example:complies'('urn:example:bob4328', true)). +answer('urn:example:complies'('urn:example:bob4329', true)). +answer('urn:example:complies'('urn:example:bob4330', true)). +answer('urn:example:complies'('urn:example:bob4331', true)). +answer('urn:example:complies'('urn:example:bob4332', true)). +answer('urn:example:complies'('urn:example:bob4333', true)). +answer('urn:example:complies'('urn:example:bob4334', true)). +answer('urn:example:complies'('urn:example:bob4335', true)). +answer('urn:example:complies'('urn:example:bob4336', true)). +answer('urn:example:complies'('urn:example:bob4337', true)). +answer('urn:example:complies'('urn:example:bob4338', true)). +answer('urn:example:complies'('urn:example:bob4339', true)). +answer('urn:example:complies'('urn:example:bob4340', true)). +answer('urn:example:complies'('urn:example:bob4341', true)). +answer('urn:example:complies'('urn:example:bob4342', true)). +answer('urn:example:complies'('urn:example:bob4343', true)). +answer('urn:example:complies'('urn:example:bob4344', true)). +answer('urn:example:complies'('urn:example:bob4345', true)). +answer('urn:example:complies'('urn:example:bob4346', true)). +answer('urn:example:complies'('urn:example:bob4347', true)). +answer('urn:example:complies'('urn:example:bob4348', true)). +answer('urn:example:complies'('urn:example:bob4349', true)). +answer('urn:example:complies'('urn:example:bob4350', true)). +answer('urn:example:complies'('urn:example:bob4351', true)). +answer('urn:example:complies'('urn:example:bob4352', true)). +answer('urn:example:complies'('urn:example:bob4353', true)). +answer('urn:example:complies'('urn:example:bob4354', true)). +answer('urn:example:complies'('urn:example:bob4355', true)). +answer('urn:example:complies'('urn:example:bob4356', true)). +answer('urn:example:complies'('urn:example:bob4357', true)). +answer('urn:example:complies'('urn:example:bob4358', true)). +answer('urn:example:complies'('urn:example:bob4359', true)). +answer('urn:example:complies'('urn:example:bob4360', true)). +answer('urn:example:complies'('urn:example:bob4361', true)). +answer('urn:example:complies'('urn:example:bob4362', true)). +answer('urn:example:complies'('urn:example:bob4363', true)). +answer('urn:example:complies'('urn:example:bob4364', true)). +answer('urn:example:complies'('urn:example:bob4365', true)). +answer('urn:example:complies'('urn:example:bob4366', true)). +answer('urn:example:complies'('urn:example:bob4367', true)). +answer('urn:example:complies'('urn:example:bob4368', true)). +answer('urn:example:complies'('urn:example:bob4369', true)). +answer('urn:example:complies'('urn:example:bob4370', true)). +answer('urn:example:complies'('urn:example:bob4371', true)). +answer('urn:example:complies'('urn:example:bob4372', true)). +answer('urn:example:complies'('urn:example:bob4373', true)). +answer('urn:example:complies'('urn:example:bob4374', true)). +answer('urn:example:complies'('urn:example:bob4375', true)). +answer('urn:example:complies'('urn:example:bob4376', true)). +answer('urn:example:complies'('urn:example:bob4377', true)). +answer('urn:example:complies'('urn:example:bob4378', true)). +answer('urn:example:complies'('urn:example:bob4379', true)). +answer('urn:example:complies'('urn:example:bob4380', true)). +answer('urn:example:complies'('urn:example:bob4381', true)). +answer('urn:example:complies'('urn:example:bob4382', true)). +answer('urn:example:complies'('urn:example:bob4383', true)). +answer('urn:example:complies'('urn:example:bob4384', true)). +answer('urn:example:complies'('urn:example:bob4385', true)). +answer('urn:example:complies'('urn:example:bob4386', true)). +answer('urn:example:complies'('urn:example:bob4387', true)). +answer('urn:example:complies'('urn:example:bob4388', true)). +answer('urn:example:complies'('urn:example:bob4389', true)). +answer('urn:example:complies'('urn:example:bob4390', true)). +answer('urn:example:complies'('urn:example:bob4391', true)). +answer('urn:example:complies'('urn:example:bob4392', true)). +answer('urn:example:complies'('urn:example:bob4393', true)). +answer('urn:example:complies'('urn:example:bob4394', true)). +answer('urn:example:complies'('urn:example:bob4395', true)). +answer('urn:example:complies'('urn:example:bob4396', true)). +answer('urn:example:complies'('urn:example:bob4397', true)). +answer('urn:example:complies'('urn:example:bob4398', true)). +answer('urn:example:complies'('urn:example:bob4399', true)). +answer('urn:example:complies'('urn:example:bob4400', true)). +answer('urn:example:complies'('urn:example:bob4401', true)). +answer('urn:example:complies'('urn:example:bob4402', true)). +answer('urn:example:complies'('urn:example:bob4403', true)). +answer('urn:example:complies'('urn:example:bob4404', true)). +answer('urn:example:complies'('urn:example:bob4405', true)). +answer('urn:example:complies'('urn:example:bob4406', true)). +answer('urn:example:complies'('urn:example:bob4407', true)). +answer('urn:example:complies'('urn:example:bob4408', true)). +answer('urn:example:complies'('urn:example:bob4409', true)). +answer('urn:example:complies'('urn:example:bob4410', true)). +answer('urn:example:complies'('urn:example:bob4411', true)). +answer('urn:example:complies'('urn:example:bob4412', true)). +answer('urn:example:complies'('urn:example:bob4413', true)). +answer('urn:example:complies'('urn:example:bob4414', true)). +answer('urn:example:complies'('urn:example:bob4415', true)). +answer('urn:example:complies'('urn:example:bob4416', true)). +answer('urn:example:complies'('urn:example:bob4417', true)). +answer('urn:example:complies'('urn:example:bob4418', true)). +answer('urn:example:complies'('urn:example:bob4419', true)). +answer('urn:example:complies'('urn:example:bob4420', true)). +answer('urn:example:complies'('urn:example:bob4421', true)). +answer('urn:example:complies'('urn:example:bob4422', true)). +answer('urn:example:complies'('urn:example:bob4423', true)). +answer('urn:example:complies'('urn:example:bob4424', true)). +answer('urn:example:complies'('urn:example:bob4425', true)). +answer('urn:example:complies'('urn:example:bob4426', true)). +answer('urn:example:complies'('urn:example:bob4427', true)). +answer('urn:example:complies'('urn:example:bob4428', true)). +answer('urn:example:complies'('urn:example:bob4429', true)). +answer('urn:example:complies'('urn:example:bob4430', true)). +answer('urn:example:complies'('urn:example:bob4431', true)). +answer('urn:example:complies'('urn:example:bob4432', true)). +answer('urn:example:complies'('urn:example:bob4433', true)). +answer('urn:example:complies'('urn:example:bob4434', true)). +answer('urn:example:complies'('urn:example:bob4435', true)). +answer('urn:example:complies'('urn:example:bob4436', true)). +answer('urn:example:complies'('urn:example:bob4437', true)). +answer('urn:example:complies'('urn:example:bob4438', true)). +answer('urn:example:complies'('urn:example:bob4439', true)). +answer('urn:example:complies'('urn:example:bob4440', true)). +answer('urn:example:complies'('urn:example:bob4441', true)). +answer('urn:example:complies'('urn:example:bob4442', true)). +answer('urn:example:complies'('urn:example:bob4443', true)). +answer('urn:example:complies'('urn:example:bob4444', true)). +answer('urn:example:complies'('urn:example:bob4445', true)). +answer('urn:example:complies'('urn:example:bob4446', true)). +answer('urn:example:complies'('urn:example:bob4447', true)). +answer('urn:example:complies'('urn:example:bob4448', true)). +answer('urn:example:complies'('urn:example:bob4449', true)). +answer('urn:example:complies'('urn:example:bob4450', true)). +answer('urn:example:complies'('urn:example:bob4451', true)). +answer('urn:example:complies'('urn:example:bob4452', true)). +answer('urn:example:complies'('urn:example:bob4453', true)). +answer('urn:example:complies'('urn:example:bob4454', true)). +answer('urn:example:complies'('urn:example:bob4455', true)). +answer('urn:example:complies'('urn:example:bob4456', true)). +answer('urn:example:complies'('urn:example:bob4457', true)). +answer('urn:example:complies'('urn:example:bob4458', true)). +answer('urn:example:complies'('urn:example:bob4459', true)). +answer('urn:example:complies'('urn:example:bob4460', true)). +answer('urn:example:complies'('urn:example:bob4461', true)). +answer('urn:example:complies'('urn:example:bob4462', true)). +answer('urn:example:complies'('urn:example:bob4463', true)). +answer('urn:example:complies'('urn:example:bob4464', true)). +answer('urn:example:complies'('urn:example:bob4465', true)). +answer('urn:example:complies'('urn:example:bob4466', true)). +answer('urn:example:complies'('urn:example:bob4467', true)). +answer('urn:example:complies'('urn:example:bob4468', true)). +answer('urn:example:complies'('urn:example:bob4469', true)). +answer('urn:example:complies'('urn:example:bob4470', true)). +answer('urn:example:complies'('urn:example:bob4471', true)). +answer('urn:example:complies'('urn:example:bob4472', true)). +answer('urn:example:complies'('urn:example:bob4473', true)). +answer('urn:example:complies'('urn:example:bob4474', true)). +answer('urn:example:complies'('urn:example:bob4475', true)). +answer('urn:example:complies'('urn:example:bob4476', true)). +answer('urn:example:complies'('urn:example:bob4477', true)). +answer('urn:example:complies'('urn:example:bob4478', true)). +answer('urn:example:complies'('urn:example:bob4479', true)). +answer('urn:example:complies'('urn:example:bob4480', true)). +answer('urn:example:complies'('urn:example:bob4481', true)). +answer('urn:example:complies'('urn:example:bob4482', true)). +answer('urn:example:complies'('urn:example:bob4483', true)). +answer('urn:example:complies'('urn:example:bob4484', true)). +answer('urn:example:complies'('urn:example:bob4485', true)). +answer('urn:example:complies'('urn:example:bob4486', true)). +answer('urn:example:complies'('urn:example:bob4487', true)). +answer('urn:example:complies'('urn:example:bob4488', true)). +answer('urn:example:complies'('urn:example:bob4489', true)). +answer('urn:example:complies'('urn:example:bob4490', true)). +answer('urn:example:complies'('urn:example:bob4491', true)). +answer('urn:example:complies'('urn:example:bob4492', true)). +answer('urn:example:complies'('urn:example:bob4493', true)). +answer('urn:example:complies'('urn:example:bob4494', true)). +answer('urn:example:complies'('urn:example:bob4495', true)). +answer('urn:example:complies'('urn:example:bob4496', true)). +answer('urn:example:complies'('urn:example:bob4497', true)). +answer('urn:example:complies'('urn:example:bob4498', true)). +answer('urn:example:complies'('urn:example:bob4499', true)). +answer('urn:example:complies'('urn:example:bob4500', true)). +answer('urn:example:complies'('urn:example:bob4501', true)). +answer('urn:example:complies'('urn:example:bob4502', true)). +answer('urn:example:complies'('urn:example:bob4503', true)). +answer('urn:example:complies'('urn:example:bob4504', true)). +answer('urn:example:complies'('urn:example:bob4505', true)). +answer('urn:example:complies'('urn:example:bob4506', true)). +answer('urn:example:complies'('urn:example:bob4507', true)). +answer('urn:example:complies'('urn:example:bob4508', true)). +answer('urn:example:complies'('urn:example:bob4509', true)). +answer('urn:example:complies'('urn:example:bob4510', true)). +answer('urn:example:complies'('urn:example:bob4511', true)). +answer('urn:example:complies'('urn:example:bob4512', true)). +answer('urn:example:complies'('urn:example:bob4513', true)). +answer('urn:example:complies'('urn:example:bob4514', true)). +answer('urn:example:complies'('urn:example:bob4515', true)). +answer('urn:example:complies'('urn:example:bob4516', true)). +answer('urn:example:complies'('urn:example:bob4517', true)). +answer('urn:example:complies'('urn:example:bob4518', true)). +answer('urn:example:complies'('urn:example:bob4519', true)). +answer('urn:example:complies'('urn:example:bob4520', true)). +answer('urn:example:complies'('urn:example:bob4521', true)). +answer('urn:example:complies'('urn:example:bob4522', true)). +answer('urn:example:complies'('urn:example:bob4523', true)). +answer('urn:example:complies'('urn:example:bob4524', true)). +answer('urn:example:complies'('urn:example:bob4525', true)). +answer('urn:example:complies'('urn:example:bob4526', true)). +answer('urn:example:complies'('urn:example:bob4527', true)). +answer('urn:example:complies'('urn:example:bob4528', true)). +answer('urn:example:complies'('urn:example:bob4529', true)). +answer('urn:example:complies'('urn:example:bob4530', true)). +answer('urn:example:complies'('urn:example:bob4531', true)). +answer('urn:example:complies'('urn:example:bob4532', true)). +answer('urn:example:complies'('urn:example:bob4533', true)). +answer('urn:example:complies'('urn:example:bob4534', true)). +answer('urn:example:complies'('urn:example:bob4535', true)). +answer('urn:example:complies'('urn:example:bob4536', true)). +answer('urn:example:complies'('urn:example:bob4537', true)). +answer('urn:example:complies'('urn:example:bob4538', true)). +answer('urn:example:complies'('urn:example:bob4539', true)). +answer('urn:example:complies'('urn:example:bob4540', true)). +answer('urn:example:complies'('urn:example:bob4541', true)). +answer('urn:example:complies'('urn:example:bob4542', true)). +answer('urn:example:complies'('urn:example:bob4543', true)). +answer('urn:example:complies'('urn:example:bob4544', true)). +answer('urn:example:complies'('urn:example:bob4545', true)). +answer('urn:example:complies'('urn:example:bob4546', true)). +answer('urn:example:complies'('urn:example:bob4547', true)). +answer('urn:example:complies'('urn:example:bob4548', true)). +answer('urn:example:complies'('urn:example:bob4549', true)). +answer('urn:example:complies'('urn:example:bob4550', true)). +answer('urn:example:complies'('urn:example:bob4551', true)). +answer('urn:example:complies'('urn:example:bob4552', true)). +answer('urn:example:complies'('urn:example:bob4553', true)). +answer('urn:example:complies'('urn:example:bob4554', true)). +answer('urn:example:complies'('urn:example:bob4555', true)). +answer('urn:example:complies'('urn:example:bob4556', true)). +answer('urn:example:complies'('urn:example:bob4557', true)). +answer('urn:example:complies'('urn:example:bob4558', true)). +answer('urn:example:complies'('urn:example:bob4559', true)). +answer('urn:example:complies'('urn:example:bob4560', true)). +answer('urn:example:complies'('urn:example:bob4561', true)). +answer('urn:example:complies'('urn:example:bob4562', true)). +answer('urn:example:complies'('urn:example:bob4563', true)). +answer('urn:example:complies'('urn:example:bob4564', true)). +answer('urn:example:complies'('urn:example:bob4565', true)). +answer('urn:example:complies'('urn:example:bob4566', true)). +answer('urn:example:complies'('urn:example:bob4567', true)). +answer('urn:example:complies'('urn:example:bob4568', true)). +answer('urn:example:complies'('urn:example:bob4569', true)). +answer('urn:example:complies'('urn:example:bob4570', true)). +answer('urn:example:complies'('urn:example:bob4571', true)). +answer('urn:example:complies'('urn:example:bob4572', true)). +answer('urn:example:complies'('urn:example:bob4573', true)). +answer('urn:example:complies'('urn:example:bob4574', true)). +answer('urn:example:complies'('urn:example:bob4575', true)). +answer('urn:example:complies'('urn:example:bob4576', true)). +answer('urn:example:complies'('urn:example:bob4577', true)). +answer('urn:example:complies'('urn:example:bob4578', true)). +answer('urn:example:complies'('urn:example:bob4579', true)). +answer('urn:example:complies'('urn:example:bob4580', true)). +answer('urn:example:complies'('urn:example:bob4581', true)). +answer('urn:example:complies'('urn:example:bob4582', true)). +answer('urn:example:complies'('urn:example:bob4583', true)). +answer('urn:example:complies'('urn:example:bob4584', true)). +answer('urn:example:complies'('urn:example:bob4585', true)). +answer('urn:example:complies'('urn:example:bob4586', true)). +answer('urn:example:complies'('urn:example:bob4587', true)). +answer('urn:example:complies'('urn:example:bob4588', true)). +answer('urn:example:complies'('urn:example:bob4589', true)). +answer('urn:example:complies'('urn:example:bob4590', true)). +answer('urn:example:complies'('urn:example:bob4591', true)). +answer('urn:example:complies'('urn:example:bob4592', true)). +answer('urn:example:complies'('urn:example:bob4593', true)). +answer('urn:example:complies'('urn:example:bob4594', true)). +answer('urn:example:complies'('urn:example:bob4595', true)). +answer('urn:example:complies'('urn:example:bob4596', true)). +answer('urn:example:complies'('urn:example:bob4597', true)). +answer('urn:example:complies'('urn:example:bob4598', true)). +answer('urn:example:complies'('urn:example:bob4599', true)). +answer('urn:example:complies'('urn:example:bob4600', true)). +answer('urn:example:complies'('urn:example:bob4601', true)). +answer('urn:example:complies'('urn:example:bob4602', true)). +answer('urn:example:complies'('urn:example:bob4603', true)). +answer('urn:example:complies'('urn:example:bob4604', true)). +answer('urn:example:complies'('urn:example:bob4605', true)). +answer('urn:example:complies'('urn:example:bob4606', true)). +answer('urn:example:complies'('urn:example:bob4607', true)). +answer('urn:example:complies'('urn:example:bob4608', true)). +answer('urn:example:complies'('urn:example:bob4609', true)). +answer('urn:example:complies'('urn:example:bob4610', true)). +answer('urn:example:complies'('urn:example:bob4611', true)). +answer('urn:example:complies'('urn:example:bob4612', true)). +answer('urn:example:complies'('urn:example:bob4613', true)). +answer('urn:example:complies'('urn:example:bob4614', true)). +answer('urn:example:complies'('urn:example:bob4615', true)). +answer('urn:example:complies'('urn:example:bob4616', true)). +answer('urn:example:complies'('urn:example:bob4617', true)). +answer('urn:example:complies'('urn:example:bob4618', true)). +answer('urn:example:complies'('urn:example:bob4619', true)). +answer('urn:example:complies'('urn:example:bob4620', true)). +answer('urn:example:complies'('urn:example:bob4621', true)). +answer('urn:example:complies'('urn:example:bob4622', true)). +answer('urn:example:complies'('urn:example:bob4623', true)). +answer('urn:example:complies'('urn:example:bob4624', true)). +answer('urn:example:complies'('urn:example:bob4625', true)). +answer('urn:example:complies'('urn:example:bob4626', true)). +answer('urn:example:complies'('urn:example:bob4627', true)). +answer('urn:example:complies'('urn:example:bob4628', true)). +answer('urn:example:complies'('urn:example:bob4629', true)). +answer('urn:example:complies'('urn:example:bob4630', true)). +answer('urn:example:complies'('urn:example:bob4631', true)). +answer('urn:example:complies'('urn:example:bob4632', true)). +answer('urn:example:complies'('urn:example:bob4633', true)). +answer('urn:example:complies'('urn:example:bob4634', true)). +answer('urn:example:complies'('urn:example:bob4635', true)). +answer('urn:example:complies'('urn:example:bob4636', true)). +answer('urn:example:complies'('urn:example:bob4637', true)). +answer('urn:example:complies'('urn:example:bob4638', true)). +answer('urn:example:complies'('urn:example:bob4639', true)). +answer('urn:example:complies'('urn:example:bob4640', true)). +answer('urn:example:complies'('urn:example:bob4641', true)). +answer('urn:example:complies'('urn:example:bob4642', true)). +answer('urn:example:complies'('urn:example:bob4643', true)). +answer('urn:example:complies'('urn:example:bob4644', true)). +answer('urn:example:complies'('urn:example:bob4645', true)). +answer('urn:example:complies'('urn:example:bob4646', true)). +answer('urn:example:complies'('urn:example:bob4647', true)). +answer('urn:example:complies'('urn:example:bob4648', true)). +answer('urn:example:complies'('urn:example:bob4649', true)). +answer('urn:example:complies'('urn:example:bob4650', true)). +answer('urn:example:complies'('urn:example:bob4651', true)). +answer('urn:example:complies'('urn:example:bob4652', true)). +answer('urn:example:complies'('urn:example:bob4653', true)). +answer('urn:example:complies'('urn:example:bob4654', true)). +answer('urn:example:complies'('urn:example:bob4655', true)). +answer('urn:example:complies'('urn:example:bob4656', true)). +answer('urn:example:complies'('urn:example:bob4657', true)). +answer('urn:example:complies'('urn:example:bob4658', true)). +answer('urn:example:complies'('urn:example:bob4659', true)). +answer('urn:example:complies'('urn:example:bob4660', true)). +answer('urn:example:complies'('urn:example:bob4661', true)). +answer('urn:example:complies'('urn:example:bob4662', true)). +answer('urn:example:complies'('urn:example:bob4663', true)). +answer('urn:example:complies'('urn:example:bob4664', true)). +answer('urn:example:complies'('urn:example:bob4665', true)). +answer('urn:example:complies'('urn:example:bob4666', true)). +answer('urn:example:complies'('urn:example:bob4667', true)). +answer('urn:example:complies'('urn:example:bob4668', true)). +answer('urn:example:complies'('urn:example:bob4669', true)). +answer('urn:example:complies'('urn:example:bob4670', true)). +answer('urn:example:complies'('urn:example:bob4671', true)). +answer('urn:example:complies'('urn:example:bob4672', true)). +answer('urn:example:complies'('urn:example:bob4673', true)). +answer('urn:example:complies'('urn:example:bob4674', true)). +answer('urn:example:complies'('urn:example:bob4675', true)). +answer('urn:example:complies'('urn:example:bob4676', true)). +answer('urn:example:complies'('urn:example:bob4677', true)). +answer('urn:example:complies'('urn:example:bob4678', true)). +answer('urn:example:complies'('urn:example:bob4679', true)). +answer('urn:example:complies'('urn:example:bob4680', true)). +answer('urn:example:complies'('urn:example:bob4681', true)). +answer('urn:example:complies'('urn:example:bob4682', true)). +answer('urn:example:complies'('urn:example:bob4683', true)). +answer('urn:example:complies'('urn:example:bob4684', true)). +answer('urn:example:complies'('urn:example:bob4685', true)). +answer('urn:example:complies'('urn:example:bob4686', true)). +answer('urn:example:complies'('urn:example:bob4687', true)). +answer('urn:example:complies'('urn:example:bob4688', true)). +answer('urn:example:complies'('urn:example:bob4689', true)). +answer('urn:example:complies'('urn:example:bob4690', true)). +answer('urn:example:complies'('urn:example:bob4691', true)). +answer('urn:example:complies'('urn:example:bob4692', true)). +answer('urn:example:complies'('urn:example:bob4693', true)). +answer('urn:example:complies'('urn:example:bob4694', true)). +answer('urn:example:complies'('urn:example:bob4695', true)). +answer('urn:example:complies'('urn:example:bob4696', true)). +answer('urn:example:complies'('urn:example:bob4697', true)). +answer('urn:example:complies'('urn:example:bob4698', true)). +answer('urn:example:complies'('urn:example:bob4699', true)). +answer('urn:example:complies'('urn:example:bob4700', true)). +answer('urn:example:complies'('urn:example:bob4701', true)). +answer('urn:example:complies'('urn:example:bob4702', true)). +answer('urn:example:complies'('urn:example:bob4703', true)). +answer('urn:example:complies'('urn:example:bob4704', true)). +answer('urn:example:complies'('urn:example:bob4705', true)). +answer('urn:example:complies'('urn:example:bob4706', true)). +answer('urn:example:complies'('urn:example:bob4707', true)). +answer('urn:example:complies'('urn:example:bob4708', true)). +answer('urn:example:complies'('urn:example:bob4709', true)). +answer('urn:example:complies'('urn:example:bob4710', true)). +answer('urn:example:complies'('urn:example:bob4711', true)). +answer('urn:example:complies'('urn:example:bob4712', true)). +answer('urn:example:complies'('urn:example:bob4713', true)). +answer('urn:example:complies'('urn:example:bob4714', true)). +answer('urn:example:complies'('urn:example:bob4715', true)). +answer('urn:example:complies'('urn:example:bob4716', true)). +answer('urn:example:complies'('urn:example:bob4717', true)). +answer('urn:example:complies'('urn:example:bob4718', true)). +answer('urn:example:complies'('urn:example:bob4719', true)). +answer('urn:example:complies'('urn:example:bob4720', true)). +answer('urn:example:complies'('urn:example:bob4721', true)). +answer('urn:example:complies'('urn:example:bob4722', true)). +answer('urn:example:complies'('urn:example:bob4723', true)). +answer('urn:example:complies'('urn:example:bob4724', true)). +answer('urn:example:complies'('urn:example:bob4725', true)). +answer('urn:example:complies'('urn:example:bob4726', true)). +answer('urn:example:complies'('urn:example:bob4727', true)). +answer('urn:example:complies'('urn:example:bob4728', true)). +answer('urn:example:complies'('urn:example:bob4729', true)). +answer('urn:example:complies'('urn:example:bob4730', true)). +answer('urn:example:complies'('urn:example:bob4731', true)). +answer('urn:example:complies'('urn:example:bob4732', true)). +answer('urn:example:complies'('urn:example:bob4733', true)). +answer('urn:example:complies'('urn:example:bob4734', true)). +answer('urn:example:complies'('urn:example:bob4735', true)). +answer('urn:example:complies'('urn:example:bob4736', true)). +answer('urn:example:complies'('urn:example:bob4737', true)). +answer('urn:example:complies'('urn:example:bob4738', true)). +answer('urn:example:complies'('urn:example:bob4739', true)). +answer('urn:example:complies'('urn:example:bob4740', true)). +answer('urn:example:complies'('urn:example:bob4741', true)). +answer('urn:example:complies'('urn:example:bob4742', true)). +answer('urn:example:complies'('urn:example:bob4743', true)). +answer('urn:example:complies'('urn:example:bob4744', true)). +answer('urn:example:complies'('urn:example:bob4745', true)). +answer('urn:example:complies'('urn:example:bob4746', true)). +answer('urn:example:complies'('urn:example:bob4747', true)). +answer('urn:example:complies'('urn:example:bob4748', true)). +answer('urn:example:complies'('urn:example:bob4749', true)). +answer('urn:example:complies'('urn:example:bob4750', true)). +answer('urn:example:complies'('urn:example:bob4751', true)). +answer('urn:example:complies'('urn:example:bob4752', true)). +answer('urn:example:complies'('urn:example:bob4753', true)). +answer('urn:example:complies'('urn:example:bob4754', true)). +answer('urn:example:complies'('urn:example:bob4755', true)). +answer('urn:example:complies'('urn:example:bob4756', true)). +answer('urn:example:complies'('urn:example:bob4757', true)). +answer('urn:example:complies'('urn:example:bob4758', true)). +answer('urn:example:complies'('urn:example:bob4759', true)). +answer('urn:example:complies'('urn:example:bob4760', true)). +answer('urn:example:complies'('urn:example:bob4761', true)). +answer('urn:example:complies'('urn:example:bob4762', true)). +answer('urn:example:complies'('urn:example:bob4763', true)). +answer('urn:example:complies'('urn:example:bob4764', true)). +answer('urn:example:complies'('urn:example:bob4765', true)). +answer('urn:example:complies'('urn:example:bob4766', true)). +answer('urn:example:complies'('urn:example:bob4767', true)). +answer('urn:example:complies'('urn:example:bob4768', true)). +answer('urn:example:complies'('urn:example:bob4769', true)). +answer('urn:example:complies'('urn:example:bob4770', true)). +answer('urn:example:complies'('urn:example:bob4771', true)). +answer('urn:example:complies'('urn:example:bob4772', true)). +answer('urn:example:complies'('urn:example:bob4773', true)). +answer('urn:example:complies'('urn:example:bob4774', true)). +answer('urn:example:complies'('urn:example:bob4775', true)). +answer('urn:example:complies'('urn:example:bob4776', true)). +answer('urn:example:complies'('urn:example:bob4777', true)). +answer('urn:example:complies'('urn:example:bob4778', true)). +answer('urn:example:complies'('urn:example:bob4779', true)). +answer('urn:example:complies'('urn:example:bob4780', true)). +answer('urn:example:complies'('urn:example:bob4781', true)). +answer('urn:example:complies'('urn:example:bob4782', true)). +answer('urn:example:complies'('urn:example:bob4783', true)). +answer('urn:example:complies'('urn:example:bob4784', true)). +answer('urn:example:complies'('urn:example:bob4785', true)). +answer('urn:example:complies'('urn:example:bob4786', true)). +answer('urn:example:complies'('urn:example:bob4787', true)). +answer('urn:example:complies'('urn:example:bob4788', true)). +answer('urn:example:complies'('urn:example:bob4789', true)). +answer('urn:example:complies'('urn:example:bob4790', true)). +answer('urn:example:complies'('urn:example:bob4791', true)). +answer('urn:example:complies'('urn:example:bob4792', true)). +answer('urn:example:complies'('urn:example:bob4793', true)). +answer('urn:example:complies'('urn:example:bob4794', true)). +answer('urn:example:complies'('urn:example:bob4795', true)). +answer('urn:example:complies'('urn:example:bob4796', true)). +answer('urn:example:complies'('urn:example:bob4797', true)). +answer('urn:example:complies'('urn:example:bob4798', true)). +answer('urn:example:complies'('urn:example:bob4799', true)). +answer('urn:example:complies'('urn:example:bob4800', true)). +answer('urn:example:complies'('urn:example:bob4801', true)). +answer('urn:example:complies'('urn:example:bob4802', true)). +answer('urn:example:complies'('urn:example:bob4803', true)). +answer('urn:example:complies'('urn:example:bob4804', true)). +answer('urn:example:complies'('urn:example:bob4805', true)). +answer('urn:example:complies'('urn:example:bob4806', true)). +answer('urn:example:complies'('urn:example:bob4807', true)). +answer('urn:example:complies'('urn:example:bob4808', true)). +answer('urn:example:complies'('urn:example:bob4809', true)). +answer('urn:example:complies'('urn:example:bob4810', true)). +answer('urn:example:complies'('urn:example:bob4811', true)). +answer('urn:example:complies'('urn:example:bob4812', true)). +answer('urn:example:complies'('urn:example:bob4813', true)). +answer('urn:example:complies'('urn:example:bob4814', true)). +answer('urn:example:complies'('urn:example:bob4815', true)). +answer('urn:example:complies'('urn:example:bob4816', true)). +answer('urn:example:complies'('urn:example:bob4817', true)). +answer('urn:example:complies'('urn:example:bob4818', true)). +answer('urn:example:complies'('urn:example:bob4819', true)). +answer('urn:example:complies'('urn:example:bob4820', true)). +answer('urn:example:complies'('urn:example:bob4821', true)). +answer('urn:example:complies'('urn:example:bob4822', true)). +answer('urn:example:complies'('urn:example:bob4823', true)). +answer('urn:example:complies'('urn:example:bob4824', true)). +answer('urn:example:complies'('urn:example:bob4825', true)). +answer('urn:example:complies'('urn:example:bob4826', true)). +answer('urn:example:complies'('urn:example:bob4827', true)). +answer('urn:example:complies'('urn:example:bob4828', true)). +answer('urn:example:complies'('urn:example:bob4829', true)). +answer('urn:example:complies'('urn:example:bob4830', true)). +answer('urn:example:complies'('urn:example:bob4831', true)). +answer('urn:example:complies'('urn:example:bob4832', true)). +answer('urn:example:complies'('urn:example:bob4833', true)). +answer('urn:example:complies'('urn:example:bob4834', true)). +answer('urn:example:complies'('urn:example:bob4835', true)). +answer('urn:example:complies'('urn:example:bob4836', true)). +answer('urn:example:complies'('urn:example:bob4837', true)). +answer('urn:example:complies'('urn:example:bob4838', true)). +answer('urn:example:complies'('urn:example:bob4839', true)). +answer('urn:example:complies'('urn:example:bob4840', true)). +answer('urn:example:complies'('urn:example:bob4841', true)). +answer('urn:example:complies'('urn:example:bob4842', true)). +answer('urn:example:complies'('urn:example:bob4843', true)). +answer('urn:example:complies'('urn:example:bob4844', true)). +answer('urn:example:complies'('urn:example:bob4845', true)). +answer('urn:example:complies'('urn:example:bob4846', true)). +answer('urn:example:complies'('urn:example:bob4847', true)). +answer('urn:example:complies'('urn:example:bob4848', true)). +answer('urn:example:complies'('urn:example:bob4849', true)). +answer('urn:example:complies'('urn:example:bob4850', true)). +answer('urn:example:complies'('urn:example:bob4851', true)). +answer('urn:example:complies'('urn:example:bob4852', true)). +answer('urn:example:complies'('urn:example:bob4853', true)). +answer('urn:example:complies'('urn:example:bob4854', true)). +answer('urn:example:complies'('urn:example:bob4855', true)). +answer('urn:example:complies'('urn:example:bob4856', true)). +answer('urn:example:complies'('urn:example:bob4857', true)). +answer('urn:example:complies'('urn:example:bob4858', true)). +answer('urn:example:complies'('urn:example:bob4859', true)). +answer('urn:example:complies'('urn:example:bob4860', true)). +answer('urn:example:complies'('urn:example:bob4861', true)). +answer('urn:example:complies'('urn:example:bob4862', true)). +answer('urn:example:complies'('urn:example:bob4863', true)). +answer('urn:example:complies'('urn:example:bob4864', true)). +answer('urn:example:complies'('urn:example:bob4865', true)). +answer('urn:example:complies'('urn:example:bob4866', true)). +answer('urn:example:complies'('urn:example:bob4867', true)). +answer('urn:example:complies'('urn:example:bob4868', true)). +answer('urn:example:complies'('urn:example:bob4869', true)). +answer('urn:example:complies'('urn:example:bob4870', true)). +answer('urn:example:complies'('urn:example:bob4871', true)). +answer('urn:example:complies'('urn:example:bob4872', true)). +answer('urn:example:complies'('urn:example:bob4873', true)). +answer('urn:example:complies'('urn:example:bob4874', true)). +answer('urn:example:complies'('urn:example:bob4875', true)). +answer('urn:example:complies'('urn:example:bob4876', true)). +answer('urn:example:complies'('urn:example:bob4877', true)). +answer('urn:example:complies'('urn:example:bob4878', true)). +answer('urn:example:complies'('urn:example:bob4879', true)). +answer('urn:example:complies'('urn:example:bob4880', true)). +answer('urn:example:complies'('urn:example:bob4881', true)). +answer('urn:example:complies'('urn:example:bob4882', true)). +answer('urn:example:complies'('urn:example:bob4883', true)). +answer('urn:example:complies'('urn:example:bob4884', true)). +answer('urn:example:complies'('urn:example:bob4885', true)). +answer('urn:example:complies'('urn:example:bob4886', true)). +answer('urn:example:complies'('urn:example:bob4887', true)). +answer('urn:example:complies'('urn:example:bob4888', true)). +answer('urn:example:complies'('urn:example:bob4889', true)). +answer('urn:example:complies'('urn:example:bob4890', true)). +answer('urn:example:complies'('urn:example:bob4891', true)). +answer('urn:example:complies'('urn:example:bob4892', true)). +answer('urn:example:complies'('urn:example:bob4893', true)). +answer('urn:example:complies'('urn:example:bob4894', true)). +answer('urn:example:complies'('urn:example:bob4895', true)). +answer('urn:example:complies'('urn:example:bob4896', true)). +answer('urn:example:complies'('urn:example:bob4897', true)). +answer('urn:example:complies'('urn:example:bob4898', true)). +answer('urn:example:complies'('urn:example:bob4899', true)). +answer('urn:example:complies'('urn:example:bob4900', true)). +answer('urn:example:complies'('urn:example:bob4901', true)). +answer('urn:example:complies'('urn:example:bob4902', true)). +answer('urn:example:complies'('urn:example:bob4903', true)). +answer('urn:example:complies'('urn:example:bob4904', true)). +answer('urn:example:complies'('urn:example:bob4905', true)). +answer('urn:example:complies'('urn:example:bob4906', true)). +answer('urn:example:complies'('urn:example:bob4907', true)). +answer('urn:example:complies'('urn:example:bob4908', true)). +answer('urn:example:complies'('urn:example:bob4909', true)). +answer('urn:example:complies'('urn:example:bob4910', true)). +answer('urn:example:complies'('urn:example:bob4911', true)). +answer('urn:example:complies'('urn:example:bob4912', true)). +answer('urn:example:complies'('urn:example:bob4913', true)). +answer('urn:example:complies'('urn:example:bob4914', true)). +answer('urn:example:complies'('urn:example:bob4915', true)). +answer('urn:example:complies'('urn:example:bob4916', true)). +answer('urn:example:complies'('urn:example:bob4917', true)). +answer('urn:example:complies'('urn:example:bob4918', true)). +answer('urn:example:complies'('urn:example:bob4919', true)). +answer('urn:example:complies'('urn:example:bob4920', true)). +answer('urn:example:complies'('urn:example:bob4921', true)). +answer('urn:example:complies'('urn:example:bob4922', true)). +answer('urn:example:complies'('urn:example:bob4923', true)). +answer('urn:example:complies'('urn:example:bob4924', true)). +answer('urn:example:complies'('urn:example:bob4925', true)). +answer('urn:example:complies'('urn:example:bob4926', true)). +answer('urn:example:complies'('urn:example:bob4927', true)). +answer('urn:example:complies'('urn:example:bob4928', true)). +answer('urn:example:complies'('urn:example:bob4929', true)). +answer('urn:example:complies'('urn:example:bob4930', true)). +answer('urn:example:complies'('urn:example:bob4931', true)). +answer('urn:example:complies'('urn:example:bob4932', true)). +answer('urn:example:complies'('urn:example:bob4933', true)). +answer('urn:example:complies'('urn:example:bob4934', true)). +answer('urn:example:complies'('urn:example:bob4935', true)). +answer('urn:example:complies'('urn:example:bob4936', true)). +answer('urn:example:complies'('urn:example:bob4937', true)). +answer('urn:example:complies'('urn:example:bob4938', true)). +answer('urn:example:complies'('urn:example:bob4939', true)). +answer('urn:example:complies'('urn:example:bob4940', true)). +answer('urn:example:complies'('urn:example:bob4941', true)). +answer('urn:example:complies'('urn:example:bob4942', true)). +answer('urn:example:complies'('urn:example:bob4943', true)). +answer('urn:example:complies'('urn:example:bob4944', true)). +answer('urn:example:complies'('urn:example:bob4945', true)). +answer('urn:example:complies'('urn:example:bob4946', true)). +answer('urn:example:complies'('urn:example:bob4947', true)). +answer('urn:example:complies'('urn:example:bob4948', true)). +answer('urn:example:complies'('urn:example:bob4949', true)). +answer('urn:example:complies'('urn:example:bob4950', true)). +answer('urn:example:complies'('urn:example:bob4951', true)). +answer('urn:example:complies'('urn:example:bob4952', true)). +answer('urn:example:complies'('urn:example:bob4953', true)). +answer('urn:example:complies'('urn:example:bob4954', true)). +answer('urn:example:complies'('urn:example:bob4955', true)). +answer('urn:example:complies'('urn:example:bob4956', true)). +answer('urn:example:complies'('urn:example:bob4957', true)). +answer('urn:example:complies'('urn:example:bob4958', true)). +answer('urn:example:complies'('urn:example:bob4959', true)). +answer('urn:example:complies'('urn:example:bob4960', true)). +answer('urn:example:complies'('urn:example:bob4961', true)). +answer('urn:example:complies'('urn:example:bob4962', true)). +answer('urn:example:complies'('urn:example:bob4963', true)). +answer('urn:example:complies'('urn:example:bob4964', true)). +answer('urn:example:complies'('urn:example:bob4965', true)). +answer('urn:example:complies'('urn:example:bob4966', true)). +answer('urn:example:complies'('urn:example:bob4967', true)). +answer('urn:example:complies'('urn:example:bob4968', true)). +answer('urn:example:complies'('urn:example:bob4969', true)). +answer('urn:example:complies'('urn:example:bob4970', true)). +answer('urn:example:complies'('urn:example:bob4971', true)). +answer('urn:example:complies'('urn:example:bob4972', true)). +answer('urn:example:complies'('urn:example:bob4973', true)). +answer('urn:example:complies'('urn:example:bob4974', true)). +answer('urn:example:complies'('urn:example:bob4975', true)). +answer('urn:example:complies'('urn:example:bob4976', true)). +answer('urn:example:complies'('urn:example:bob4977', true)). +answer('urn:example:complies'('urn:example:bob4978', true)). +answer('urn:example:complies'('urn:example:bob4979', true)). +answer('urn:example:complies'('urn:example:bob4980', true)). +answer('urn:example:complies'('urn:example:bob4981', true)). +answer('urn:example:complies'('urn:example:bob4982', true)). +answer('urn:example:complies'('urn:example:bob4983', true)). +answer('urn:example:complies'('urn:example:bob4984', true)). +answer('urn:example:complies'('urn:example:bob4985', true)). +answer('urn:example:complies'('urn:example:bob4986', true)). +answer('urn:example:complies'('urn:example:bob4987', true)). +answer('urn:example:complies'('urn:example:bob4988', true)). +answer('urn:example:complies'('urn:example:bob4989', true)). +answer('urn:example:complies'('urn:example:bob4990', true)). +answer('urn:example:complies'('urn:example:bob4991', true)). +answer('urn:example:complies'('urn:example:bob4992', true)). +answer('urn:example:complies'('urn:example:bob4993', true)). +answer('urn:example:complies'('urn:example:bob4994', true)). +answer('urn:example:complies'('urn:example:bob4995', true)). +answer('urn:example:complies'('urn:example:bob4996', true)). +answer('urn:example:complies'('urn:example:bob4997', true)). +answer('urn:example:complies'('urn:example:bob4998', true)). +answer('urn:example:complies'('urn:example:bob4999', true)). +answer('urn:example:complies'('urn:example:bob5000', true)). +answer('urn:example:complies'('urn:example:bob5001', true)). +answer('urn:example:complies'('urn:example:bob5002', true)). +answer('urn:example:complies'('urn:example:bob5003', true)). +answer('urn:example:complies'('urn:example:bob5004', true)). +answer('urn:example:complies'('urn:example:bob5005', true)). +answer('urn:example:complies'('urn:example:bob5006', true)). +answer('urn:example:complies'('urn:example:bob5007', true)). +answer('urn:example:complies'('urn:example:bob5008', true)). +answer('urn:example:complies'('urn:example:bob5009', true)). +answer('urn:example:complies'('urn:example:bob5010', true)). +answer('urn:example:complies'('urn:example:bob5011', true)). +answer('urn:example:complies'('urn:example:bob5012', true)). +answer('urn:example:complies'('urn:example:bob5013', true)). +answer('urn:example:complies'('urn:example:bob5014', true)). +answer('urn:example:complies'('urn:example:bob5015', true)). +answer('urn:example:complies'('urn:example:bob5016', true)). +answer('urn:example:complies'('urn:example:bob5017', true)). +answer('urn:example:complies'('urn:example:bob5018', true)). +answer('urn:example:complies'('urn:example:bob5019', true)). +answer('urn:example:complies'('urn:example:bob5020', true)). +answer('urn:example:complies'('urn:example:bob5021', true)). +answer('urn:example:complies'('urn:example:bob5022', true)). +answer('urn:example:complies'('urn:example:bob5023', true)). +answer('urn:example:complies'('urn:example:bob5024', true)). +answer('urn:example:complies'('urn:example:bob5025', true)). +answer('urn:example:complies'('urn:example:bob5026', true)). +answer('urn:example:complies'('urn:example:bob5027', true)). +answer('urn:example:complies'('urn:example:bob5028', true)). +answer('urn:example:complies'('urn:example:bob5029', true)). +answer('urn:example:complies'('urn:example:bob5030', true)). +answer('urn:example:complies'('urn:example:bob5031', true)). +answer('urn:example:complies'('urn:example:bob5032', true)). +answer('urn:example:complies'('urn:example:bob5033', true)). +answer('urn:example:complies'('urn:example:bob5034', true)). +answer('urn:example:complies'('urn:example:bob5035', true)). +answer('urn:example:complies'('urn:example:bob5036', true)). +answer('urn:example:complies'('urn:example:bob5037', true)). +answer('urn:example:complies'('urn:example:bob5038', true)). +answer('urn:example:complies'('urn:example:bob5039', true)). +answer('urn:example:complies'('urn:example:bob5040', true)). +answer('urn:example:complies'('urn:example:bob5041', true)). +answer('urn:example:complies'('urn:example:bob5042', true)). +answer('urn:example:complies'('urn:example:bob5043', true)). +answer('urn:example:complies'('urn:example:bob5044', true)). +answer('urn:example:complies'('urn:example:bob5045', true)). +answer('urn:example:complies'('urn:example:bob5046', true)). +answer('urn:example:complies'('urn:example:bob5047', true)). +answer('urn:example:complies'('urn:example:bob5048', true)). +answer('urn:example:complies'('urn:example:bob5049', true)). +answer('urn:example:complies'('urn:example:bob5050', true)). +answer('urn:example:complies'('urn:example:bob5051', true)). +answer('urn:example:complies'('urn:example:bob5052', true)). +answer('urn:example:complies'('urn:example:bob5053', true)). +answer('urn:example:complies'('urn:example:bob5054', true)). +answer('urn:example:complies'('urn:example:bob5055', true)). +answer('urn:example:complies'('urn:example:bob5056', true)). +answer('urn:example:complies'('urn:example:bob5057', true)). +answer('urn:example:complies'('urn:example:bob5058', true)). +answer('urn:example:complies'('urn:example:bob5059', true)). +answer('urn:example:complies'('urn:example:bob5060', true)). +answer('urn:example:complies'('urn:example:bob5061', true)). +answer('urn:example:complies'('urn:example:bob5062', true)). +answer('urn:example:complies'('urn:example:bob5063', true)). +answer('urn:example:complies'('urn:example:bob5064', true)). +answer('urn:example:complies'('urn:example:bob5065', true)). +answer('urn:example:complies'('urn:example:bob5066', true)). +answer('urn:example:complies'('urn:example:bob5067', true)). +answer('urn:example:complies'('urn:example:bob5068', true)). +answer('urn:example:complies'('urn:example:bob5069', true)). +answer('urn:example:complies'('urn:example:bob5070', true)). +answer('urn:example:complies'('urn:example:bob5071', true)). +answer('urn:example:complies'('urn:example:bob5072', true)). +answer('urn:example:complies'('urn:example:bob5073', true)). +answer('urn:example:complies'('urn:example:bob5074', true)). +answer('urn:example:complies'('urn:example:bob5075', true)). +answer('urn:example:complies'('urn:example:bob5076', true)). +answer('urn:example:complies'('urn:example:bob5077', true)). +answer('urn:example:complies'('urn:example:bob5078', true)). +answer('urn:example:complies'('urn:example:bob5079', true)). +answer('urn:example:complies'('urn:example:bob5080', true)). +answer('urn:example:complies'('urn:example:bob5081', true)). +answer('urn:example:complies'('urn:example:bob5082', true)). +answer('urn:example:complies'('urn:example:bob5083', true)). +answer('urn:example:complies'('urn:example:bob5084', true)). +answer('urn:example:complies'('urn:example:bob5085', true)). +answer('urn:example:complies'('urn:example:bob5086', true)). +answer('urn:example:complies'('urn:example:bob5087', true)). +answer('urn:example:complies'('urn:example:bob5088', true)). +answer('urn:example:complies'('urn:example:bob5089', true)). +answer('urn:example:complies'('urn:example:bob5090', true)). +answer('urn:example:complies'('urn:example:bob5091', true)). +answer('urn:example:complies'('urn:example:bob5092', true)). +answer('urn:example:complies'('urn:example:bob5093', true)). +answer('urn:example:complies'('urn:example:bob5094', true)). +answer('urn:example:complies'('urn:example:bob5095', true)). +answer('urn:example:complies'('urn:example:bob5096', true)). +answer('urn:example:complies'('urn:example:bob5097', true)). +answer('urn:example:complies'('urn:example:bob5098', true)). +answer('urn:example:complies'('urn:example:bob5099', true)). +answer('urn:example:complies'('urn:example:bob5100', true)). +answer('urn:example:complies'('urn:example:bob5101', true)). +answer('urn:example:complies'('urn:example:bob5102', true)). +answer('urn:example:complies'('urn:example:bob5103', true)). +answer('urn:example:complies'('urn:example:bob5104', true)). +answer('urn:example:complies'('urn:example:bob5105', true)). +answer('urn:example:complies'('urn:example:bob5106', true)). +answer('urn:example:complies'('urn:example:bob5107', true)). +answer('urn:example:complies'('urn:example:bob5108', true)). +answer('urn:example:complies'('urn:example:bob5109', true)). +answer('urn:example:complies'('urn:example:bob5110', true)). +answer('urn:example:complies'('urn:example:bob5111', true)). +answer('urn:example:complies'('urn:example:bob5112', true)). +answer('urn:example:complies'('urn:example:bob5113', true)). +answer('urn:example:complies'('urn:example:bob5114', true)). +answer('urn:example:complies'('urn:example:bob5115', true)). +answer('urn:example:complies'('urn:example:bob5116', true)). +answer('urn:example:complies'('urn:example:bob5117', true)). +answer('urn:example:complies'('urn:example:bob5118', true)). +answer('urn:example:complies'('urn:example:bob5119', true)). +answer('urn:example:complies'('urn:example:bob5120', true)). +answer('urn:example:complies'('urn:example:bob5121', true)). +answer('urn:example:complies'('urn:example:bob5122', true)). +answer('urn:example:complies'('urn:example:bob5123', true)). +answer('urn:example:complies'('urn:example:bob5124', true)). +answer('urn:example:complies'('urn:example:bob5125', true)). +answer('urn:example:complies'('urn:example:bob5126', true)). +answer('urn:example:complies'('urn:example:bob5127', true)). +answer('urn:example:complies'('urn:example:bob5128', true)). +answer('urn:example:complies'('urn:example:bob5129', true)). +answer('urn:example:complies'('urn:example:bob5130', true)). +answer('urn:example:complies'('urn:example:bob5131', true)). +answer('urn:example:complies'('urn:example:bob5132', true)). +answer('urn:example:complies'('urn:example:bob5133', true)). +answer('urn:example:complies'('urn:example:bob5134', true)). +answer('urn:example:complies'('urn:example:bob5135', true)). +answer('urn:example:complies'('urn:example:bob5136', true)). +answer('urn:example:complies'('urn:example:bob5137', true)). +answer('urn:example:complies'('urn:example:bob5138', true)). +answer('urn:example:complies'('urn:example:bob5139', true)). +answer('urn:example:complies'('urn:example:bob5140', true)). +answer('urn:example:complies'('urn:example:bob5141', true)). +answer('urn:example:complies'('urn:example:bob5142', true)). +answer('urn:example:complies'('urn:example:bob5143', true)). +answer('urn:example:complies'('urn:example:bob5144', true)). +answer('urn:example:complies'('urn:example:bob5145', true)). +answer('urn:example:complies'('urn:example:bob5146', true)). +answer('urn:example:complies'('urn:example:bob5147', true)). +answer('urn:example:complies'('urn:example:bob5148', true)). +answer('urn:example:complies'('urn:example:bob5149', true)). +answer('urn:example:complies'('urn:example:bob5150', true)). +answer('urn:example:complies'('urn:example:bob5151', true)). +answer('urn:example:complies'('urn:example:bob5152', true)). +answer('urn:example:complies'('urn:example:bob5153', true)). +answer('urn:example:complies'('urn:example:bob5154', true)). +answer('urn:example:complies'('urn:example:bob5155', true)). +answer('urn:example:complies'('urn:example:bob5156', true)). +answer('urn:example:complies'('urn:example:bob5157', true)). +answer('urn:example:complies'('urn:example:bob5158', true)). +answer('urn:example:complies'('urn:example:bob5159', true)). +answer('urn:example:complies'('urn:example:bob5160', true)). +answer('urn:example:complies'('urn:example:bob5161', true)). +answer('urn:example:complies'('urn:example:bob5162', true)). +answer('urn:example:complies'('urn:example:bob5163', true)). +answer('urn:example:complies'('urn:example:bob5164', true)). +answer('urn:example:complies'('urn:example:bob5165', true)). +answer('urn:example:complies'('urn:example:bob5166', true)). +answer('urn:example:complies'('urn:example:bob5167', true)). +answer('urn:example:complies'('urn:example:bob5168', true)). +answer('urn:example:complies'('urn:example:bob5169', true)). +answer('urn:example:complies'('urn:example:bob5170', true)). +answer('urn:example:complies'('urn:example:bob5171', true)). +answer('urn:example:complies'('urn:example:bob5172', true)). +answer('urn:example:complies'('urn:example:bob5173', true)). +answer('urn:example:complies'('urn:example:bob5174', true)). +answer('urn:example:complies'('urn:example:bob5175', true)). +answer('urn:example:complies'('urn:example:bob5176', true)). +answer('urn:example:complies'('urn:example:bob5177', true)). +answer('urn:example:complies'('urn:example:bob5178', true)). +answer('urn:example:complies'('urn:example:bob5179', true)). +answer('urn:example:complies'('urn:example:bob5180', true)). +answer('urn:example:complies'('urn:example:bob5181', true)). +answer('urn:example:complies'('urn:example:bob5182', true)). +answer('urn:example:complies'('urn:example:bob5183', true)). +answer('urn:example:complies'('urn:example:bob5184', true)). +answer('urn:example:complies'('urn:example:bob5185', true)). +answer('urn:example:complies'('urn:example:bob5186', true)). +answer('urn:example:complies'('urn:example:bob5187', true)). +answer('urn:example:complies'('urn:example:bob5188', true)). +answer('urn:example:complies'('urn:example:bob5189', true)). +answer('urn:example:complies'('urn:example:bob5190', true)). +answer('urn:example:complies'('urn:example:bob5191', true)). +answer('urn:example:complies'('urn:example:bob5192', true)). +answer('urn:example:complies'('urn:example:bob5193', true)). +answer('urn:example:complies'('urn:example:bob5194', true)). +answer('urn:example:complies'('urn:example:bob5195', true)). +answer('urn:example:complies'('urn:example:bob5196', true)). +answer('urn:example:complies'('urn:example:bob5197', true)). +answer('urn:example:complies'('urn:example:bob5198', true)). +answer('urn:example:complies'('urn:example:bob5199', true)). +answer('urn:example:complies'('urn:example:bob5200', true)). +answer('urn:example:complies'('urn:example:bob5201', true)). +answer('urn:example:complies'('urn:example:bob5202', true)). +answer('urn:example:complies'('urn:example:bob5203', true)). +answer('urn:example:complies'('urn:example:bob5204', true)). +answer('urn:example:complies'('urn:example:bob5205', true)). +answer('urn:example:complies'('urn:example:bob5206', true)). +answer('urn:example:complies'('urn:example:bob5207', true)). +answer('urn:example:complies'('urn:example:bob5208', true)). +answer('urn:example:complies'('urn:example:bob5209', true)). +answer('urn:example:complies'('urn:example:bob5210', true)). +answer('urn:example:complies'('urn:example:bob5211', true)). +answer('urn:example:complies'('urn:example:bob5212', true)). +answer('urn:example:complies'('urn:example:bob5213', true)). +answer('urn:example:complies'('urn:example:bob5214', true)). +answer('urn:example:complies'('urn:example:bob5215', true)). +answer('urn:example:complies'('urn:example:bob5216', true)). +answer('urn:example:complies'('urn:example:bob5217', true)). +answer('urn:example:complies'('urn:example:bob5218', true)). +answer('urn:example:complies'('urn:example:bob5219', true)). +answer('urn:example:complies'('urn:example:bob5220', true)). +answer('urn:example:complies'('urn:example:bob5221', true)). +answer('urn:example:complies'('urn:example:bob5222', true)). +answer('urn:example:complies'('urn:example:bob5223', true)). +answer('urn:example:complies'('urn:example:bob5224', true)). +answer('urn:example:complies'('urn:example:bob5225', true)). +answer('urn:example:complies'('urn:example:bob5226', true)). +answer('urn:example:complies'('urn:example:bob5227', true)). +answer('urn:example:complies'('urn:example:bob5228', true)). +answer('urn:example:complies'('urn:example:bob5229', true)). +answer('urn:example:complies'('urn:example:bob5230', true)). +answer('urn:example:complies'('urn:example:bob5231', true)). +answer('urn:example:complies'('urn:example:bob5232', true)). +answer('urn:example:complies'('urn:example:bob5233', true)). +answer('urn:example:complies'('urn:example:bob5234', true)). +answer('urn:example:complies'('urn:example:bob5235', true)). +answer('urn:example:complies'('urn:example:bob5236', true)). +answer('urn:example:complies'('urn:example:bob5237', true)). +answer('urn:example:complies'('urn:example:bob5238', true)). +answer('urn:example:complies'('urn:example:bob5239', true)). +answer('urn:example:complies'('urn:example:bob5240', true)). +answer('urn:example:complies'('urn:example:bob5241', true)). +answer('urn:example:complies'('urn:example:bob5242', true)). +answer('urn:example:complies'('urn:example:bob5243', true)). +answer('urn:example:complies'('urn:example:bob5244', true)). +answer('urn:example:complies'('urn:example:bob5245', true)). +answer('urn:example:complies'('urn:example:bob5246', true)). +answer('urn:example:complies'('urn:example:bob5247', true)). +answer('urn:example:complies'('urn:example:bob5248', true)). +answer('urn:example:complies'('urn:example:bob5249', true)). +answer('urn:example:complies'('urn:example:bob5250', true)). +answer('urn:example:complies'('urn:example:bob5251', true)). +answer('urn:example:complies'('urn:example:bob5252', true)). +answer('urn:example:complies'('urn:example:bob5253', true)). +answer('urn:example:complies'('urn:example:bob5254', true)). +answer('urn:example:complies'('urn:example:bob5255', true)). +answer('urn:example:complies'('urn:example:bob5256', true)). +answer('urn:example:complies'('urn:example:bob5257', true)). +answer('urn:example:complies'('urn:example:bob5258', true)). +answer('urn:example:complies'('urn:example:bob5259', true)). +answer('urn:example:complies'('urn:example:bob5260', true)). +answer('urn:example:complies'('urn:example:bob5261', true)). +answer('urn:example:complies'('urn:example:bob5262', true)). +answer('urn:example:complies'('urn:example:bob5263', true)). +answer('urn:example:complies'('urn:example:bob5264', true)). +answer('urn:example:complies'('urn:example:bob5265', true)). +answer('urn:example:complies'('urn:example:bob5266', true)). +answer('urn:example:complies'('urn:example:bob5267', true)). +answer('urn:example:complies'('urn:example:bob5268', true)). +answer('urn:example:complies'('urn:example:bob5269', true)). +answer('urn:example:complies'('urn:example:bob5270', true)). +answer('urn:example:complies'('urn:example:bob5271', true)). +answer('urn:example:complies'('urn:example:bob5272', true)). +answer('urn:example:complies'('urn:example:bob5273', true)). +answer('urn:example:complies'('urn:example:bob5274', true)). +answer('urn:example:complies'('urn:example:bob5275', true)). +answer('urn:example:complies'('urn:example:bob5276', true)). +answer('urn:example:complies'('urn:example:bob5277', true)). +answer('urn:example:complies'('urn:example:bob5278', true)). +answer('urn:example:complies'('urn:example:bob5279', true)). +answer('urn:example:complies'('urn:example:bob5280', true)). +answer('urn:example:complies'('urn:example:bob5281', true)). +answer('urn:example:complies'('urn:example:bob5282', true)). +answer('urn:example:complies'('urn:example:bob5283', true)). +answer('urn:example:complies'('urn:example:bob5284', true)). +answer('urn:example:complies'('urn:example:bob5285', true)). +answer('urn:example:complies'('urn:example:bob5286', true)). +answer('urn:example:complies'('urn:example:bob5287', true)). +answer('urn:example:complies'('urn:example:bob5288', true)). +answer('urn:example:complies'('urn:example:bob5289', true)). +answer('urn:example:complies'('urn:example:bob5290', true)). +answer('urn:example:complies'('urn:example:bob5291', true)). +answer('urn:example:complies'('urn:example:bob5292', true)). +answer('urn:example:complies'('urn:example:bob5293', true)). +answer('urn:example:complies'('urn:example:bob5294', true)). +answer('urn:example:complies'('urn:example:bob5295', true)). +answer('urn:example:complies'('urn:example:bob5296', true)). +answer('urn:example:complies'('urn:example:bob5297', true)). +answer('urn:example:complies'('urn:example:bob5298', true)). +answer('urn:example:complies'('urn:example:bob5299', true)). +answer('urn:example:complies'('urn:example:bob5300', true)). +answer('urn:example:complies'('urn:example:bob5301', true)). +answer('urn:example:complies'('urn:example:bob5302', true)). +answer('urn:example:complies'('urn:example:bob5303', true)). +answer('urn:example:complies'('urn:example:bob5304', true)). +answer('urn:example:complies'('urn:example:bob5305', true)). +answer('urn:example:complies'('urn:example:bob5306', true)). +answer('urn:example:complies'('urn:example:bob5307', true)). +answer('urn:example:complies'('urn:example:bob5308', true)). +answer('urn:example:complies'('urn:example:bob5309', true)). +answer('urn:example:complies'('urn:example:bob5310', true)). +answer('urn:example:complies'('urn:example:bob5311', true)). +answer('urn:example:complies'('urn:example:bob5312', true)). +answer('urn:example:complies'('urn:example:bob5313', true)). +answer('urn:example:complies'('urn:example:bob5314', true)). +answer('urn:example:complies'('urn:example:bob5315', true)). +answer('urn:example:complies'('urn:example:bob5316', true)). +answer('urn:example:complies'('urn:example:bob5317', true)). +answer('urn:example:complies'('urn:example:bob5318', true)). +answer('urn:example:complies'('urn:example:bob5319', true)). +answer('urn:example:complies'('urn:example:bob5320', true)). +answer('urn:example:complies'('urn:example:bob5321', true)). +answer('urn:example:complies'('urn:example:bob5322', true)). +answer('urn:example:complies'('urn:example:bob5323', true)). +answer('urn:example:complies'('urn:example:bob5324', true)). +answer('urn:example:complies'('urn:example:bob5325', true)). +answer('urn:example:complies'('urn:example:bob5326', true)). +answer('urn:example:complies'('urn:example:bob5327', true)). +answer('urn:example:complies'('urn:example:bob5328', true)). +answer('urn:example:complies'('urn:example:bob5329', true)). +answer('urn:example:complies'('urn:example:bob5330', true)). +answer('urn:example:complies'('urn:example:bob5331', true)). +answer('urn:example:complies'('urn:example:bob5332', true)). +answer('urn:example:complies'('urn:example:bob5333', true)). +answer('urn:example:complies'('urn:example:bob5334', true)). +answer('urn:example:complies'('urn:example:bob5335', true)). +answer('urn:example:complies'('urn:example:bob5336', true)). +answer('urn:example:complies'('urn:example:bob5337', true)). +answer('urn:example:complies'('urn:example:bob5338', true)). +answer('urn:example:complies'('urn:example:bob5339', true)). +answer('urn:example:complies'('urn:example:bob5340', true)). +answer('urn:example:complies'('urn:example:bob5341', true)). +answer('urn:example:complies'('urn:example:bob5342', true)). +answer('urn:example:complies'('urn:example:bob5343', true)). +answer('urn:example:complies'('urn:example:bob5344', true)). +answer('urn:example:complies'('urn:example:bob5345', true)). +answer('urn:example:complies'('urn:example:bob5346', true)). +answer('urn:example:complies'('urn:example:bob5347', true)). +answer('urn:example:complies'('urn:example:bob5348', true)). +answer('urn:example:complies'('urn:example:bob5349', true)). +answer('urn:example:complies'('urn:example:bob5350', true)). +answer('urn:example:complies'('urn:example:bob5351', true)). +answer('urn:example:complies'('urn:example:bob5352', true)). +answer('urn:example:complies'('urn:example:bob5353', true)). +answer('urn:example:complies'('urn:example:bob5354', true)). +answer('urn:example:complies'('urn:example:bob5355', true)). +answer('urn:example:complies'('urn:example:bob5356', true)). +answer('urn:example:complies'('urn:example:bob5357', true)). +answer('urn:example:complies'('urn:example:bob5358', true)). +answer('urn:example:complies'('urn:example:bob5359', true)). +answer('urn:example:complies'('urn:example:bob5360', true)). +answer('urn:example:complies'('urn:example:bob5361', true)). +answer('urn:example:complies'('urn:example:bob5362', true)). +answer('urn:example:complies'('urn:example:bob5363', true)). +answer('urn:example:complies'('urn:example:bob5364', true)). +answer('urn:example:complies'('urn:example:bob5365', true)). +answer('urn:example:complies'('urn:example:bob5366', true)). +answer('urn:example:complies'('urn:example:bob5367', true)). +answer('urn:example:complies'('urn:example:bob5368', true)). +answer('urn:example:complies'('urn:example:bob5369', true)). +answer('urn:example:complies'('urn:example:bob5370', true)). +answer('urn:example:complies'('urn:example:bob5371', true)). +answer('urn:example:complies'('urn:example:bob5372', true)). +answer('urn:example:complies'('urn:example:bob5373', true)). +answer('urn:example:complies'('urn:example:bob5374', true)). +answer('urn:example:complies'('urn:example:bob5375', true)). +answer('urn:example:complies'('urn:example:bob5376', true)). +answer('urn:example:complies'('urn:example:bob5377', true)). +answer('urn:example:complies'('urn:example:bob5378', true)). +answer('urn:example:complies'('urn:example:bob5379', true)). +answer('urn:example:complies'('urn:example:bob5380', true)). +answer('urn:example:complies'('urn:example:bob5381', true)). +answer('urn:example:complies'('urn:example:bob5382', true)). +answer('urn:example:complies'('urn:example:bob5383', true)). +answer('urn:example:complies'('urn:example:bob5384', true)). +answer('urn:example:complies'('urn:example:bob5385', true)). +answer('urn:example:complies'('urn:example:bob5386', true)). +answer('urn:example:complies'('urn:example:bob5387', true)). +answer('urn:example:complies'('urn:example:bob5388', true)). +answer('urn:example:complies'('urn:example:bob5389', true)). +answer('urn:example:complies'('urn:example:bob5390', true)). +answer('urn:example:complies'('urn:example:bob5391', true)). +answer('urn:example:complies'('urn:example:bob5392', true)). +answer('urn:example:complies'('urn:example:bob5393', true)). +answer('urn:example:complies'('urn:example:bob5394', true)). +answer('urn:example:complies'('urn:example:bob5395', true)). +answer('urn:example:complies'('urn:example:bob5396', true)). +answer('urn:example:complies'('urn:example:bob5397', true)). +answer('urn:example:complies'('urn:example:bob5398', true)). +answer('urn:example:complies'('urn:example:bob5399', true)). +answer('urn:example:complies'('urn:example:bob5400', true)). +answer('urn:example:complies'('urn:example:bob5401', true)). +answer('urn:example:complies'('urn:example:bob5402', true)). +answer('urn:example:complies'('urn:example:bob5403', true)). +answer('urn:example:complies'('urn:example:bob5404', true)). +answer('urn:example:complies'('urn:example:bob5405', true)). +answer('urn:example:complies'('urn:example:bob5406', true)). +answer('urn:example:complies'('urn:example:bob5407', true)). +answer('urn:example:complies'('urn:example:bob5408', true)). +answer('urn:example:complies'('urn:example:bob5409', true)). +answer('urn:example:complies'('urn:example:bob5410', true)). +answer('urn:example:complies'('urn:example:bob5411', true)). +answer('urn:example:complies'('urn:example:bob5412', true)). +answer('urn:example:complies'('urn:example:bob5413', true)). +answer('urn:example:complies'('urn:example:bob5414', true)). +answer('urn:example:complies'('urn:example:bob5415', true)). +answer('urn:example:complies'('urn:example:bob5416', true)). +answer('urn:example:complies'('urn:example:bob5417', true)). +answer('urn:example:complies'('urn:example:bob5418', true)). +answer('urn:example:complies'('urn:example:bob5419', true)). +answer('urn:example:complies'('urn:example:bob5420', true)). +answer('urn:example:complies'('urn:example:bob5421', true)). +answer('urn:example:complies'('urn:example:bob5422', true)). +answer('urn:example:complies'('urn:example:bob5423', true)). +answer('urn:example:complies'('urn:example:bob5424', true)). +answer('urn:example:complies'('urn:example:bob5425', true)). +answer('urn:example:complies'('urn:example:bob5426', true)). +answer('urn:example:complies'('urn:example:bob5427', true)). +answer('urn:example:complies'('urn:example:bob5428', true)). +answer('urn:example:complies'('urn:example:bob5429', true)). +answer('urn:example:complies'('urn:example:bob5430', true)). +answer('urn:example:complies'('urn:example:bob5431', true)). +answer('urn:example:complies'('urn:example:bob5432', true)). +answer('urn:example:complies'('urn:example:bob5433', true)). +answer('urn:example:complies'('urn:example:bob5434', true)). +answer('urn:example:complies'('urn:example:bob5435', true)). +answer('urn:example:complies'('urn:example:bob5436', true)). +answer('urn:example:complies'('urn:example:bob5437', true)). +answer('urn:example:complies'('urn:example:bob5438', true)). +answer('urn:example:complies'('urn:example:bob5439', true)). +answer('urn:example:complies'('urn:example:bob5440', true)). +answer('urn:example:complies'('urn:example:bob5441', true)). +answer('urn:example:complies'('urn:example:bob5442', true)). +answer('urn:example:complies'('urn:example:bob5443', true)). +answer('urn:example:complies'('urn:example:bob5444', true)). +answer('urn:example:complies'('urn:example:bob5445', true)). +answer('urn:example:complies'('urn:example:bob5446', true)). +answer('urn:example:complies'('urn:example:bob5447', true)). +answer('urn:example:complies'('urn:example:bob5448', true)). +answer('urn:example:complies'('urn:example:bob5449', true)). +answer('urn:example:complies'('urn:example:bob5450', true)). +answer('urn:example:complies'('urn:example:bob5451', true)). +answer('urn:example:complies'('urn:example:bob5452', true)). +answer('urn:example:complies'('urn:example:bob5453', true)). +answer('urn:example:complies'('urn:example:bob5454', true)). +answer('urn:example:complies'('urn:example:bob5455', true)). +answer('urn:example:complies'('urn:example:bob5456', true)). +answer('urn:example:complies'('urn:example:bob5457', true)). +answer('urn:example:complies'('urn:example:bob5458', true)). +answer('urn:example:complies'('urn:example:bob5459', true)). +answer('urn:example:complies'('urn:example:bob5460', true)). +answer('urn:example:complies'('urn:example:bob5461', true)). +answer('urn:example:complies'('urn:example:bob5462', true)). +answer('urn:example:complies'('urn:example:bob5463', true)). +answer('urn:example:complies'('urn:example:bob5464', true)). +answer('urn:example:complies'('urn:example:bob5465', true)). +answer('urn:example:complies'('urn:example:bob5466', true)). +answer('urn:example:complies'('urn:example:bob5467', true)). +answer('urn:example:complies'('urn:example:bob5468', true)). +answer('urn:example:complies'('urn:example:bob5469', true)). +answer('urn:example:complies'('urn:example:bob5470', true)). +answer('urn:example:complies'('urn:example:bob5471', true)). +answer('urn:example:complies'('urn:example:bob5472', true)). +answer('urn:example:complies'('urn:example:bob5473', true)). +answer('urn:example:complies'('urn:example:bob5474', true)). +answer('urn:example:complies'('urn:example:bob5475', true)). +answer('urn:example:complies'('urn:example:bob5476', true)). +answer('urn:example:complies'('urn:example:bob5477', true)). +answer('urn:example:complies'('urn:example:bob5478', true)). +answer('urn:example:complies'('urn:example:bob5479', true)). +answer('urn:example:complies'('urn:example:bob5480', true)). +answer('urn:example:complies'('urn:example:bob5481', true)). +answer('urn:example:complies'('urn:example:bob5482', true)). +answer('urn:example:complies'('urn:example:bob5483', true)). +answer('urn:example:complies'('urn:example:bob5484', true)). +answer('urn:example:complies'('urn:example:bob5485', true)). +answer('urn:example:complies'('urn:example:bob5486', true)). +answer('urn:example:complies'('urn:example:bob5487', true)). +answer('urn:example:complies'('urn:example:bob5488', true)). +answer('urn:example:complies'('urn:example:bob5489', true)). +answer('urn:example:complies'('urn:example:bob5490', true)). +answer('urn:example:complies'('urn:example:bob5491', true)). +answer('urn:example:complies'('urn:example:bob5492', true)). +answer('urn:example:complies'('urn:example:bob5493', true)). +answer('urn:example:complies'('urn:example:bob5494', true)). +answer('urn:example:complies'('urn:example:bob5495', true)). +answer('urn:example:complies'('urn:example:bob5496', true)). +answer('urn:example:complies'('urn:example:bob5497', true)). +answer('urn:example:complies'('urn:example:bob5498', true)). +answer('urn:example:complies'('urn:example:bob5499', true)). +answer('urn:example:complies'('urn:example:bob5500', true)). +answer('urn:example:complies'('urn:example:bob5501', true)). +answer('urn:example:complies'('urn:example:bob5502', true)). +answer('urn:example:complies'('urn:example:bob5503', true)). +answer('urn:example:complies'('urn:example:bob5504', true)). +answer('urn:example:complies'('urn:example:bob5505', true)). +answer('urn:example:complies'('urn:example:bob5506', true)). +answer('urn:example:complies'('urn:example:bob5507', true)). +answer('urn:example:complies'('urn:example:bob5508', true)). +answer('urn:example:complies'('urn:example:bob5509', true)). +answer('urn:example:complies'('urn:example:bob5510', true)). +answer('urn:example:complies'('urn:example:bob5511', true)). +answer('urn:example:complies'('urn:example:bob5512', true)). +answer('urn:example:complies'('urn:example:bob5513', true)). +answer('urn:example:complies'('urn:example:bob5514', true)). +answer('urn:example:complies'('urn:example:bob5515', true)). +answer('urn:example:complies'('urn:example:bob5516', true)). +answer('urn:example:complies'('urn:example:bob5517', true)). +answer('urn:example:complies'('urn:example:bob5518', true)). +answer('urn:example:complies'('urn:example:bob5519', true)). +answer('urn:example:complies'('urn:example:bob5520', true)). +answer('urn:example:complies'('urn:example:bob5521', true)). +answer('urn:example:complies'('urn:example:bob5522', true)). +answer('urn:example:complies'('urn:example:bob5523', true)). +answer('urn:example:complies'('urn:example:bob5524', true)). +answer('urn:example:complies'('urn:example:bob5525', true)). +answer('urn:example:complies'('urn:example:bob5526', true)). +answer('urn:example:complies'('urn:example:bob5527', true)). +answer('urn:example:complies'('urn:example:bob5528', true)). +answer('urn:example:complies'('urn:example:bob5529', true)). +answer('urn:example:complies'('urn:example:bob5530', true)). +answer('urn:example:complies'('urn:example:bob5531', true)). +answer('urn:example:complies'('urn:example:bob5532', true)). +answer('urn:example:complies'('urn:example:bob5533', true)). +answer('urn:example:complies'('urn:example:bob5534', true)). +answer('urn:example:complies'('urn:example:bob5535', true)). +answer('urn:example:complies'('urn:example:bob5536', true)). +answer('urn:example:complies'('urn:example:bob5537', true)). +answer('urn:example:complies'('urn:example:bob5538', true)). +answer('urn:example:complies'('urn:example:bob5539', true)). +answer('urn:example:complies'('urn:example:bob5540', true)). +answer('urn:example:complies'('urn:example:bob5541', true)). +answer('urn:example:complies'('urn:example:bob5542', true)). +answer('urn:example:complies'('urn:example:bob5543', true)). +answer('urn:example:complies'('urn:example:bob5544', true)). +answer('urn:example:complies'('urn:example:bob5545', true)). +answer('urn:example:complies'('urn:example:bob5546', true)). +answer('urn:example:complies'('urn:example:bob5547', true)). +answer('urn:example:complies'('urn:example:bob5548', true)). +answer('urn:example:complies'('urn:example:bob5549', true)). +answer('urn:example:complies'('urn:example:bob5550', true)). +answer('urn:example:complies'('urn:example:bob5551', true)). +answer('urn:example:complies'('urn:example:bob5552', true)). +answer('urn:example:complies'('urn:example:bob5553', true)). +answer('urn:example:complies'('urn:example:bob5554', true)). +answer('urn:example:complies'('urn:example:bob5555', true)). +answer('urn:example:complies'('urn:example:bob5556', true)). +answer('urn:example:complies'('urn:example:bob5557', true)). +answer('urn:example:complies'('urn:example:bob5558', true)). +answer('urn:example:complies'('urn:example:bob5559', true)). +answer('urn:example:complies'('urn:example:bob5560', true)). +answer('urn:example:complies'('urn:example:bob5561', true)). +answer('urn:example:complies'('urn:example:bob5562', true)). +answer('urn:example:complies'('urn:example:bob5563', true)). +answer('urn:example:complies'('urn:example:bob5564', true)). +answer('urn:example:complies'('urn:example:bob5565', true)). +answer('urn:example:complies'('urn:example:bob5566', true)). +answer('urn:example:complies'('urn:example:bob5567', true)). +answer('urn:example:complies'('urn:example:bob5568', true)). +answer('urn:example:complies'('urn:example:bob5569', true)). +answer('urn:example:complies'('urn:example:bob5570', true)). +answer('urn:example:complies'('urn:example:bob5571', true)). +answer('urn:example:complies'('urn:example:bob5572', true)). +answer('urn:example:complies'('urn:example:bob5573', true)). +answer('urn:example:complies'('urn:example:bob5574', true)). +answer('urn:example:complies'('urn:example:bob5575', true)). +answer('urn:example:complies'('urn:example:bob5576', true)). +answer('urn:example:complies'('urn:example:bob5577', true)). +answer('urn:example:complies'('urn:example:bob5578', true)). +answer('urn:example:complies'('urn:example:bob5579', true)). +answer('urn:example:complies'('urn:example:bob5580', true)). +answer('urn:example:complies'('urn:example:bob5581', true)). +answer('urn:example:complies'('urn:example:bob5582', true)). +answer('urn:example:complies'('urn:example:bob5583', true)). +answer('urn:example:complies'('urn:example:bob5584', true)). +answer('urn:example:complies'('urn:example:bob5585', true)). +answer('urn:example:complies'('urn:example:bob5586', true)). +answer('urn:example:complies'('urn:example:bob5587', true)). +answer('urn:example:complies'('urn:example:bob5588', true)). +answer('urn:example:complies'('urn:example:bob5589', true)). +answer('urn:example:complies'('urn:example:bob5590', true)). +answer('urn:example:complies'('urn:example:bob5591', true)). +answer('urn:example:complies'('urn:example:bob5592', true)). +answer('urn:example:complies'('urn:example:bob5593', true)). +answer('urn:example:complies'('urn:example:bob5594', true)). +answer('urn:example:complies'('urn:example:bob5595', true)). +answer('urn:example:complies'('urn:example:bob5596', true)). +answer('urn:example:complies'('urn:example:bob5597', true)). +answer('urn:example:complies'('urn:example:bob5598', true)). +answer('urn:example:complies'('urn:example:bob5599', true)). +answer('urn:example:complies'('urn:example:bob5600', true)). +answer('urn:example:complies'('urn:example:bob5601', true)). +answer('urn:example:complies'('urn:example:bob5602', true)). +answer('urn:example:complies'('urn:example:bob5603', true)). +answer('urn:example:complies'('urn:example:bob5604', true)). +answer('urn:example:complies'('urn:example:bob5605', true)). +answer('urn:example:complies'('urn:example:bob5606', true)). +answer('urn:example:complies'('urn:example:bob5607', true)). +answer('urn:example:complies'('urn:example:bob5608', true)). +answer('urn:example:complies'('urn:example:bob5609', true)). +answer('urn:example:complies'('urn:example:bob5610', true)). +answer('urn:example:complies'('urn:example:bob5611', true)). +answer('urn:example:complies'('urn:example:bob5612', true)). +answer('urn:example:complies'('urn:example:bob5613', true)). +answer('urn:example:complies'('urn:example:bob5614', true)). +answer('urn:example:complies'('urn:example:bob5615', true)). +answer('urn:example:complies'('urn:example:bob5616', true)). +answer('urn:example:complies'('urn:example:bob5617', true)). +answer('urn:example:complies'('urn:example:bob5618', true)). +answer('urn:example:complies'('urn:example:bob5619', true)). +answer('urn:example:complies'('urn:example:bob5620', true)). +answer('urn:example:complies'('urn:example:bob5621', true)). +answer('urn:example:complies'('urn:example:bob5622', true)). +answer('urn:example:complies'('urn:example:bob5623', true)). +answer('urn:example:complies'('urn:example:bob5624', true)). +answer('urn:example:complies'('urn:example:bob5625', true)). +answer('urn:example:complies'('urn:example:bob5626', true)). +answer('urn:example:complies'('urn:example:bob5627', true)). +answer('urn:example:complies'('urn:example:bob5628', true)). +answer('urn:example:complies'('urn:example:bob5629', true)). +answer('urn:example:complies'('urn:example:bob5630', true)). +answer('urn:example:complies'('urn:example:bob5631', true)). +answer('urn:example:complies'('urn:example:bob5632', true)). +answer('urn:example:complies'('urn:example:bob5633', true)). +answer('urn:example:complies'('urn:example:bob5634', true)). +answer('urn:example:complies'('urn:example:bob5635', true)). +answer('urn:example:complies'('urn:example:bob5636', true)). +answer('urn:example:complies'('urn:example:bob5637', true)). +answer('urn:example:complies'('urn:example:bob5638', true)). +answer('urn:example:complies'('urn:example:bob5639', true)). +answer('urn:example:complies'('urn:example:bob5640', true)). +answer('urn:example:complies'('urn:example:bob5641', true)). +answer('urn:example:complies'('urn:example:bob5642', true)). +answer('urn:example:complies'('urn:example:bob5643', true)). +answer('urn:example:complies'('urn:example:bob5644', true)). +answer('urn:example:complies'('urn:example:bob5645', true)). +answer('urn:example:complies'('urn:example:bob5646', true)). +answer('urn:example:complies'('urn:example:bob5647', true)). +answer('urn:example:complies'('urn:example:bob5648', true)). +answer('urn:example:complies'('urn:example:bob5649', true)). +answer('urn:example:complies'('urn:example:bob5650', true)). +answer('urn:example:complies'('urn:example:bob5651', true)). +answer('urn:example:complies'('urn:example:bob5652', true)). +answer('urn:example:complies'('urn:example:bob5653', true)). +answer('urn:example:complies'('urn:example:bob5654', true)). +answer('urn:example:complies'('urn:example:bob5655', true)). +answer('urn:example:complies'('urn:example:bob5656', true)). +answer('urn:example:complies'('urn:example:bob5657', true)). +answer('urn:example:complies'('urn:example:bob5658', true)). +answer('urn:example:complies'('urn:example:bob5659', true)). +answer('urn:example:complies'('urn:example:bob5660', true)). +answer('urn:example:complies'('urn:example:bob5661', true)). +answer('urn:example:complies'('urn:example:bob5662', true)). +answer('urn:example:complies'('urn:example:bob5663', true)). +answer('urn:example:complies'('urn:example:bob5664', true)). +answer('urn:example:complies'('urn:example:bob5665', true)). +answer('urn:example:complies'('urn:example:bob5666', true)). +answer('urn:example:complies'('urn:example:bob5667', true)). +answer('urn:example:complies'('urn:example:bob5668', true)). +answer('urn:example:complies'('urn:example:bob5669', true)). +answer('urn:example:complies'('urn:example:bob5670', true)). +answer('urn:example:complies'('urn:example:bob5671', true)). +answer('urn:example:complies'('urn:example:bob5672', true)). +answer('urn:example:complies'('urn:example:bob5673', true)). +answer('urn:example:complies'('urn:example:bob5674', true)). +answer('urn:example:complies'('urn:example:bob5675', true)). +answer('urn:example:complies'('urn:example:bob5676', true)). +answer('urn:example:complies'('urn:example:bob5677', true)). +answer('urn:example:complies'('urn:example:bob5678', true)). +answer('urn:example:complies'('urn:example:bob5679', true)). +answer('urn:example:complies'('urn:example:bob5680', true)). +answer('urn:example:complies'('urn:example:bob5681', true)). +answer('urn:example:complies'('urn:example:bob5682', true)). +answer('urn:example:complies'('urn:example:bob5683', true)). +answer('urn:example:complies'('urn:example:bob5684', true)). +answer('urn:example:complies'('urn:example:bob5685', true)). +answer('urn:example:complies'('urn:example:bob5686', true)). +answer('urn:example:complies'('urn:example:bob5687', true)). +answer('urn:example:complies'('urn:example:bob5688', true)). +answer('urn:example:complies'('urn:example:bob5689', true)). +answer('urn:example:complies'('urn:example:bob5690', true)). +answer('urn:example:complies'('urn:example:bob5691', true)). +answer('urn:example:complies'('urn:example:bob5692', true)). +answer('urn:example:complies'('urn:example:bob5693', true)). +answer('urn:example:complies'('urn:example:bob5694', true)). +answer('urn:example:complies'('urn:example:bob5695', true)). +answer('urn:example:complies'('urn:example:bob5696', true)). +answer('urn:example:complies'('urn:example:bob5697', true)). +answer('urn:example:complies'('urn:example:bob5698', true)). +answer('urn:example:complies'('urn:example:bob5699', true)). +answer('urn:example:complies'('urn:example:bob5700', true)). +answer('urn:example:complies'('urn:example:bob5701', true)). +answer('urn:example:complies'('urn:example:bob5702', true)). +answer('urn:example:complies'('urn:example:bob5703', true)). +answer('urn:example:complies'('urn:example:bob5704', true)). +answer('urn:example:complies'('urn:example:bob5705', true)). +answer('urn:example:complies'('urn:example:bob5706', true)). +answer('urn:example:complies'('urn:example:bob5707', true)). +answer('urn:example:complies'('urn:example:bob5708', true)). +answer('urn:example:complies'('urn:example:bob5709', true)). +answer('urn:example:complies'('urn:example:bob5710', true)). +answer('urn:example:complies'('urn:example:bob5711', true)). +answer('urn:example:complies'('urn:example:bob5712', true)). +answer('urn:example:complies'('urn:example:bob5713', true)). +answer('urn:example:complies'('urn:example:bob5714', true)). +answer('urn:example:complies'('urn:example:bob5715', true)). +answer('urn:example:complies'('urn:example:bob5716', true)). +answer('urn:example:complies'('urn:example:bob5717', true)). +answer('urn:example:complies'('urn:example:bob5718', true)). +answer('urn:example:complies'('urn:example:bob5719', true)). +answer('urn:example:complies'('urn:example:bob5720', true)). +answer('urn:example:complies'('urn:example:bob5721', true)). +answer('urn:example:complies'('urn:example:bob5722', true)). +answer('urn:example:complies'('urn:example:bob5723', true)). +answer('urn:example:complies'('urn:example:bob5724', true)). +answer('urn:example:complies'('urn:example:bob5725', true)). +answer('urn:example:complies'('urn:example:bob5726', true)). +answer('urn:example:complies'('urn:example:bob5727', true)). +answer('urn:example:complies'('urn:example:bob5728', true)). +answer('urn:example:complies'('urn:example:bob5729', true)). +answer('urn:example:complies'('urn:example:bob5730', true)). +answer('urn:example:complies'('urn:example:bob5731', true)). +answer('urn:example:complies'('urn:example:bob5732', true)). +answer('urn:example:complies'('urn:example:bob5733', true)). +answer('urn:example:complies'('urn:example:bob5734', true)). +answer('urn:example:complies'('urn:example:bob5735', true)). +answer('urn:example:complies'('urn:example:bob5736', true)). +answer('urn:example:complies'('urn:example:bob5737', true)). +answer('urn:example:complies'('urn:example:bob5738', true)). +answer('urn:example:complies'('urn:example:bob5739', true)). +answer('urn:example:complies'('urn:example:bob5740', true)). +answer('urn:example:complies'('urn:example:bob5741', true)). +answer('urn:example:complies'('urn:example:bob5742', true)). +answer('urn:example:complies'('urn:example:bob5743', true)). +answer('urn:example:complies'('urn:example:bob5744', true)). +answer('urn:example:complies'('urn:example:bob5745', true)). +answer('urn:example:complies'('urn:example:bob5746', true)). +answer('urn:example:complies'('urn:example:bob5747', true)). +answer('urn:example:complies'('urn:example:bob5748', true)). +answer('urn:example:complies'('urn:example:bob5749', true)). +answer('urn:example:complies'('urn:example:bob5750', true)). +answer('urn:example:complies'('urn:example:bob5751', true)). +answer('urn:example:complies'('urn:example:bob5752', true)). +answer('urn:example:complies'('urn:example:bob5753', true)). +answer('urn:example:complies'('urn:example:bob5754', true)). +answer('urn:example:complies'('urn:example:bob5755', true)). +answer('urn:example:complies'('urn:example:bob5756', true)). +answer('urn:example:complies'('urn:example:bob5757', true)). +answer('urn:example:complies'('urn:example:bob5758', true)). +answer('urn:example:complies'('urn:example:bob5759', true)). +answer('urn:example:complies'('urn:example:bob5760', true)). +answer('urn:example:complies'('urn:example:bob5761', true)). +answer('urn:example:complies'('urn:example:bob5762', true)). +answer('urn:example:complies'('urn:example:bob5763', true)). +answer('urn:example:complies'('urn:example:bob5764', true)). +answer('urn:example:complies'('urn:example:bob5765', true)). +answer('urn:example:complies'('urn:example:bob5766', true)). +answer('urn:example:complies'('urn:example:bob5767', true)). +answer('urn:example:complies'('urn:example:bob5768', true)). +answer('urn:example:complies'('urn:example:bob5769', true)). +answer('urn:example:complies'('urn:example:bob5770', true)). +answer('urn:example:complies'('urn:example:bob5771', true)). +answer('urn:example:complies'('urn:example:bob5772', true)). +answer('urn:example:complies'('urn:example:bob5773', true)). +answer('urn:example:complies'('urn:example:bob5774', true)). +answer('urn:example:complies'('urn:example:bob5775', true)). +answer('urn:example:complies'('urn:example:bob5776', true)). +answer('urn:example:complies'('urn:example:bob5777', true)). +answer('urn:example:complies'('urn:example:bob5778', true)). +answer('urn:example:complies'('urn:example:bob5779', true)). +answer('urn:example:complies'('urn:example:bob5780', true)). +answer('urn:example:complies'('urn:example:bob5781', true)). +answer('urn:example:complies'('urn:example:bob5782', true)). +answer('urn:example:complies'('urn:example:bob5783', true)). +answer('urn:example:complies'('urn:example:bob5784', true)). +answer('urn:example:complies'('urn:example:bob5785', true)). +answer('urn:example:complies'('urn:example:bob5786', true)). +answer('urn:example:complies'('urn:example:bob5787', true)). +answer('urn:example:complies'('urn:example:bob5788', true)). +answer('urn:example:complies'('urn:example:bob5789', true)). +answer('urn:example:complies'('urn:example:bob5790', true)). +answer('urn:example:complies'('urn:example:bob5791', true)). +answer('urn:example:complies'('urn:example:bob5792', true)). +answer('urn:example:complies'('urn:example:bob5793', true)). +answer('urn:example:complies'('urn:example:bob5794', true)). +answer('urn:example:complies'('urn:example:bob5795', true)). +answer('urn:example:complies'('urn:example:bob5796', true)). +answer('urn:example:complies'('urn:example:bob5797', true)). +answer('urn:example:complies'('urn:example:bob5798', true)). +answer('urn:example:complies'('urn:example:bob5799', true)). +answer('urn:example:complies'('urn:example:bob5800', true)). +answer('urn:example:complies'('urn:example:bob5801', true)). +answer('urn:example:complies'('urn:example:bob5802', true)). +answer('urn:example:complies'('urn:example:bob5803', true)). +answer('urn:example:complies'('urn:example:bob5804', true)). +answer('urn:example:complies'('urn:example:bob5805', true)). +answer('urn:example:complies'('urn:example:bob5806', true)). +answer('urn:example:complies'('urn:example:bob5807', true)). +answer('urn:example:complies'('urn:example:bob5808', true)). +answer('urn:example:complies'('urn:example:bob5809', true)). +answer('urn:example:complies'('urn:example:bob5810', true)). +answer('urn:example:complies'('urn:example:bob5811', true)). +answer('urn:example:complies'('urn:example:bob5812', true)). +answer('urn:example:complies'('urn:example:bob5813', true)). +answer('urn:example:complies'('urn:example:bob5814', true)). +answer('urn:example:complies'('urn:example:bob5815', true)). +answer('urn:example:complies'('urn:example:bob5816', true)). +answer('urn:example:complies'('urn:example:bob5817', true)). +answer('urn:example:complies'('urn:example:bob5818', true)). +answer('urn:example:complies'('urn:example:bob5819', true)). +answer('urn:example:complies'('urn:example:bob5820', true)). +answer('urn:example:complies'('urn:example:bob5821', true)). +answer('urn:example:complies'('urn:example:bob5822', true)). +answer('urn:example:complies'('urn:example:bob5823', true)). +answer('urn:example:complies'('urn:example:bob5824', true)). +answer('urn:example:complies'('urn:example:bob5825', true)). +answer('urn:example:complies'('urn:example:bob5826', true)). +answer('urn:example:complies'('urn:example:bob5827', true)). +answer('urn:example:complies'('urn:example:bob5828', true)). +answer('urn:example:complies'('urn:example:bob5829', true)). +answer('urn:example:complies'('urn:example:bob5830', true)). +answer('urn:example:complies'('urn:example:bob5831', true)). +answer('urn:example:complies'('urn:example:bob5832', true)). +answer('urn:example:complies'('urn:example:bob5833', true)). +answer('urn:example:complies'('urn:example:bob5834', true)). +answer('urn:example:complies'('urn:example:bob5835', true)). +answer('urn:example:complies'('urn:example:bob5836', true)). +answer('urn:example:complies'('urn:example:bob5837', true)). +answer('urn:example:complies'('urn:example:bob5838', true)). +answer('urn:example:complies'('urn:example:bob5839', true)). +answer('urn:example:complies'('urn:example:bob5840', true)). +answer('urn:example:complies'('urn:example:bob5841', true)). +answer('urn:example:complies'('urn:example:bob5842', true)). +answer('urn:example:complies'('urn:example:bob5843', true)). +answer('urn:example:complies'('urn:example:bob5844', true)). +answer('urn:example:complies'('urn:example:bob5845', true)). +answer('urn:example:complies'('urn:example:bob5846', true)). +answer('urn:example:complies'('urn:example:bob5847', true)). +answer('urn:example:complies'('urn:example:bob5848', true)). +answer('urn:example:complies'('urn:example:bob5849', true)). +answer('urn:example:complies'('urn:example:bob5850', true)). +answer('urn:example:complies'('urn:example:bob5851', true)). +answer('urn:example:complies'('urn:example:bob5852', true)). +answer('urn:example:complies'('urn:example:bob5853', true)). +answer('urn:example:complies'('urn:example:bob5854', true)). +answer('urn:example:complies'('urn:example:bob5855', true)). +answer('urn:example:complies'('urn:example:bob5856', true)). +answer('urn:example:complies'('urn:example:bob5857', true)). +answer('urn:example:complies'('urn:example:bob5858', true)). +answer('urn:example:complies'('urn:example:bob5859', true)). +answer('urn:example:complies'('urn:example:bob5860', true)). +answer('urn:example:complies'('urn:example:bob5861', true)). +answer('urn:example:complies'('urn:example:bob5862', true)). +answer('urn:example:complies'('urn:example:bob5863', true)). +answer('urn:example:complies'('urn:example:bob5864', true)). +answer('urn:example:complies'('urn:example:bob5865', true)). +answer('urn:example:complies'('urn:example:bob5866', true)). +answer('urn:example:complies'('urn:example:bob5867', true)). +answer('urn:example:complies'('urn:example:bob5868', true)). +answer('urn:example:complies'('urn:example:bob5869', true)). +answer('urn:example:complies'('urn:example:bob5870', true)). +answer('urn:example:complies'('urn:example:bob5871', true)). +answer('urn:example:complies'('urn:example:bob5872', true)). +answer('urn:example:complies'('urn:example:bob5873', true)). +answer('urn:example:complies'('urn:example:bob5874', true)). +answer('urn:example:complies'('urn:example:bob5875', true)). +answer('urn:example:complies'('urn:example:bob5876', true)). +answer('urn:example:complies'('urn:example:bob5877', true)). +answer('urn:example:complies'('urn:example:bob5878', true)). +answer('urn:example:complies'('urn:example:bob5879', true)). +answer('urn:example:complies'('urn:example:bob5880', true)). +answer('urn:example:complies'('urn:example:bob5881', true)). +answer('urn:example:complies'('urn:example:bob5882', true)). +answer('urn:example:complies'('urn:example:bob5883', true)). +answer('urn:example:complies'('urn:example:bob5884', true)). +answer('urn:example:complies'('urn:example:bob5885', true)). +answer('urn:example:complies'('urn:example:bob5886', true)). +answer('urn:example:complies'('urn:example:bob5887', true)). +answer('urn:example:complies'('urn:example:bob5888', true)). +answer('urn:example:complies'('urn:example:bob5889', true)). +answer('urn:example:complies'('urn:example:bob5890', true)). +answer('urn:example:complies'('urn:example:bob5891', true)). +answer('urn:example:complies'('urn:example:bob5892', true)). +answer('urn:example:complies'('urn:example:bob5893', true)). +answer('urn:example:complies'('urn:example:bob5894', true)). +answer('urn:example:complies'('urn:example:bob5895', true)). +answer('urn:example:complies'('urn:example:bob5896', true)). +answer('urn:example:complies'('urn:example:bob5897', true)). +answer('urn:example:complies'('urn:example:bob5898', true)). +answer('urn:example:complies'('urn:example:bob5899', true)). +answer('urn:example:complies'('urn:example:bob5900', true)). +answer('urn:example:complies'('urn:example:bob5901', true)). +answer('urn:example:complies'('urn:example:bob5902', true)). +answer('urn:example:complies'('urn:example:bob5903', true)). +answer('urn:example:complies'('urn:example:bob5904', true)). +answer('urn:example:complies'('urn:example:bob5905', true)). +answer('urn:example:complies'('urn:example:bob5906', true)). +answer('urn:example:complies'('urn:example:bob5907', true)). +answer('urn:example:complies'('urn:example:bob5908', true)). +answer('urn:example:complies'('urn:example:bob5909', true)). +answer('urn:example:complies'('urn:example:bob5910', true)). +answer('urn:example:complies'('urn:example:bob5911', true)). +answer('urn:example:complies'('urn:example:bob5912', true)). +answer('urn:example:complies'('urn:example:bob5913', true)). +answer('urn:example:complies'('urn:example:bob5914', true)). +answer('urn:example:complies'('urn:example:bob5915', true)). +answer('urn:example:complies'('urn:example:bob5916', true)). +answer('urn:example:complies'('urn:example:bob5917', true)). +answer('urn:example:complies'('urn:example:bob5918', true)). +answer('urn:example:complies'('urn:example:bob5919', true)). +answer('urn:example:complies'('urn:example:bob5920', true)). +answer('urn:example:complies'('urn:example:bob5921', true)). +answer('urn:example:complies'('urn:example:bob5922', true)). +answer('urn:example:complies'('urn:example:bob5923', true)). +answer('urn:example:complies'('urn:example:bob5924', true)). +answer('urn:example:complies'('urn:example:bob5925', true)). +answer('urn:example:complies'('urn:example:bob5926', true)). +answer('urn:example:complies'('urn:example:bob5927', true)). +answer('urn:example:complies'('urn:example:bob5928', true)). +answer('urn:example:complies'('urn:example:bob5929', true)). +answer('urn:example:complies'('urn:example:bob5930', true)). +answer('urn:example:complies'('urn:example:bob5931', true)). +answer('urn:example:complies'('urn:example:bob5932', true)). +answer('urn:example:complies'('urn:example:bob5933', true)). +answer('urn:example:complies'('urn:example:bob5934', true)). +answer('urn:example:complies'('urn:example:bob5935', true)). +answer('urn:example:complies'('urn:example:bob5936', true)). +answer('urn:example:complies'('urn:example:bob5937', true)). +answer('urn:example:complies'('urn:example:bob5938', true)). +answer('urn:example:complies'('urn:example:bob5939', true)). +answer('urn:example:complies'('urn:example:bob5940', true)). +answer('urn:example:complies'('urn:example:bob5941', true)). +answer('urn:example:complies'('urn:example:bob5942', true)). +answer('urn:example:complies'('urn:example:bob5943', true)). +answer('urn:example:complies'('urn:example:bob5944', true)). +answer('urn:example:complies'('urn:example:bob5945', true)). +answer('urn:example:complies'('urn:example:bob5946', true)). +answer('urn:example:complies'('urn:example:bob5947', true)). +answer('urn:example:complies'('urn:example:bob5948', true)). +answer('urn:example:complies'('urn:example:bob5949', true)). +answer('urn:example:complies'('urn:example:bob5950', true)). +answer('urn:example:complies'('urn:example:bob5951', true)). +answer('urn:example:complies'('urn:example:bob5952', true)). +answer('urn:example:complies'('urn:example:bob5953', true)). +answer('urn:example:complies'('urn:example:bob5954', true)). +answer('urn:example:complies'('urn:example:bob5955', true)). +answer('urn:example:complies'('urn:example:bob5956', true)). +answer('urn:example:complies'('urn:example:bob5957', true)). +answer('urn:example:complies'('urn:example:bob5958', true)). +answer('urn:example:complies'('urn:example:bob5959', true)). +answer('urn:example:complies'('urn:example:bob5960', true)). +answer('urn:example:complies'('urn:example:bob5961', true)). +answer('urn:example:complies'('urn:example:bob5962', true)). +answer('urn:example:complies'('urn:example:bob5963', true)). +answer('urn:example:complies'('urn:example:bob5964', true)). +answer('urn:example:complies'('urn:example:bob5965', true)). +answer('urn:example:complies'('urn:example:bob5966', true)). +answer('urn:example:complies'('urn:example:bob5967', true)). +answer('urn:example:complies'('urn:example:bob5968', true)). +answer('urn:example:complies'('urn:example:bob5969', true)). +answer('urn:example:complies'('urn:example:bob5970', true)). +answer('urn:example:complies'('urn:example:bob5971', true)). +answer('urn:example:complies'('urn:example:bob5972', true)). +answer('urn:example:complies'('urn:example:bob5973', true)). +answer('urn:example:complies'('urn:example:bob5974', true)). +answer('urn:example:complies'('urn:example:bob5975', true)). +answer('urn:example:complies'('urn:example:bob5976', true)). +answer('urn:example:complies'('urn:example:bob5977', true)). +answer('urn:example:complies'('urn:example:bob5978', true)). +answer('urn:example:complies'('urn:example:bob5979', true)). +answer('urn:example:complies'('urn:example:bob5980', true)). +answer('urn:example:complies'('urn:example:bob5981', true)). +answer('urn:example:complies'('urn:example:bob5982', true)). +answer('urn:example:complies'('urn:example:bob5983', true)). +answer('urn:example:complies'('urn:example:bob5984', true)). +answer('urn:example:complies'('urn:example:bob5985', true)). +answer('urn:example:complies'('urn:example:bob5986', true)). +answer('urn:example:complies'('urn:example:bob5987', true)). +answer('urn:example:complies'('urn:example:bob5988', true)). +answer('urn:example:complies'('urn:example:bob5989', true)). +answer('urn:example:complies'('urn:example:bob5990', true)). +answer('urn:example:complies'('urn:example:bob5991', true)). +answer('urn:example:complies'('urn:example:bob5992', true)). +answer('urn:example:complies'('urn:example:bob5993', true)). +answer('urn:example:complies'('urn:example:bob5994', true)). +answer('urn:example:complies'('urn:example:bob5995', true)). +answer('urn:example:complies'('urn:example:bob5996', true)). +answer('urn:example:complies'('urn:example:bob5997', true)). +answer('urn:example:complies'('urn:example:bob5998', true)). +answer('urn:example:complies'('urn:example:bob5999', true)). +answer('urn:example:complies'('urn:example:bob6000', true)). +answer('urn:example:complies'('urn:example:bob6001', true)). +answer('urn:example:complies'('urn:example:bob6002', true)). +answer('urn:example:complies'('urn:example:bob6003', true)). +answer('urn:example:complies'('urn:example:bob6004', true)). +answer('urn:example:complies'('urn:example:bob6005', true)). +answer('urn:example:complies'('urn:example:bob6006', true)). +answer('urn:example:complies'('urn:example:bob6007', true)). +answer('urn:example:complies'('urn:example:bob6008', true)). +answer('urn:example:complies'('urn:example:bob6009', true)). +answer('urn:example:complies'('urn:example:bob6010', true)). +answer('urn:example:complies'('urn:example:bob6011', true)). +answer('urn:example:complies'('urn:example:bob6012', true)). +answer('urn:example:complies'('urn:example:bob6013', true)). +answer('urn:example:complies'('urn:example:bob6014', true)). +answer('urn:example:complies'('urn:example:bob6015', true)). +answer('urn:example:complies'('urn:example:bob6016', true)). +answer('urn:example:complies'('urn:example:bob6017', true)). +answer('urn:example:complies'('urn:example:bob6018', true)). +answer('urn:example:complies'('urn:example:bob6019', true)). +answer('urn:example:complies'('urn:example:bob6020', true)). +answer('urn:example:complies'('urn:example:bob6021', true)). +answer('urn:example:complies'('urn:example:bob6022', true)). +answer('urn:example:complies'('urn:example:bob6023', true)). +answer('urn:example:complies'('urn:example:bob6024', true)). +answer('urn:example:complies'('urn:example:bob6025', true)). +answer('urn:example:complies'('urn:example:bob6026', true)). +answer('urn:example:complies'('urn:example:bob6027', true)). +answer('urn:example:complies'('urn:example:bob6028', true)). +answer('urn:example:complies'('urn:example:bob6029', true)). +answer('urn:example:complies'('urn:example:bob6030', true)). +answer('urn:example:complies'('urn:example:bob6031', true)). +answer('urn:example:complies'('urn:example:bob6032', true)). +answer('urn:example:complies'('urn:example:bob6033', true)). +answer('urn:example:complies'('urn:example:bob6034', true)). +answer('urn:example:complies'('urn:example:bob6035', true)). +answer('urn:example:complies'('urn:example:bob6036', true)). +answer('urn:example:complies'('urn:example:bob6037', true)). +answer('urn:example:complies'('urn:example:bob6038', true)). +answer('urn:example:complies'('urn:example:bob6039', true)). +answer('urn:example:complies'('urn:example:bob6040', true)). +answer('urn:example:complies'('urn:example:bob6041', true)). +answer('urn:example:complies'('urn:example:bob6042', true)). +answer('urn:example:complies'('urn:example:bob6043', true)). +answer('urn:example:complies'('urn:example:bob6044', true)). +answer('urn:example:complies'('urn:example:bob6045', true)). +answer('urn:example:complies'('urn:example:bob6046', true)). +answer('urn:example:complies'('urn:example:bob6047', true)). +answer('urn:example:complies'('urn:example:bob6048', true)). +answer('urn:example:complies'('urn:example:bob6049', true)). +answer('urn:example:complies'('urn:example:bob6050', true)). +answer('urn:example:complies'('urn:example:bob6051', true)). +answer('urn:example:complies'('urn:example:bob6052', true)). +answer('urn:example:complies'('urn:example:bob6053', true)). +answer('urn:example:complies'('urn:example:bob6054', true)). +answer('urn:example:complies'('urn:example:bob6055', true)). +answer('urn:example:complies'('urn:example:bob6056', true)). +answer('urn:example:complies'('urn:example:bob6057', true)). +answer('urn:example:complies'('urn:example:bob6058', true)). +answer('urn:example:complies'('urn:example:bob6059', true)). +answer('urn:example:complies'('urn:example:bob6060', true)). +answer('urn:example:complies'('urn:example:bob6061', true)). +answer('urn:example:complies'('urn:example:bob6062', true)). +answer('urn:example:complies'('urn:example:bob6063', true)). +answer('urn:example:complies'('urn:example:bob6064', true)). +answer('urn:example:complies'('urn:example:bob6065', true)). +answer('urn:example:complies'('urn:example:bob6066', true)). +answer('urn:example:complies'('urn:example:bob6067', true)). +answer('urn:example:complies'('urn:example:bob6068', true)). +answer('urn:example:complies'('urn:example:bob6069', true)). +answer('urn:example:complies'('urn:example:bob6070', true)). +answer('urn:example:complies'('urn:example:bob6071', true)). +answer('urn:example:complies'('urn:example:bob6072', true)). +answer('urn:example:complies'('urn:example:bob6073', true)). +answer('urn:example:complies'('urn:example:bob6074', true)). +answer('urn:example:complies'('urn:example:bob6075', true)). +answer('urn:example:complies'('urn:example:bob6076', true)). +answer('urn:example:complies'('urn:example:bob6077', true)). +answer('urn:example:complies'('urn:example:bob6078', true)). +answer('urn:example:complies'('urn:example:bob6079', true)). +answer('urn:example:complies'('urn:example:bob6080', true)). +answer('urn:example:complies'('urn:example:bob6081', true)). +answer('urn:example:complies'('urn:example:bob6082', true)). +answer('urn:example:complies'('urn:example:bob6083', true)). +answer('urn:example:complies'('urn:example:bob6084', true)). +answer('urn:example:complies'('urn:example:bob6085', true)). +answer('urn:example:complies'('urn:example:bob6086', true)). +answer('urn:example:complies'('urn:example:bob6087', true)). +answer('urn:example:complies'('urn:example:bob6088', true)). +answer('urn:example:complies'('urn:example:bob6089', true)). +answer('urn:example:complies'('urn:example:bob6090', true)). +answer('urn:example:complies'('urn:example:bob6091', true)). +answer('urn:example:complies'('urn:example:bob6092', true)). +answer('urn:example:complies'('urn:example:bob6093', true)). +answer('urn:example:complies'('urn:example:bob6094', true)). +answer('urn:example:complies'('urn:example:bob6095', true)). +answer('urn:example:complies'('urn:example:bob6096', true)). +answer('urn:example:complies'('urn:example:bob6097', true)). +answer('urn:example:complies'('urn:example:bob6098', true)). +answer('urn:example:complies'('urn:example:bob6099', true)). +answer('urn:example:complies'('urn:example:bob6100', true)). +answer('urn:example:complies'('urn:example:bob6101', true)). +answer('urn:example:complies'('urn:example:bob6102', true)). +answer('urn:example:complies'('urn:example:bob6103', true)). +answer('urn:example:complies'('urn:example:bob6104', true)). +answer('urn:example:complies'('urn:example:bob6105', true)). +answer('urn:example:complies'('urn:example:bob6106', true)). +answer('urn:example:complies'('urn:example:bob6107', true)). +answer('urn:example:complies'('urn:example:bob6108', true)). +answer('urn:example:complies'('urn:example:bob6109', true)). +answer('urn:example:complies'('urn:example:bob6110', true)). +answer('urn:example:complies'('urn:example:bob6111', true)). +answer('urn:example:complies'('urn:example:bob6112', true)). +answer('urn:example:complies'('urn:example:bob6113', true)). +answer('urn:example:complies'('urn:example:bob6114', true)). +answer('urn:example:complies'('urn:example:bob6115', true)). +answer('urn:example:complies'('urn:example:bob6116', true)). +answer('urn:example:complies'('urn:example:bob6117', true)). +answer('urn:example:complies'('urn:example:bob6118', true)). +answer('urn:example:complies'('urn:example:bob6119', true)). +answer('urn:example:complies'('urn:example:bob6120', true)). +answer('urn:example:complies'('urn:example:bob6121', true)). +answer('urn:example:complies'('urn:example:bob6122', true)). +answer('urn:example:complies'('urn:example:bob6123', true)). +answer('urn:example:complies'('urn:example:bob6124', true)). +answer('urn:example:complies'('urn:example:bob6125', true)). +answer('urn:example:complies'('urn:example:bob6126', true)). +answer('urn:example:complies'('urn:example:bob6127', true)). +answer('urn:example:complies'('urn:example:bob6128', true)). +answer('urn:example:complies'('urn:example:bob6129', true)). +answer('urn:example:complies'('urn:example:bob6130', true)). +answer('urn:example:complies'('urn:example:bob6131', true)). +answer('urn:example:complies'('urn:example:bob6132', true)). +answer('urn:example:complies'('urn:example:bob6133', true)). +answer('urn:example:complies'('urn:example:bob6134', true)). +answer('urn:example:complies'('urn:example:bob6135', true)). +answer('urn:example:complies'('urn:example:bob6136', true)). +answer('urn:example:complies'('urn:example:bob6137', true)). +answer('urn:example:complies'('urn:example:bob6138', true)). +answer('urn:example:complies'('urn:example:bob6139', true)). +answer('urn:example:complies'('urn:example:bob6140', true)). +answer('urn:example:complies'('urn:example:bob6141', true)). +answer('urn:example:complies'('urn:example:bob6142', true)). +answer('urn:example:complies'('urn:example:bob6143', true)). +answer('urn:example:complies'('urn:example:bob6144', true)). +answer('urn:example:complies'('urn:example:bob6145', true)). +answer('urn:example:complies'('urn:example:bob6146', true)). +answer('urn:example:complies'('urn:example:bob6147', true)). +answer('urn:example:complies'('urn:example:bob6148', true)). +answer('urn:example:complies'('urn:example:bob6149', true)). +answer('urn:example:complies'('urn:example:bob6150', true)). +answer('urn:example:complies'('urn:example:bob6151', true)). +answer('urn:example:complies'('urn:example:bob6152', true)). +answer('urn:example:complies'('urn:example:bob6153', true)). +answer('urn:example:complies'('urn:example:bob6154', true)). +answer('urn:example:complies'('urn:example:bob6155', true)). +answer('urn:example:complies'('urn:example:bob6156', true)). +answer('urn:example:complies'('urn:example:bob6157', true)). +answer('urn:example:complies'('urn:example:bob6158', true)). +answer('urn:example:complies'('urn:example:bob6159', true)). +answer('urn:example:complies'('urn:example:bob6160', true)). +answer('urn:example:complies'('urn:example:bob6161', true)). +answer('urn:example:complies'('urn:example:bob6162', true)). +answer('urn:example:complies'('urn:example:bob6163', true)). +answer('urn:example:complies'('urn:example:bob6164', true)). +answer('urn:example:complies'('urn:example:bob6165', true)). +answer('urn:example:complies'('urn:example:bob6166', true)). +answer('urn:example:complies'('urn:example:bob6167', true)). +answer('urn:example:complies'('urn:example:bob6168', true)). +answer('urn:example:complies'('urn:example:bob6169', true)). +answer('urn:example:complies'('urn:example:bob6170', true)). +answer('urn:example:complies'('urn:example:bob6171', true)). +answer('urn:example:complies'('urn:example:bob6172', true)). +answer('urn:example:complies'('urn:example:bob6173', true)). +answer('urn:example:complies'('urn:example:bob6174', true)). +answer('urn:example:complies'('urn:example:bob6175', true)). +answer('urn:example:complies'('urn:example:bob6176', true)). +answer('urn:example:complies'('urn:example:bob6177', true)). +answer('urn:example:complies'('urn:example:bob6178', true)). +answer('urn:example:complies'('urn:example:bob6179', true)). +answer('urn:example:complies'('urn:example:bob6180', true)). +answer('urn:example:complies'('urn:example:bob6181', true)). +answer('urn:example:complies'('urn:example:bob6182', true)). +answer('urn:example:complies'('urn:example:bob6183', true)). +answer('urn:example:complies'('urn:example:bob6184', true)). +answer('urn:example:complies'('urn:example:bob6185', true)). +answer('urn:example:complies'('urn:example:bob6186', true)). +answer('urn:example:complies'('urn:example:bob6187', true)). +answer('urn:example:complies'('urn:example:bob6188', true)). +answer('urn:example:complies'('urn:example:bob6189', true)). +answer('urn:example:complies'('urn:example:bob6190', true)). +answer('urn:example:complies'('urn:example:bob6191', true)). +answer('urn:example:complies'('urn:example:bob6192', true)). +answer('urn:example:complies'('urn:example:bob6193', true)). +answer('urn:example:complies'('urn:example:bob6194', true)). +answer('urn:example:complies'('urn:example:bob6195', true)). +answer('urn:example:complies'('urn:example:bob6196', true)). +answer('urn:example:complies'('urn:example:bob6197', true)). +answer('urn:example:complies'('urn:example:bob6198', true)). +answer('urn:example:complies'('urn:example:bob6199', true)). +answer('urn:example:complies'('urn:example:bob6200', true)). +answer('urn:example:complies'('urn:example:bob6201', true)). +answer('urn:example:complies'('urn:example:bob6202', true)). +answer('urn:example:complies'('urn:example:bob6203', true)). +answer('urn:example:complies'('urn:example:bob6204', true)). +answer('urn:example:complies'('urn:example:bob6205', true)). +answer('urn:example:complies'('urn:example:bob6206', true)). +answer('urn:example:complies'('urn:example:bob6207', true)). +answer('urn:example:complies'('urn:example:bob6208', true)). +answer('urn:example:complies'('urn:example:bob6209', true)). +answer('urn:example:complies'('urn:example:bob6210', true)). +answer('urn:example:complies'('urn:example:bob6211', true)). +answer('urn:example:complies'('urn:example:bob6212', true)). +answer('urn:example:complies'('urn:example:bob6213', true)). +answer('urn:example:complies'('urn:example:bob6214', true)). +answer('urn:example:complies'('urn:example:bob6215', true)). +answer('urn:example:complies'('urn:example:bob6216', true)). +answer('urn:example:complies'('urn:example:bob6217', true)). +answer('urn:example:complies'('urn:example:bob6218', true)). +answer('urn:example:complies'('urn:example:bob6219', true)). +answer('urn:example:complies'('urn:example:bob6220', true)). +answer('urn:example:complies'('urn:example:bob6221', true)). +answer('urn:example:complies'('urn:example:bob6222', true)). +answer('urn:example:complies'('urn:example:bob6223', true)). +answer('urn:example:complies'('urn:example:bob6224', true)). +answer('urn:example:complies'('urn:example:bob6225', true)). +answer('urn:example:complies'('urn:example:bob6226', true)). +answer('urn:example:complies'('urn:example:bob6227', true)). +answer('urn:example:complies'('urn:example:bob6228', true)). +answer('urn:example:complies'('urn:example:bob6229', true)). +answer('urn:example:complies'('urn:example:bob6230', true)). +answer('urn:example:complies'('urn:example:bob6231', true)). +answer('urn:example:complies'('urn:example:bob6232', true)). +answer('urn:example:complies'('urn:example:bob6233', true)). +answer('urn:example:complies'('urn:example:bob6234', true)). +answer('urn:example:complies'('urn:example:bob6235', true)). +answer('urn:example:complies'('urn:example:bob6236', true)). +answer('urn:example:complies'('urn:example:bob6237', true)). +answer('urn:example:complies'('urn:example:bob6238', true)). +answer('urn:example:complies'('urn:example:bob6239', true)). +answer('urn:example:complies'('urn:example:bob6240', true)). +answer('urn:example:complies'('urn:example:bob6241', true)). +answer('urn:example:complies'('urn:example:bob6242', true)). +answer('urn:example:complies'('urn:example:bob6243', true)). +answer('urn:example:complies'('urn:example:bob6244', true)). +answer('urn:example:complies'('urn:example:bob6245', true)). +answer('urn:example:complies'('urn:example:bob6246', true)). +answer('urn:example:complies'('urn:example:bob6247', true)). +answer('urn:example:complies'('urn:example:bob6248', true)). +answer('urn:example:complies'('urn:example:bob6249', true)). +answer('urn:example:complies'('urn:example:bob6250', true)). +answer('urn:example:complies'('urn:example:bob6251', true)). +answer('urn:example:complies'('urn:example:bob6252', true)). +answer('urn:example:complies'('urn:example:bob6253', true)). +answer('urn:example:complies'('urn:example:bob6254', true)). +answer('urn:example:complies'('urn:example:bob6255', true)). +answer('urn:example:complies'('urn:example:bob6256', true)). +answer('urn:example:complies'('urn:example:bob6257', true)). +answer('urn:example:complies'('urn:example:bob6258', true)). +answer('urn:example:complies'('urn:example:bob6259', true)). +answer('urn:example:complies'('urn:example:bob6260', true)). +answer('urn:example:complies'('urn:example:bob6261', true)). +answer('urn:example:complies'('urn:example:bob6262', true)). +answer('urn:example:complies'('urn:example:bob6263', true)). +answer('urn:example:complies'('urn:example:bob6264', true)). +answer('urn:example:complies'('urn:example:bob6265', true)). +answer('urn:example:complies'('urn:example:bob6266', true)). +answer('urn:example:complies'('urn:example:bob6267', true)). +answer('urn:example:complies'('urn:example:bob6268', true)). +answer('urn:example:complies'('urn:example:bob6269', true)). +answer('urn:example:complies'('urn:example:bob6270', true)). +answer('urn:example:complies'('urn:example:bob6271', true)). +answer('urn:example:complies'('urn:example:bob6272', true)). +answer('urn:example:complies'('urn:example:bob6273', true)). +answer('urn:example:complies'('urn:example:bob6274', true)). +answer('urn:example:complies'('urn:example:bob6275', true)). +answer('urn:example:complies'('urn:example:bob6276', true)). +answer('urn:example:complies'('urn:example:bob6277', true)). +answer('urn:example:complies'('urn:example:bob6278', true)). +answer('urn:example:complies'('urn:example:bob6279', true)). +answer('urn:example:complies'('urn:example:bob6280', true)). +answer('urn:example:complies'('urn:example:bob6281', true)). +answer('urn:example:complies'('urn:example:bob6282', true)). +answer('urn:example:complies'('urn:example:bob6283', true)). +answer('urn:example:complies'('urn:example:bob6284', true)). +answer('urn:example:complies'('urn:example:bob6285', true)). +answer('urn:example:complies'('urn:example:bob6286', true)). +answer('urn:example:complies'('urn:example:bob6287', true)). +answer('urn:example:complies'('urn:example:bob6288', true)). +answer('urn:example:complies'('urn:example:bob6289', true)). +answer('urn:example:complies'('urn:example:bob6290', true)). +answer('urn:example:complies'('urn:example:bob6291', true)). +answer('urn:example:complies'('urn:example:bob6292', true)). +answer('urn:example:complies'('urn:example:bob6293', true)). +answer('urn:example:complies'('urn:example:bob6294', true)). +answer('urn:example:complies'('urn:example:bob6295', true)). +answer('urn:example:complies'('urn:example:bob6296', true)). +answer('urn:example:complies'('urn:example:bob6297', true)). +answer('urn:example:complies'('urn:example:bob6298', true)). +answer('urn:example:complies'('urn:example:bob6299', true)). +answer('urn:example:complies'('urn:example:bob6300', true)). +answer('urn:example:complies'('urn:example:bob6301', true)). +answer('urn:example:complies'('urn:example:bob6302', true)). +answer('urn:example:complies'('urn:example:bob6303', true)). +answer('urn:example:complies'('urn:example:bob6304', true)). +answer('urn:example:complies'('urn:example:bob6305', true)). +answer('urn:example:complies'('urn:example:bob6306', true)). +answer('urn:example:complies'('urn:example:bob6307', true)). +answer('urn:example:complies'('urn:example:bob6308', true)). +answer('urn:example:complies'('urn:example:bob6309', true)). +answer('urn:example:complies'('urn:example:bob6310', true)). +answer('urn:example:complies'('urn:example:bob6311', true)). +answer('urn:example:complies'('urn:example:bob6312', true)). +answer('urn:example:complies'('urn:example:bob6313', true)). +answer('urn:example:complies'('urn:example:bob6314', true)). +answer('urn:example:complies'('urn:example:bob6315', true)). +answer('urn:example:complies'('urn:example:bob6316', true)). +answer('urn:example:complies'('urn:example:bob6317', true)). +answer('urn:example:complies'('urn:example:bob6318', true)). +answer('urn:example:complies'('urn:example:bob6319', true)). +answer('urn:example:complies'('urn:example:bob6320', true)). +answer('urn:example:complies'('urn:example:bob6321', true)). +answer('urn:example:complies'('urn:example:bob6322', true)). +answer('urn:example:complies'('urn:example:bob6323', true)). +answer('urn:example:complies'('urn:example:bob6324', true)). +answer('urn:example:complies'('urn:example:bob6325', true)). +answer('urn:example:complies'('urn:example:bob6326', true)). +answer('urn:example:complies'('urn:example:bob6327', true)). +answer('urn:example:complies'('urn:example:bob6328', true)). +answer('urn:example:complies'('urn:example:bob6329', true)). +answer('urn:example:complies'('urn:example:bob6330', true)). +answer('urn:example:complies'('urn:example:bob6331', true)). +answer('urn:example:complies'('urn:example:bob6332', true)). +answer('urn:example:complies'('urn:example:bob6333', true)). +answer('urn:example:complies'('urn:example:bob6334', true)). +answer('urn:example:complies'('urn:example:bob6335', true)). +answer('urn:example:complies'('urn:example:bob6336', true)). +answer('urn:example:complies'('urn:example:bob6337', true)). +answer('urn:example:complies'('urn:example:bob6338', true)). +answer('urn:example:complies'('urn:example:bob6339', true)). +answer('urn:example:complies'('urn:example:bob6340', true)). +answer('urn:example:complies'('urn:example:bob6341', true)). +answer('urn:example:complies'('urn:example:bob6342', true)). +answer('urn:example:complies'('urn:example:bob6343', true)). +answer('urn:example:complies'('urn:example:bob6344', true)). +answer('urn:example:complies'('urn:example:bob6345', true)). +answer('urn:example:complies'('urn:example:bob6346', true)). +answer('urn:example:complies'('urn:example:bob6347', true)). +answer('urn:example:complies'('urn:example:bob6348', true)). +answer('urn:example:complies'('urn:example:bob6349', true)). +answer('urn:example:complies'('urn:example:bob6350', true)). +answer('urn:example:complies'('urn:example:bob6351', true)). +answer('urn:example:complies'('urn:example:bob6352', true)). +answer('urn:example:complies'('urn:example:bob6353', true)). +answer('urn:example:complies'('urn:example:bob6354', true)). +answer('urn:example:complies'('urn:example:bob6355', true)). +answer('urn:example:complies'('urn:example:bob6356', true)). +answer('urn:example:complies'('urn:example:bob6357', true)). +answer('urn:example:complies'('urn:example:bob6358', true)). +answer('urn:example:complies'('urn:example:bob6359', true)). +answer('urn:example:complies'('urn:example:bob6360', true)). +answer('urn:example:complies'('urn:example:bob6361', true)). +answer('urn:example:complies'('urn:example:bob6362', true)). +answer('urn:example:complies'('urn:example:bob6363', true)). +answer('urn:example:complies'('urn:example:bob6364', true)). +answer('urn:example:complies'('urn:example:bob6365', true)). +answer('urn:example:complies'('urn:example:bob6366', true)). +answer('urn:example:complies'('urn:example:bob6367', true)). +answer('urn:example:complies'('urn:example:bob6368', true)). +answer('urn:example:complies'('urn:example:bob6369', true)). +answer('urn:example:complies'('urn:example:bob6370', true)). +answer('urn:example:complies'('urn:example:bob6371', true)). +answer('urn:example:complies'('urn:example:bob6372', true)). +answer('urn:example:complies'('urn:example:bob6373', true)). +answer('urn:example:complies'('urn:example:bob6374', true)). +answer('urn:example:complies'('urn:example:bob6375', true)). +answer('urn:example:complies'('urn:example:bob6376', true)). +answer('urn:example:complies'('urn:example:bob6377', true)). +answer('urn:example:complies'('urn:example:bob6378', true)). +answer('urn:example:complies'('urn:example:bob6379', true)). +answer('urn:example:complies'('urn:example:bob6380', true)). +answer('urn:example:complies'('urn:example:bob6381', true)). +answer('urn:example:complies'('urn:example:bob6382', true)). +answer('urn:example:complies'('urn:example:bob6383', true)). +answer('urn:example:complies'('urn:example:bob6384', true)). +answer('urn:example:complies'('urn:example:bob6385', true)). +answer('urn:example:complies'('urn:example:bob6386', true)). +answer('urn:example:complies'('urn:example:bob6387', true)). +answer('urn:example:complies'('urn:example:bob6388', true)). +answer('urn:example:complies'('urn:example:bob6389', true)). +answer('urn:example:complies'('urn:example:bob6390', true)). +answer('urn:example:complies'('urn:example:bob6391', true)). +answer('urn:example:complies'('urn:example:bob6392', true)). +answer('urn:example:complies'('urn:example:bob6393', true)). +answer('urn:example:complies'('urn:example:bob6394', true)). +answer('urn:example:complies'('urn:example:bob6395', true)). +answer('urn:example:complies'('urn:example:bob6396', true)). +answer('urn:example:complies'('urn:example:bob6397', true)). +answer('urn:example:complies'('urn:example:bob6398', true)). +answer('urn:example:complies'('urn:example:bob6399', true)). +answer('urn:example:complies'('urn:example:bob6400', true)). +answer('urn:example:complies'('urn:example:bob6401', true)). +answer('urn:example:complies'('urn:example:bob6402', true)). +answer('urn:example:complies'('urn:example:bob6403', true)). +answer('urn:example:complies'('urn:example:bob6404', true)). +answer('urn:example:complies'('urn:example:bob6405', true)). +answer('urn:example:complies'('urn:example:bob6406', true)). +answer('urn:example:complies'('urn:example:bob6407', true)). +answer('urn:example:complies'('urn:example:bob6408', true)). +answer('urn:example:complies'('urn:example:bob6409', true)). +answer('urn:example:complies'('urn:example:bob6410', true)). +answer('urn:example:complies'('urn:example:bob6411', true)). +answer('urn:example:complies'('urn:example:bob6412', true)). +answer('urn:example:complies'('urn:example:bob6413', true)). +answer('urn:example:complies'('urn:example:bob6414', true)). +answer('urn:example:complies'('urn:example:bob6415', true)). +answer('urn:example:complies'('urn:example:bob6416', true)). +answer('urn:example:complies'('urn:example:bob6417', true)). +answer('urn:example:complies'('urn:example:bob6418', true)). +answer('urn:example:complies'('urn:example:bob6419', true)). +answer('urn:example:complies'('urn:example:bob6420', true)). +answer('urn:example:complies'('urn:example:bob6421', true)). +answer('urn:example:complies'('urn:example:bob6422', true)). +answer('urn:example:complies'('urn:example:bob6423', true)). +answer('urn:example:complies'('urn:example:bob6424', true)). +answer('urn:example:complies'('urn:example:bob6425', true)). +answer('urn:example:complies'('urn:example:bob6426', true)). +answer('urn:example:complies'('urn:example:bob6427', true)). +answer('urn:example:complies'('urn:example:bob6428', true)). +answer('urn:example:complies'('urn:example:bob6429', true)). +answer('urn:example:complies'('urn:example:bob6430', true)). +answer('urn:example:complies'('urn:example:bob6431', true)). +answer('urn:example:complies'('urn:example:bob6432', true)). +answer('urn:example:complies'('urn:example:bob6433', true)). +answer('urn:example:complies'('urn:example:bob6434', true)). +answer('urn:example:complies'('urn:example:bob6435', true)). +answer('urn:example:complies'('urn:example:bob6436', true)). +answer('urn:example:complies'('urn:example:bob6437', true)). +answer('urn:example:complies'('urn:example:bob6438', true)). +answer('urn:example:complies'('urn:example:bob6439', true)). +answer('urn:example:complies'('urn:example:bob6440', true)). +answer('urn:example:complies'('urn:example:bob6441', true)). +answer('urn:example:complies'('urn:example:bob6442', true)). +answer('urn:example:complies'('urn:example:bob6443', true)). +answer('urn:example:complies'('urn:example:bob6444', true)). +answer('urn:example:complies'('urn:example:bob6445', true)). +answer('urn:example:complies'('urn:example:bob6446', true)). +answer('urn:example:complies'('urn:example:bob6447', true)). +answer('urn:example:complies'('urn:example:bob6448', true)). +answer('urn:example:complies'('urn:example:bob6449', true)). +answer('urn:example:complies'('urn:example:bob6450', true)). +answer('urn:example:complies'('urn:example:bob6451', true)). +answer('urn:example:complies'('urn:example:bob6452', true)). +answer('urn:example:complies'('urn:example:bob6453', true)). +answer('urn:example:complies'('urn:example:bob6454', true)). +answer('urn:example:complies'('urn:example:bob6455', true)). +answer('urn:example:complies'('urn:example:bob6456', true)). +answer('urn:example:complies'('urn:example:bob6457', true)). +answer('urn:example:complies'('urn:example:bob6458', true)). +answer('urn:example:complies'('urn:example:bob6459', true)). +answer('urn:example:complies'('urn:example:bob6460', true)). +answer('urn:example:complies'('urn:example:bob6461', true)). +answer('urn:example:complies'('urn:example:bob6462', true)). +answer('urn:example:complies'('urn:example:bob6463', true)). +answer('urn:example:complies'('urn:example:bob6464', true)). +answer('urn:example:complies'('urn:example:bob6465', true)). +answer('urn:example:complies'('urn:example:bob6466', true)). +answer('urn:example:complies'('urn:example:bob6467', true)). +answer('urn:example:complies'('urn:example:bob6468', true)). +answer('urn:example:complies'('urn:example:bob6469', true)). +answer('urn:example:complies'('urn:example:bob6470', true)). +answer('urn:example:complies'('urn:example:bob6471', true)). +answer('urn:example:complies'('urn:example:bob6472', true)). +answer('urn:example:complies'('urn:example:bob6473', true)). +answer('urn:example:complies'('urn:example:bob6474', true)). +answer('urn:example:complies'('urn:example:bob6475', true)). +answer('urn:example:complies'('urn:example:bob6476', true)). +answer('urn:example:complies'('urn:example:bob6477', true)). +answer('urn:example:complies'('urn:example:bob6478', true)). +answer('urn:example:complies'('urn:example:bob6479', true)). +answer('urn:example:complies'('urn:example:bob6480', true)). +answer('urn:example:complies'('urn:example:bob6481', true)). +answer('urn:example:complies'('urn:example:bob6482', true)). +answer('urn:example:complies'('urn:example:bob6483', true)). +answer('urn:example:complies'('urn:example:bob6484', true)). +answer('urn:example:complies'('urn:example:bob6485', true)). +answer('urn:example:complies'('urn:example:bob6486', true)). +answer('urn:example:complies'('urn:example:bob6487', true)). +answer('urn:example:complies'('urn:example:bob6488', true)). +answer('urn:example:complies'('urn:example:bob6489', true)). +answer('urn:example:complies'('urn:example:bob6490', true)). +answer('urn:example:complies'('urn:example:bob6491', true)). +answer('urn:example:complies'('urn:example:bob6492', true)). +answer('urn:example:complies'('urn:example:bob6493', true)). +answer('urn:example:complies'('urn:example:bob6494', true)). +answer('urn:example:complies'('urn:example:bob6495', true)). +answer('urn:example:complies'('urn:example:bob6496', true)). +answer('urn:example:complies'('urn:example:bob6497', true)). +answer('urn:example:complies'('urn:example:bob6498', true)). +answer('urn:example:complies'('urn:example:bob6499', true)). +answer('urn:example:complies'('urn:example:bob6500', true)). +answer('urn:example:complies'('urn:example:bob6501', true)). +answer('urn:example:complies'('urn:example:bob6502', true)). +answer('urn:example:complies'('urn:example:bob6503', true)). +answer('urn:example:complies'('urn:example:bob6504', true)). +answer('urn:example:complies'('urn:example:bob6505', true)). +answer('urn:example:complies'('urn:example:bob6506', true)). +answer('urn:example:complies'('urn:example:bob6507', true)). +answer('urn:example:complies'('urn:example:bob6508', true)). +answer('urn:example:complies'('urn:example:bob6509', true)). +answer('urn:example:complies'('urn:example:bob6510', true)). +answer('urn:example:complies'('urn:example:bob6511', true)). +answer('urn:example:complies'('urn:example:bob6512', true)). +answer('urn:example:complies'('urn:example:bob6513', true)). +answer('urn:example:complies'('urn:example:bob6514', true)). +answer('urn:example:complies'('urn:example:bob6515', true)). +answer('urn:example:complies'('urn:example:bob6516', true)). +answer('urn:example:complies'('urn:example:bob6517', true)). +answer('urn:example:complies'('urn:example:bob6518', true)). +answer('urn:example:complies'('urn:example:bob6519', true)). +answer('urn:example:complies'('urn:example:bob6520', true)). +answer('urn:example:complies'('urn:example:bob6521', true)). +answer('urn:example:complies'('urn:example:bob6522', true)). +answer('urn:example:complies'('urn:example:bob6523', true)). +answer('urn:example:complies'('urn:example:bob6524', true)). +answer('urn:example:complies'('urn:example:bob6525', true)). +answer('urn:example:complies'('urn:example:bob6526', true)). +answer('urn:example:complies'('urn:example:bob6527', true)). +answer('urn:example:complies'('urn:example:bob6528', true)). +answer('urn:example:complies'('urn:example:bob6529', true)). +answer('urn:example:complies'('urn:example:bob6530', true)). +answer('urn:example:complies'('urn:example:bob6531', true)). +answer('urn:example:complies'('urn:example:bob6532', true)). +answer('urn:example:complies'('urn:example:bob6533', true)). +answer('urn:example:complies'('urn:example:bob6534', true)). +answer('urn:example:complies'('urn:example:bob6535', true)). +answer('urn:example:complies'('urn:example:bob6536', true)). +answer('urn:example:complies'('urn:example:bob6537', true)). +answer('urn:example:complies'('urn:example:bob6538', true)). +answer('urn:example:complies'('urn:example:bob6539', true)). +answer('urn:example:complies'('urn:example:bob6540', true)). +answer('urn:example:complies'('urn:example:bob6541', true)). +answer('urn:example:complies'('urn:example:bob6542', true)). +answer('urn:example:complies'('urn:example:bob6543', true)). +answer('urn:example:complies'('urn:example:bob6544', true)). +answer('urn:example:complies'('urn:example:bob6545', true)). +answer('urn:example:complies'('urn:example:bob6546', true)). +answer('urn:example:complies'('urn:example:bob6547', true)). +answer('urn:example:complies'('urn:example:bob6548', true)). +answer('urn:example:complies'('urn:example:bob6549', true)). +answer('urn:example:complies'('urn:example:bob6550', true)). +answer('urn:example:complies'('urn:example:bob6551', true)). +answer('urn:example:complies'('urn:example:bob6552', true)). +answer('urn:example:complies'('urn:example:bob6553', true)). +answer('urn:example:complies'('urn:example:bob6554', true)). +answer('urn:example:complies'('urn:example:bob6555', true)). +answer('urn:example:complies'('urn:example:bob6556', true)). +answer('urn:example:complies'('urn:example:bob6557', true)). +answer('urn:example:complies'('urn:example:bob6558', true)). +answer('urn:example:complies'('urn:example:bob6559', true)). +answer('urn:example:complies'('urn:example:bob6560', true)). +answer('urn:example:complies'('urn:example:bob6561', true)). +answer('urn:example:complies'('urn:example:bob6562', true)). +answer('urn:example:complies'('urn:example:bob6563', true)). +answer('urn:example:complies'('urn:example:bob6564', true)). +answer('urn:example:complies'('urn:example:bob6565', true)). +answer('urn:example:complies'('urn:example:bob6566', true)). +answer('urn:example:complies'('urn:example:bob6567', true)). +answer('urn:example:complies'('urn:example:bob6568', true)). +answer('urn:example:complies'('urn:example:bob6569', true)). +answer('urn:example:complies'('urn:example:bob6570', true)). +answer('urn:example:complies'('urn:example:bob6571', true)). +answer('urn:example:complies'('urn:example:bob6572', true)). +answer('urn:example:complies'('urn:example:bob6573', true)). +answer('urn:example:complies'('urn:example:bob6574', true)). +answer('urn:example:complies'('urn:example:bob6575', true)). +answer('urn:example:complies'('urn:example:bob6576', true)). +answer('urn:example:complies'('urn:example:bob6577', true)). +answer('urn:example:complies'('urn:example:bob6578', true)). +answer('urn:example:complies'('urn:example:bob6579', true)). +answer('urn:example:complies'('urn:example:bob6580', true)). +answer('urn:example:complies'('urn:example:bob6581', true)). +answer('urn:example:complies'('urn:example:bob6582', true)). +answer('urn:example:complies'('urn:example:bob6583', true)). +answer('urn:example:complies'('urn:example:bob6584', true)). +answer('urn:example:complies'('urn:example:bob6585', true)). +answer('urn:example:complies'('urn:example:bob6586', true)). +answer('urn:example:complies'('urn:example:bob6587', true)). +answer('urn:example:complies'('urn:example:bob6588', true)). +answer('urn:example:complies'('urn:example:bob6589', true)). +answer('urn:example:complies'('urn:example:bob6590', true)). +answer('urn:example:complies'('urn:example:bob6591', true)). +answer('urn:example:complies'('urn:example:bob6592', true)). +answer('urn:example:complies'('urn:example:bob6593', true)). +answer('urn:example:complies'('urn:example:bob6594', true)). +answer('urn:example:complies'('urn:example:bob6595', true)). +answer('urn:example:complies'('urn:example:bob6596', true)). +answer('urn:example:complies'('urn:example:bob6597', true)). +answer('urn:example:complies'('urn:example:bob6598', true)). +answer('urn:example:complies'('urn:example:bob6599', true)). +answer('urn:example:complies'('urn:example:bob6600', true)). +answer('urn:example:complies'('urn:example:bob6601', true)). +answer('urn:example:complies'('urn:example:bob6602', true)). +answer('urn:example:complies'('urn:example:bob6603', true)). +answer('urn:example:complies'('urn:example:bob6604', true)). +answer('urn:example:complies'('urn:example:bob6605', true)). +answer('urn:example:complies'('urn:example:bob6606', true)). +answer('urn:example:complies'('urn:example:bob6607', true)). +answer('urn:example:complies'('urn:example:bob6608', true)). +answer('urn:example:complies'('urn:example:bob6609', true)). +answer('urn:example:complies'('urn:example:bob6610', true)). +answer('urn:example:complies'('urn:example:bob6611', true)). +answer('urn:example:complies'('urn:example:bob6612', true)). +answer('urn:example:complies'('urn:example:bob6613', true)). +answer('urn:example:complies'('urn:example:bob6614', true)). +answer('urn:example:complies'('urn:example:bob6615', true)). +answer('urn:example:complies'('urn:example:bob6616', true)). +answer('urn:example:complies'('urn:example:bob6617', true)). +answer('urn:example:complies'('urn:example:bob6618', true)). +answer('urn:example:complies'('urn:example:bob6619', true)). +answer('urn:example:complies'('urn:example:bob6620', true)). +answer('urn:example:complies'('urn:example:bob6621', true)). +answer('urn:example:complies'('urn:example:bob6622', true)). +answer('urn:example:complies'('urn:example:bob6623', true)). +answer('urn:example:complies'('urn:example:bob6624', true)). +answer('urn:example:complies'('urn:example:bob6625', true)). +answer('urn:example:complies'('urn:example:bob6626', true)). +answer('urn:example:complies'('urn:example:bob6627', true)). +answer('urn:example:complies'('urn:example:bob6628', true)). +answer('urn:example:complies'('urn:example:bob6629', true)). +answer('urn:example:complies'('urn:example:bob6630', true)). +answer('urn:example:complies'('urn:example:bob6631', true)). +answer('urn:example:complies'('urn:example:bob6632', true)). +answer('urn:example:complies'('urn:example:bob6633', true)). +answer('urn:example:complies'('urn:example:bob6634', true)). +answer('urn:example:complies'('urn:example:bob6635', true)). +answer('urn:example:complies'('urn:example:bob6636', true)). +answer('urn:example:complies'('urn:example:bob6637', true)). +answer('urn:example:complies'('urn:example:bob6638', true)). +answer('urn:example:complies'('urn:example:bob6639', true)). +answer('urn:example:complies'('urn:example:bob6640', true)). +answer('urn:example:complies'('urn:example:bob6641', true)). +answer('urn:example:complies'('urn:example:bob6642', true)). +answer('urn:example:complies'('urn:example:bob6643', true)). +answer('urn:example:complies'('urn:example:bob6644', true)). +answer('urn:example:complies'('urn:example:bob6645', true)). +answer('urn:example:complies'('urn:example:bob6646', true)). +answer('urn:example:complies'('urn:example:bob6647', true)). +answer('urn:example:complies'('urn:example:bob6648', true)). +answer('urn:example:complies'('urn:example:bob6649', true)). +answer('urn:example:complies'('urn:example:bob6650', true)). +answer('urn:example:complies'('urn:example:bob6651', true)). +answer('urn:example:complies'('urn:example:bob6652', true)). +answer('urn:example:complies'('urn:example:bob6653', true)). +answer('urn:example:complies'('urn:example:bob6654', true)). +answer('urn:example:complies'('urn:example:bob6655', true)). +answer('urn:example:complies'('urn:example:bob6656', true)). +answer('urn:example:complies'('urn:example:bob6657', true)). +answer('urn:example:complies'('urn:example:bob6658', true)). +answer('urn:example:complies'('urn:example:bob6659', true)). +answer('urn:example:complies'('urn:example:bob6660', true)). +answer('urn:example:complies'('urn:example:bob6661', true)). +answer('urn:example:complies'('urn:example:bob6662', true)). +answer('urn:example:complies'('urn:example:bob6663', true)). +answer('urn:example:complies'('urn:example:bob6664', true)). +answer('urn:example:complies'('urn:example:bob6665', true)). +answer('urn:example:complies'('urn:example:bob6666', true)). +answer('urn:example:complies'('urn:example:bob6667', true)). +answer('urn:example:complies'('urn:example:bob6668', true)). +answer('urn:example:complies'('urn:example:bob6669', true)). +answer('urn:example:complies'('urn:example:bob6670', true)). +answer('urn:example:complies'('urn:example:bob6671', true)). +answer('urn:example:complies'('urn:example:bob6672', true)). +answer('urn:example:complies'('urn:example:bob6673', true)). +answer('urn:example:complies'('urn:example:bob6674', true)). +answer('urn:example:complies'('urn:example:bob6675', true)). +answer('urn:example:complies'('urn:example:bob6676', true)). +answer('urn:example:complies'('urn:example:bob6677', true)). +answer('urn:example:complies'('urn:example:bob6678', true)). +answer('urn:example:complies'('urn:example:bob6679', true)). +answer('urn:example:complies'('urn:example:bob6680', true)). +answer('urn:example:complies'('urn:example:bob6681', true)). +answer('urn:example:complies'('urn:example:bob6682', true)). +answer('urn:example:complies'('urn:example:bob6683', true)). +answer('urn:example:complies'('urn:example:bob6684', true)). +answer('urn:example:complies'('urn:example:bob6685', true)). +answer('urn:example:complies'('urn:example:bob6686', true)). +answer('urn:example:complies'('urn:example:bob6687', true)). +answer('urn:example:complies'('urn:example:bob6688', true)). +answer('urn:example:complies'('urn:example:bob6689', true)). +answer('urn:example:complies'('urn:example:bob6690', true)). +answer('urn:example:complies'('urn:example:bob6691', true)). +answer('urn:example:complies'('urn:example:bob6692', true)). +answer('urn:example:complies'('urn:example:bob6693', true)). +answer('urn:example:complies'('urn:example:bob6694', true)). +answer('urn:example:complies'('urn:example:bob6695', true)). +answer('urn:example:complies'('urn:example:bob6696', true)). +answer('urn:example:complies'('urn:example:bob6697', true)). +answer('urn:example:complies'('urn:example:bob6698', true)). +answer('urn:example:complies'('urn:example:bob6699', true)). +answer('urn:example:complies'('urn:example:bob6700', true)). +answer('urn:example:complies'('urn:example:bob6701', true)). +answer('urn:example:complies'('urn:example:bob6702', true)). +answer('urn:example:complies'('urn:example:bob6703', true)). +answer('urn:example:complies'('urn:example:bob6704', true)). +answer('urn:example:complies'('urn:example:bob6705', true)). +answer('urn:example:complies'('urn:example:bob6706', true)). +answer('urn:example:complies'('urn:example:bob6707', true)). +answer('urn:example:complies'('urn:example:bob6708', true)). +answer('urn:example:complies'('urn:example:bob6709', true)). +answer('urn:example:complies'('urn:example:bob6710', true)). +answer('urn:example:complies'('urn:example:bob6711', true)). +answer('urn:example:complies'('urn:example:bob6712', true)). +answer('urn:example:complies'('urn:example:bob6713', true)). +answer('urn:example:complies'('urn:example:bob6714', true)). +answer('urn:example:complies'('urn:example:bob6715', true)). +answer('urn:example:complies'('urn:example:bob6716', true)). +answer('urn:example:complies'('urn:example:bob6717', true)). +answer('urn:example:complies'('urn:example:bob6718', true)). +answer('urn:example:complies'('urn:example:bob6719', true)). +answer('urn:example:complies'('urn:example:bob6720', true)). +answer('urn:example:complies'('urn:example:bob6721', true)). +answer('urn:example:complies'('urn:example:bob6722', true)). +answer('urn:example:complies'('urn:example:bob6723', true)). +answer('urn:example:complies'('urn:example:bob6724', true)). +answer('urn:example:complies'('urn:example:bob6725', true)). +answer('urn:example:complies'('urn:example:bob6726', true)). +answer('urn:example:complies'('urn:example:bob6727', true)). +answer('urn:example:complies'('urn:example:bob6728', true)). +answer('urn:example:complies'('urn:example:bob6729', true)). +answer('urn:example:complies'('urn:example:bob6730', true)). +answer('urn:example:complies'('urn:example:bob6731', true)). +answer('urn:example:complies'('urn:example:bob6732', true)). +answer('urn:example:complies'('urn:example:bob6733', true)). +answer('urn:example:complies'('urn:example:bob6734', true)). +answer('urn:example:complies'('urn:example:bob6735', true)). +answer('urn:example:complies'('urn:example:bob6736', true)). +answer('urn:example:complies'('urn:example:bob6737', true)). +answer('urn:example:complies'('urn:example:bob6738', true)). +answer('urn:example:complies'('urn:example:bob6739', true)). +answer('urn:example:complies'('urn:example:bob6740', true)). +answer('urn:example:complies'('urn:example:bob6741', true)). +answer('urn:example:complies'('urn:example:bob6742', true)). +answer('urn:example:complies'('urn:example:bob6743', true)). +answer('urn:example:complies'('urn:example:bob6744', true)). +answer('urn:example:complies'('urn:example:bob6745', true)). +answer('urn:example:complies'('urn:example:bob6746', true)). +answer('urn:example:complies'('urn:example:bob6747', true)). +answer('urn:example:complies'('urn:example:bob6748', true)). +answer('urn:example:complies'('urn:example:bob6749', true)). +answer('urn:example:complies'('urn:example:bob6750', true)). +answer('urn:example:complies'('urn:example:bob6751', true)). +answer('urn:example:complies'('urn:example:bob6752', true)). +answer('urn:example:complies'('urn:example:bob6753', true)). +answer('urn:example:complies'('urn:example:bob6754', true)). +answer('urn:example:complies'('urn:example:bob6755', true)). +answer('urn:example:complies'('urn:example:bob6756', true)). +answer('urn:example:complies'('urn:example:bob6757', true)). +answer('urn:example:complies'('urn:example:bob6758', true)). +answer('urn:example:complies'('urn:example:bob6759', true)). +answer('urn:example:complies'('urn:example:bob6760', true)). +answer('urn:example:complies'('urn:example:bob6761', true)). +answer('urn:example:complies'('urn:example:bob6762', true)). +answer('urn:example:complies'('urn:example:bob6763', true)). +answer('urn:example:complies'('urn:example:bob6764', true)). +answer('urn:example:complies'('urn:example:bob6765', true)). +answer('urn:example:complies'('urn:example:bob6766', true)). +answer('urn:example:complies'('urn:example:bob6767', true)). +answer('urn:example:complies'('urn:example:bob6768', true)). +answer('urn:example:complies'('urn:example:bob6769', true)). +answer('urn:example:complies'('urn:example:bob6770', true)). +answer('urn:example:complies'('urn:example:bob6771', true)). +answer('urn:example:complies'('urn:example:bob6772', true)). +answer('urn:example:complies'('urn:example:bob6773', true)). +answer('urn:example:complies'('urn:example:bob6774', true)). +answer('urn:example:complies'('urn:example:bob6775', true)). +answer('urn:example:complies'('urn:example:bob6776', true)). +answer('urn:example:complies'('urn:example:bob6777', true)). +answer('urn:example:complies'('urn:example:bob6778', true)). +answer('urn:example:complies'('urn:example:bob6779', true)). +answer('urn:example:complies'('urn:example:bob6780', true)). +answer('urn:example:complies'('urn:example:bob6781', true)). +answer('urn:example:complies'('urn:example:bob6782', true)). +answer('urn:example:complies'('urn:example:bob6783', true)). +answer('urn:example:complies'('urn:example:bob6784', true)). +answer('urn:example:complies'('urn:example:bob6785', true)). +answer('urn:example:complies'('urn:example:bob6786', true)). +answer('urn:example:complies'('urn:example:bob6787', true)). +answer('urn:example:complies'('urn:example:bob6788', true)). +answer('urn:example:complies'('urn:example:bob6789', true)). +answer('urn:example:complies'('urn:example:bob6790', true)). +answer('urn:example:complies'('urn:example:bob6791', true)). +answer('urn:example:complies'('urn:example:bob6792', true)). +answer('urn:example:complies'('urn:example:bob6793', true)). +answer('urn:example:complies'('urn:example:bob6794', true)). +answer('urn:example:complies'('urn:example:bob6795', true)). +answer('urn:example:complies'('urn:example:bob6796', true)). +answer('urn:example:complies'('urn:example:bob6797', true)). +answer('urn:example:complies'('urn:example:bob6798', true)). +answer('urn:example:complies'('urn:example:bob6799', true)). +answer('urn:example:complies'('urn:example:bob6800', true)). +answer('urn:example:complies'('urn:example:bob6801', true)). +answer('urn:example:complies'('urn:example:bob6802', true)). +answer('urn:example:complies'('urn:example:bob6803', true)). +answer('urn:example:complies'('urn:example:bob6804', true)). +answer('urn:example:complies'('urn:example:bob6805', true)). +answer('urn:example:complies'('urn:example:bob6806', true)). +answer('urn:example:complies'('urn:example:bob6807', true)). +answer('urn:example:complies'('urn:example:bob6808', true)). +answer('urn:example:complies'('urn:example:bob6809', true)). +answer('urn:example:complies'('urn:example:bob6810', true)). +answer('urn:example:complies'('urn:example:bob6811', true)). +answer('urn:example:complies'('urn:example:bob6812', true)). +answer('urn:example:complies'('urn:example:bob6813', true)). +answer('urn:example:complies'('urn:example:bob6814', true)). +answer('urn:example:complies'('urn:example:bob6815', true)). +answer('urn:example:complies'('urn:example:bob6816', true)). +answer('urn:example:complies'('urn:example:bob6817', true)). +answer('urn:example:complies'('urn:example:bob6818', true)). +answer('urn:example:complies'('urn:example:bob6819', true)). +answer('urn:example:complies'('urn:example:bob6820', true)). +answer('urn:example:complies'('urn:example:bob6821', true)). +answer('urn:example:complies'('urn:example:bob6822', true)). +answer('urn:example:complies'('urn:example:bob6823', true)). +answer('urn:example:complies'('urn:example:bob6824', true)). +answer('urn:example:complies'('urn:example:bob6825', true)). +answer('urn:example:complies'('urn:example:bob6826', true)). +answer('urn:example:complies'('urn:example:bob6827', true)). +answer('urn:example:complies'('urn:example:bob6828', true)). +answer('urn:example:complies'('urn:example:bob6829', true)). +answer('urn:example:complies'('urn:example:bob6830', true)). +answer('urn:example:complies'('urn:example:bob6831', true)). +answer('urn:example:complies'('urn:example:bob6832', true)). +answer('urn:example:complies'('urn:example:bob6833', true)). +answer('urn:example:complies'('urn:example:bob6834', true)). +answer('urn:example:complies'('urn:example:bob6835', true)). +answer('urn:example:complies'('urn:example:bob6836', true)). +answer('urn:example:complies'('urn:example:bob6837', true)). +answer('urn:example:complies'('urn:example:bob6838', true)). +answer('urn:example:complies'('urn:example:bob6839', true)). +answer('urn:example:complies'('urn:example:bob6840', true)). +answer('urn:example:complies'('urn:example:bob6841', true)). +answer('urn:example:complies'('urn:example:bob6842', true)). +answer('urn:example:complies'('urn:example:bob6843', true)). +answer('urn:example:complies'('urn:example:bob6844', true)). +answer('urn:example:complies'('urn:example:bob6845', true)). +answer('urn:example:complies'('urn:example:bob6846', true)). +answer('urn:example:complies'('urn:example:bob6847', true)). +answer('urn:example:complies'('urn:example:bob6848', true)). +answer('urn:example:complies'('urn:example:bob6849', true)). +answer('urn:example:complies'('urn:example:bob6850', true)). +answer('urn:example:complies'('urn:example:bob6851', true)). +answer('urn:example:complies'('urn:example:bob6852', true)). +answer('urn:example:complies'('urn:example:bob6853', true)). +answer('urn:example:complies'('urn:example:bob6854', true)). +answer('urn:example:complies'('urn:example:bob6855', true)). +answer('urn:example:complies'('urn:example:bob6856', true)). +answer('urn:example:complies'('urn:example:bob6857', true)). +answer('urn:example:complies'('urn:example:bob6858', true)). +answer('urn:example:complies'('urn:example:bob6859', true)). +answer('urn:example:complies'('urn:example:bob6860', true)). +answer('urn:example:complies'('urn:example:bob6861', true)). +answer('urn:example:complies'('urn:example:bob6862', true)). +answer('urn:example:complies'('urn:example:bob6863', true)). +answer('urn:example:complies'('urn:example:bob6864', true)). +answer('urn:example:complies'('urn:example:bob6865', true)). +answer('urn:example:complies'('urn:example:bob6866', true)). +answer('urn:example:complies'('urn:example:bob6867', true)). +answer('urn:example:complies'('urn:example:bob6868', true)). +answer('urn:example:complies'('urn:example:bob6869', true)). +answer('urn:example:complies'('urn:example:bob6870', true)). +answer('urn:example:complies'('urn:example:bob6871', true)). +answer('urn:example:complies'('urn:example:bob6872', true)). +answer('urn:example:complies'('urn:example:bob6873', true)). +answer('urn:example:complies'('urn:example:bob6874', true)). +answer('urn:example:complies'('urn:example:bob6875', true)). +answer('urn:example:complies'('urn:example:bob6876', true)). +answer('urn:example:complies'('urn:example:bob6877', true)). +answer('urn:example:complies'('urn:example:bob6878', true)). +answer('urn:example:complies'('urn:example:bob6879', true)). +answer('urn:example:complies'('urn:example:bob6880', true)). +answer('urn:example:complies'('urn:example:bob6881', true)). +answer('urn:example:complies'('urn:example:bob6882', true)). +answer('urn:example:complies'('urn:example:bob6883', true)). +answer('urn:example:complies'('urn:example:bob6884', true)). +answer('urn:example:complies'('urn:example:bob6885', true)). +answer('urn:example:complies'('urn:example:bob6886', true)). +answer('urn:example:complies'('urn:example:bob6887', true)). +answer('urn:example:complies'('urn:example:bob6888', true)). +answer('urn:example:complies'('urn:example:bob6889', true)). +answer('urn:example:complies'('urn:example:bob6890', true)). +answer('urn:example:complies'('urn:example:bob6891', true)). +answer('urn:example:complies'('urn:example:bob6892', true)). +answer('urn:example:complies'('urn:example:bob6893', true)). +answer('urn:example:complies'('urn:example:bob6894', true)). +answer('urn:example:complies'('urn:example:bob6895', true)). +answer('urn:example:complies'('urn:example:bob6896', true)). +answer('urn:example:complies'('urn:example:bob6897', true)). +answer('urn:example:complies'('urn:example:bob6898', true)). +answer('urn:example:complies'('urn:example:bob6899', true)). +answer('urn:example:complies'('urn:example:bob6900', true)). +answer('urn:example:complies'('urn:example:bob6901', true)). +answer('urn:example:complies'('urn:example:bob6902', true)). +answer('urn:example:complies'('urn:example:bob6903', true)). +answer('urn:example:complies'('urn:example:bob6904', true)). +answer('urn:example:complies'('urn:example:bob6905', true)). +answer('urn:example:complies'('urn:example:bob6906', true)). +answer('urn:example:complies'('urn:example:bob6907', true)). +answer('urn:example:complies'('urn:example:bob6908', true)). +answer('urn:example:complies'('urn:example:bob6909', true)). +answer('urn:example:complies'('urn:example:bob6910', true)). +answer('urn:example:complies'('urn:example:bob6911', true)). +answer('urn:example:complies'('urn:example:bob6912', true)). +answer('urn:example:complies'('urn:example:bob6913', true)). +answer('urn:example:complies'('urn:example:bob6914', true)). +answer('urn:example:complies'('urn:example:bob6915', true)). +answer('urn:example:complies'('urn:example:bob6916', true)). +answer('urn:example:complies'('urn:example:bob6917', true)). +answer('urn:example:complies'('urn:example:bob6918', true)). +answer('urn:example:complies'('urn:example:bob6919', true)). +answer('urn:example:complies'('urn:example:bob6920', true)). +answer('urn:example:complies'('urn:example:bob6921', true)). +answer('urn:example:complies'('urn:example:bob6922', true)). +answer('urn:example:complies'('urn:example:bob6923', true)). +answer('urn:example:complies'('urn:example:bob6924', true)). +answer('urn:example:complies'('urn:example:bob6925', true)). +answer('urn:example:complies'('urn:example:bob6926', true)). +answer('urn:example:complies'('urn:example:bob6927', true)). +answer('urn:example:complies'('urn:example:bob6928', true)). +answer('urn:example:complies'('urn:example:bob6929', true)). +answer('urn:example:complies'('urn:example:bob6930', true)). +answer('urn:example:complies'('urn:example:bob6931', true)). +answer('urn:example:complies'('urn:example:bob6932', true)). +answer('urn:example:complies'('urn:example:bob6933', true)). +answer('urn:example:complies'('urn:example:bob6934', true)). +answer('urn:example:complies'('urn:example:bob6935', true)). +answer('urn:example:complies'('urn:example:bob6936', true)). +answer('urn:example:complies'('urn:example:bob6937', true)). +answer('urn:example:complies'('urn:example:bob6938', true)). +answer('urn:example:complies'('urn:example:bob6939', true)). +answer('urn:example:complies'('urn:example:bob6940', true)). +answer('urn:example:complies'('urn:example:bob6941', true)). +answer('urn:example:complies'('urn:example:bob6942', true)). +answer('urn:example:complies'('urn:example:bob6943', true)). +answer('urn:example:complies'('urn:example:bob6944', true)). +answer('urn:example:complies'('urn:example:bob6945', true)). +answer('urn:example:complies'('urn:example:bob6946', true)). +answer('urn:example:complies'('urn:example:bob6947', true)). +answer('urn:example:complies'('urn:example:bob6948', true)). +answer('urn:example:complies'('urn:example:bob6949', true)). +answer('urn:example:complies'('urn:example:bob6950', true)). +answer('urn:example:complies'('urn:example:bob6951', true)). +answer('urn:example:complies'('urn:example:bob6952', true)). +answer('urn:example:complies'('urn:example:bob6953', true)). +answer('urn:example:complies'('urn:example:bob6954', true)). +answer('urn:example:complies'('urn:example:bob6955', true)). +answer('urn:example:complies'('urn:example:bob6956', true)). +answer('urn:example:complies'('urn:example:bob6957', true)). +answer('urn:example:complies'('urn:example:bob6958', true)). +answer('urn:example:complies'('urn:example:bob6959', true)). +answer('urn:example:complies'('urn:example:bob6960', true)). +answer('urn:example:complies'('urn:example:bob6961', true)). +answer('urn:example:complies'('urn:example:bob6962', true)). +answer('urn:example:complies'('urn:example:bob6963', true)). +answer('urn:example:complies'('urn:example:bob6964', true)). +answer('urn:example:complies'('urn:example:bob6965', true)). +answer('urn:example:complies'('urn:example:bob6966', true)). +answer('urn:example:complies'('urn:example:bob6967', true)). +answer('urn:example:complies'('urn:example:bob6968', true)). +answer('urn:example:complies'('urn:example:bob6969', true)). +answer('urn:example:complies'('urn:example:bob6970', true)). +answer('urn:example:complies'('urn:example:bob6971', true)). +answer('urn:example:complies'('urn:example:bob6972', true)). +answer('urn:example:complies'('urn:example:bob6973', true)). +answer('urn:example:complies'('urn:example:bob6974', true)). +answer('urn:example:complies'('urn:example:bob6975', true)). +answer('urn:example:complies'('urn:example:bob6976', true)). +answer('urn:example:complies'('urn:example:bob6977', true)). +answer('urn:example:complies'('urn:example:bob6978', true)). +answer('urn:example:complies'('urn:example:bob6979', true)). +answer('urn:example:complies'('urn:example:bob6980', true)). +answer('urn:example:complies'('urn:example:bob6981', true)). +answer('urn:example:complies'('urn:example:bob6982', true)). +answer('urn:example:complies'('urn:example:bob6983', true)). +answer('urn:example:complies'('urn:example:bob6984', true)). +answer('urn:example:complies'('urn:example:bob6985', true)). +answer('urn:example:complies'('urn:example:bob6986', true)). +answer('urn:example:complies'('urn:example:bob6987', true)). +answer('urn:example:complies'('urn:example:bob6988', true)). +answer('urn:example:complies'('urn:example:bob6989', true)). +answer('urn:example:complies'('urn:example:bob6990', true)). +answer('urn:example:complies'('urn:example:bob6991', true)). +answer('urn:example:complies'('urn:example:bob6992', true)). +answer('urn:example:complies'('urn:example:bob6993', true)). +answer('urn:example:complies'('urn:example:bob6994', true)). +answer('urn:example:complies'('urn:example:bob6995', true)). +answer('urn:example:complies'('urn:example:bob6996', true)). +answer('urn:example:complies'('urn:example:bob6997', true)). +answer('urn:example:complies'('urn:example:bob6998', true)). +answer('urn:example:complies'('urn:example:bob6999', true)). +answer('urn:example:complies'('urn:example:bob7000', true)). +answer('urn:example:complies'('urn:example:bob7001', true)). +answer('urn:example:complies'('urn:example:bob7002', true)). +answer('urn:example:complies'('urn:example:bob7003', true)). +answer('urn:example:complies'('urn:example:bob7004', true)). +answer('urn:example:complies'('urn:example:bob7005', true)). +answer('urn:example:complies'('urn:example:bob7006', true)). +answer('urn:example:complies'('urn:example:bob7007', true)). +answer('urn:example:complies'('urn:example:bob7008', true)). +answer('urn:example:complies'('urn:example:bob7009', true)). +answer('urn:example:complies'('urn:example:bob7010', true)). +answer('urn:example:complies'('urn:example:bob7011', true)). +answer('urn:example:complies'('urn:example:bob7012', true)). +answer('urn:example:complies'('urn:example:bob7013', true)). +answer('urn:example:complies'('urn:example:bob7014', true)). +answer('urn:example:complies'('urn:example:bob7015', true)). +answer('urn:example:complies'('urn:example:bob7016', true)). +answer('urn:example:complies'('urn:example:bob7017', true)). +answer('urn:example:complies'('urn:example:bob7018', true)). +answer('urn:example:complies'('urn:example:bob7019', true)). +answer('urn:example:complies'('urn:example:bob7020', true)). +answer('urn:example:complies'('urn:example:bob7021', true)). +answer('urn:example:complies'('urn:example:bob7022', true)). +answer('urn:example:complies'('urn:example:bob7023', true)). +answer('urn:example:complies'('urn:example:bob7024', true)). +answer('urn:example:complies'('urn:example:bob7025', true)). +answer('urn:example:complies'('urn:example:bob7026', true)). +answer('urn:example:complies'('urn:example:bob7027', true)). +answer('urn:example:complies'('urn:example:bob7028', true)). +answer('urn:example:complies'('urn:example:bob7029', true)). +answer('urn:example:complies'('urn:example:bob7030', true)). +answer('urn:example:complies'('urn:example:bob7031', true)). +answer('urn:example:complies'('urn:example:bob7032', true)). +answer('urn:example:complies'('urn:example:bob7033', true)). +answer('urn:example:complies'('urn:example:bob7034', true)). +answer('urn:example:complies'('urn:example:bob7035', true)). +answer('urn:example:complies'('urn:example:bob7036', true)). +answer('urn:example:complies'('urn:example:bob7037', true)). +answer('urn:example:complies'('urn:example:bob7038', true)). +answer('urn:example:complies'('urn:example:bob7039', true)). +answer('urn:example:complies'('urn:example:bob7040', true)). +answer('urn:example:complies'('urn:example:bob7041', true)). +answer('urn:example:complies'('urn:example:bob7042', true)). +answer('urn:example:complies'('urn:example:bob7043', true)). +answer('urn:example:complies'('urn:example:bob7044', true)). +answer('urn:example:complies'('urn:example:bob7045', true)). +answer('urn:example:complies'('urn:example:bob7046', true)). +answer('urn:example:complies'('urn:example:bob7047', true)). +answer('urn:example:complies'('urn:example:bob7048', true)). +answer('urn:example:complies'('urn:example:bob7049', true)). +answer('urn:example:complies'('urn:example:bob7050', true)). +answer('urn:example:complies'('urn:example:bob7051', true)). +answer('urn:example:complies'('urn:example:bob7052', true)). +answer('urn:example:complies'('urn:example:bob7053', true)). +answer('urn:example:complies'('urn:example:bob7054', true)). +answer('urn:example:complies'('urn:example:bob7055', true)). +answer('urn:example:complies'('urn:example:bob7056', true)). +answer('urn:example:complies'('urn:example:bob7057', true)). +answer('urn:example:complies'('urn:example:bob7058', true)). +answer('urn:example:complies'('urn:example:bob7059', true)). +answer('urn:example:complies'('urn:example:bob7060', true)). +answer('urn:example:complies'('urn:example:bob7061', true)). +answer('urn:example:complies'('urn:example:bob7062', true)). +answer('urn:example:complies'('urn:example:bob7063', true)). +answer('urn:example:complies'('urn:example:bob7064', true)). +answer('urn:example:complies'('urn:example:bob7065', true)). +answer('urn:example:complies'('urn:example:bob7066', true)). +answer('urn:example:complies'('urn:example:bob7067', true)). +answer('urn:example:complies'('urn:example:bob7068', true)). +answer('urn:example:complies'('urn:example:bob7069', true)). +answer('urn:example:complies'('urn:example:bob7070', true)). +answer('urn:example:complies'('urn:example:bob7071', true)). +answer('urn:example:complies'('urn:example:bob7072', true)). +answer('urn:example:complies'('urn:example:bob7073', true)). +answer('urn:example:complies'('urn:example:bob7074', true)). +answer('urn:example:complies'('urn:example:bob7075', true)). +answer('urn:example:complies'('urn:example:bob7076', true)). +answer('urn:example:complies'('urn:example:bob7077', true)). +answer('urn:example:complies'('urn:example:bob7078', true)). +answer('urn:example:complies'('urn:example:bob7079', true)). +answer('urn:example:complies'('urn:example:bob7080', true)). +answer('urn:example:complies'('urn:example:bob7081', true)). +answer('urn:example:complies'('urn:example:bob7082', true)). +answer('urn:example:complies'('urn:example:bob7083', true)). +answer('urn:example:complies'('urn:example:bob7084', true)). +answer('urn:example:complies'('urn:example:bob7085', true)). +answer('urn:example:complies'('urn:example:bob7086', true)). +answer('urn:example:complies'('urn:example:bob7087', true)). +answer('urn:example:complies'('urn:example:bob7088', true)). +answer('urn:example:complies'('urn:example:bob7089', true)). +answer('urn:example:complies'('urn:example:bob7090', true)). +answer('urn:example:complies'('urn:example:bob7091', true)). +answer('urn:example:complies'('urn:example:bob7092', true)). +answer('urn:example:complies'('urn:example:bob7093', true)). +answer('urn:example:complies'('urn:example:bob7094', true)). +answer('urn:example:complies'('urn:example:bob7095', true)). +answer('urn:example:complies'('urn:example:bob7096', true)). +answer('urn:example:complies'('urn:example:bob7097', true)). +answer('urn:example:complies'('urn:example:bob7098', true)). +answer('urn:example:complies'('urn:example:bob7099', true)). +answer('urn:example:complies'('urn:example:bob7100', true)). +answer('urn:example:complies'('urn:example:bob7101', true)). +answer('urn:example:complies'('urn:example:bob7102', true)). +answer('urn:example:complies'('urn:example:bob7103', true)). +answer('urn:example:complies'('urn:example:bob7104', true)). +answer('urn:example:complies'('urn:example:bob7105', true)). +answer('urn:example:complies'('urn:example:bob7106', true)). +answer('urn:example:complies'('urn:example:bob7107', true)). +answer('urn:example:complies'('urn:example:bob7108', true)). +answer('urn:example:complies'('urn:example:bob7109', true)). +answer('urn:example:complies'('urn:example:bob7110', true)). +answer('urn:example:complies'('urn:example:bob7111', true)). +answer('urn:example:complies'('urn:example:bob7112', true)). +answer('urn:example:complies'('urn:example:bob7113', true)). +answer('urn:example:complies'('urn:example:bob7114', true)). +answer('urn:example:complies'('urn:example:bob7115', true)). +answer('urn:example:complies'('urn:example:bob7116', true)). +answer('urn:example:complies'('urn:example:bob7117', true)). +answer('urn:example:complies'('urn:example:bob7118', true)). +answer('urn:example:complies'('urn:example:bob7119', true)). +answer('urn:example:complies'('urn:example:bob7120', true)). +answer('urn:example:complies'('urn:example:bob7121', true)). +answer('urn:example:complies'('urn:example:bob7122', true)). +answer('urn:example:complies'('urn:example:bob7123', true)). +answer('urn:example:complies'('urn:example:bob7124', true)). +answer('urn:example:complies'('urn:example:bob7125', true)). +answer('urn:example:complies'('urn:example:bob7126', true)). +answer('urn:example:complies'('urn:example:bob7127', true)). +answer('urn:example:complies'('urn:example:bob7128', true)). +answer('urn:example:complies'('urn:example:bob7129', true)). +answer('urn:example:complies'('urn:example:bob7130', true)). +answer('urn:example:complies'('urn:example:bob7131', true)). +answer('urn:example:complies'('urn:example:bob7132', true)). +answer('urn:example:complies'('urn:example:bob7133', true)). +answer('urn:example:complies'('urn:example:bob7134', true)). +answer('urn:example:complies'('urn:example:bob7135', true)). +answer('urn:example:complies'('urn:example:bob7136', true)). +answer('urn:example:complies'('urn:example:bob7137', true)). +answer('urn:example:complies'('urn:example:bob7138', true)). +answer('urn:example:complies'('urn:example:bob7139', true)). +answer('urn:example:complies'('urn:example:bob7140', true)). +answer('urn:example:complies'('urn:example:bob7141', true)). +answer('urn:example:complies'('urn:example:bob7142', true)). +answer('urn:example:complies'('urn:example:bob7143', true)). +answer('urn:example:complies'('urn:example:bob7144', true)). +answer('urn:example:complies'('urn:example:bob7145', true)). +answer('urn:example:complies'('urn:example:bob7146', true)). +answer('urn:example:complies'('urn:example:bob7147', true)). +answer('urn:example:complies'('urn:example:bob7148', true)). +answer('urn:example:complies'('urn:example:bob7149', true)). +answer('urn:example:complies'('urn:example:bob7150', true)). +answer('urn:example:complies'('urn:example:bob7151', true)). +answer('urn:example:complies'('urn:example:bob7152', true)). +answer('urn:example:complies'('urn:example:bob7153', true)). +answer('urn:example:complies'('urn:example:bob7154', true)). +answer('urn:example:complies'('urn:example:bob7155', true)). +answer('urn:example:complies'('urn:example:bob7156', true)). +answer('urn:example:complies'('urn:example:bob7157', true)). +answer('urn:example:complies'('urn:example:bob7158', true)). +answer('urn:example:complies'('urn:example:bob7159', true)). +answer('urn:example:complies'('urn:example:bob7160', true)). +answer('urn:example:complies'('urn:example:bob7161', true)). +answer('urn:example:complies'('urn:example:bob7162', true)). +answer('urn:example:complies'('urn:example:bob7163', true)). +answer('urn:example:complies'('urn:example:bob7164', true)). +answer('urn:example:complies'('urn:example:bob7165', true)). +answer('urn:example:complies'('urn:example:bob7166', true)). +answer('urn:example:complies'('urn:example:bob7167', true)). +answer('urn:example:complies'('urn:example:bob7168', true)). +answer('urn:example:complies'('urn:example:bob7169', true)). +answer('urn:example:complies'('urn:example:bob7170', true)). +answer('urn:example:complies'('urn:example:bob7171', true)). +answer('urn:example:complies'('urn:example:bob7172', true)). +answer('urn:example:complies'('urn:example:bob7173', true)). +answer('urn:example:complies'('urn:example:bob7174', true)). +answer('urn:example:complies'('urn:example:bob7175', true)). +answer('urn:example:complies'('urn:example:bob7176', true)). +answer('urn:example:complies'('urn:example:bob7177', true)). +answer('urn:example:complies'('urn:example:bob7178', true)). +answer('urn:example:complies'('urn:example:bob7179', true)). +answer('urn:example:complies'('urn:example:bob7180', true)). +answer('urn:example:complies'('urn:example:bob7181', true)). +answer('urn:example:complies'('urn:example:bob7182', true)). +answer('urn:example:complies'('urn:example:bob7183', true)). +answer('urn:example:complies'('urn:example:bob7184', true)). +answer('urn:example:complies'('urn:example:bob7185', true)). +answer('urn:example:complies'('urn:example:bob7186', true)). +answer('urn:example:complies'('urn:example:bob7187', true)). +answer('urn:example:complies'('urn:example:bob7188', true)). +answer('urn:example:complies'('urn:example:bob7189', true)). +answer('urn:example:complies'('urn:example:bob7190', true)). +answer('urn:example:complies'('urn:example:bob7191', true)). +answer('urn:example:complies'('urn:example:bob7192', true)). +answer('urn:example:complies'('urn:example:bob7193', true)). +answer('urn:example:complies'('urn:example:bob7194', true)). +answer('urn:example:complies'('urn:example:bob7195', true)). +answer('urn:example:complies'('urn:example:bob7196', true)). +answer('urn:example:complies'('urn:example:bob7197', true)). +answer('urn:example:complies'('urn:example:bob7198', true)). +answer('urn:example:complies'('urn:example:bob7199', true)). +answer('urn:example:complies'('urn:example:bob7200', true)). +answer('urn:example:complies'('urn:example:bob7201', true)). +answer('urn:example:complies'('urn:example:bob7202', true)). +answer('urn:example:complies'('urn:example:bob7203', true)). +answer('urn:example:complies'('urn:example:bob7204', true)). +answer('urn:example:complies'('urn:example:bob7205', true)). +answer('urn:example:complies'('urn:example:bob7206', true)). +answer('urn:example:complies'('urn:example:bob7207', true)). +answer('urn:example:complies'('urn:example:bob7208', true)). +answer('urn:example:complies'('urn:example:bob7209', true)). +answer('urn:example:complies'('urn:example:bob7210', true)). +answer('urn:example:complies'('urn:example:bob7211', true)). +answer('urn:example:complies'('urn:example:bob7212', true)). +answer('urn:example:complies'('urn:example:bob7213', true)). +answer('urn:example:complies'('urn:example:bob7214', true)). +answer('urn:example:complies'('urn:example:bob7215', true)). +answer('urn:example:complies'('urn:example:bob7216', true)). +answer('urn:example:complies'('urn:example:bob7217', true)). +answer('urn:example:complies'('urn:example:bob7218', true)). +answer('urn:example:complies'('urn:example:bob7219', true)). +answer('urn:example:complies'('urn:example:bob7220', true)). +answer('urn:example:complies'('urn:example:bob7221', true)). +answer('urn:example:complies'('urn:example:bob7222', true)). +answer('urn:example:complies'('urn:example:bob7223', true)). +answer('urn:example:complies'('urn:example:bob7224', true)). +answer('urn:example:complies'('urn:example:bob7225', true)). +answer('urn:example:complies'('urn:example:bob7226', true)). +answer('urn:example:complies'('urn:example:bob7227', true)). +answer('urn:example:complies'('urn:example:bob7228', true)). +answer('urn:example:complies'('urn:example:bob7229', true)). +answer('urn:example:complies'('urn:example:bob7230', true)). +answer('urn:example:complies'('urn:example:bob7231', true)). +answer('urn:example:complies'('urn:example:bob7232', true)). +answer('urn:example:complies'('urn:example:bob7233', true)). +answer('urn:example:complies'('urn:example:bob7234', true)). +answer('urn:example:complies'('urn:example:bob7235', true)). +answer('urn:example:complies'('urn:example:bob7236', true)). +answer('urn:example:complies'('urn:example:bob7237', true)). +answer('urn:example:complies'('urn:example:bob7238', true)). +answer('urn:example:complies'('urn:example:bob7239', true)). +answer('urn:example:complies'('urn:example:bob7240', true)). +answer('urn:example:complies'('urn:example:bob7241', true)). +answer('urn:example:complies'('urn:example:bob7242', true)). +answer('urn:example:complies'('urn:example:bob7243', true)). +answer('urn:example:complies'('urn:example:bob7244', true)). +answer('urn:example:complies'('urn:example:bob7245', true)). +answer('urn:example:complies'('urn:example:bob7246', true)). +answer('urn:example:complies'('urn:example:bob7247', true)). +answer('urn:example:complies'('urn:example:bob7248', true)). +answer('urn:example:complies'('urn:example:bob7249', true)). +answer('urn:example:complies'('urn:example:bob7250', true)). +answer('urn:example:complies'('urn:example:bob7251', true)). +answer('urn:example:complies'('urn:example:bob7252', true)). +answer('urn:example:complies'('urn:example:bob7253', true)). +answer('urn:example:complies'('urn:example:bob7254', true)). +answer('urn:example:complies'('urn:example:bob7255', true)). +answer('urn:example:complies'('urn:example:bob7256', true)). +answer('urn:example:complies'('urn:example:bob7257', true)). +answer('urn:example:complies'('urn:example:bob7258', true)). +answer('urn:example:complies'('urn:example:bob7259', true)). +answer('urn:example:complies'('urn:example:bob7260', true)). +answer('urn:example:complies'('urn:example:bob7261', true)). +answer('urn:example:complies'('urn:example:bob7262', true)). +answer('urn:example:complies'('urn:example:bob7263', true)). +answer('urn:example:complies'('urn:example:bob7264', true)). +answer('urn:example:complies'('urn:example:bob7265', true)). +answer('urn:example:complies'('urn:example:bob7266', true)). +answer('urn:example:complies'('urn:example:bob7267', true)). +answer('urn:example:complies'('urn:example:bob7268', true)). +answer('urn:example:complies'('urn:example:bob7269', true)). +answer('urn:example:complies'('urn:example:bob7270', true)). +answer('urn:example:complies'('urn:example:bob7271', true)). +answer('urn:example:complies'('urn:example:bob7272', true)). +answer('urn:example:complies'('urn:example:bob7273', true)). +answer('urn:example:complies'('urn:example:bob7274', true)). +answer('urn:example:complies'('urn:example:bob7275', true)). +answer('urn:example:complies'('urn:example:bob7276', true)). +answer('urn:example:complies'('urn:example:bob7277', true)). +answer('urn:example:complies'('urn:example:bob7278', true)). +answer('urn:example:complies'('urn:example:bob7279', true)). +answer('urn:example:complies'('urn:example:bob7280', true)). +answer('urn:example:complies'('urn:example:bob7281', true)). +answer('urn:example:complies'('urn:example:bob7282', true)). +answer('urn:example:complies'('urn:example:bob7283', true)). +answer('urn:example:complies'('urn:example:bob7284', true)). +answer('urn:example:complies'('urn:example:bob7285', true)). +answer('urn:example:complies'('urn:example:bob7286', true)). +answer('urn:example:complies'('urn:example:bob7287', true)). +answer('urn:example:complies'('urn:example:bob7288', true)). +answer('urn:example:complies'('urn:example:bob7289', true)). +answer('urn:example:complies'('urn:example:bob7290', true)). +answer('urn:example:complies'('urn:example:bob7291', true)). +answer('urn:example:complies'('urn:example:bob7292', true)). +answer('urn:example:complies'('urn:example:bob7293', true)). +answer('urn:example:complies'('urn:example:bob7294', true)). +answer('urn:example:complies'('urn:example:bob7295', true)). +answer('urn:example:complies'('urn:example:bob7296', true)). +answer('urn:example:complies'('urn:example:bob7297', true)). +answer('urn:example:complies'('urn:example:bob7298', true)). +answer('urn:example:complies'('urn:example:bob7299', true)). +answer('urn:example:complies'('urn:example:bob7300', true)). +answer('urn:example:complies'('urn:example:bob7301', true)). +answer('urn:example:complies'('urn:example:bob7302', true)). +answer('urn:example:complies'('urn:example:bob7303', true)). +answer('urn:example:complies'('urn:example:bob7304', true)). +answer('urn:example:complies'('urn:example:bob7305', true)). +answer('urn:example:complies'('urn:example:bob7306', true)). +answer('urn:example:complies'('urn:example:bob7307', true)). +answer('urn:example:complies'('urn:example:bob7308', true)). +answer('urn:example:complies'('urn:example:bob7309', true)). +answer('urn:example:complies'('urn:example:bob7310', true)). +answer('urn:example:complies'('urn:example:bob7311', true)). +answer('urn:example:complies'('urn:example:bob7312', true)). +answer('urn:example:complies'('urn:example:bob7313', true)). +answer('urn:example:complies'('urn:example:bob7314', true)). +answer('urn:example:complies'('urn:example:bob7315', true)). +answer('urn:example:complies'('urn:example:bob7316', true)). +answer('urn:example:complies'('urn:example:bob7317', true)). +answer('urn:example:complies'('urn:example:bob7318', true)). +answer('urn:example:complies'('urn:example:bob7319', true)). +answer('urn:example:complies'('urn:example:bob7320', true)). +answer('urn:example:complies'('urn:example:bob7321', true)). +answer('urn:example:complies'('urn:example:bob7322', true)). +answer('urn:example:complies'('urn:example:bob7323', true)). +answer('urn:example:complies'('urn:example:bob7324', true)). +answer('urn:example:complies'('urn:example:bob7325', true)). +answer('urn:example:complies'('urn:example:bob7326', true)). +answer('urn:example:complies'('urn:example:bob7327', true)). +answer('urn:example:complies'('urn:example:bob7328', true)). +answer('urn:example:complies'('urn:example:bob7329', true)). +answer('urn:example:complies'('urn:example:bob7330', true)). +answer('urn:example:complies'('urn:example:bob7331', true)). +answer('urn:example:complies'('urn:example:bob7332', true)). +answer('urn:example:complies'('urn:example:bob7333', true)). +answer('urn:example:complies'('urn:example:bob7334', true)). +answer('urn:example:complies'('urn:example:bob7335', true)). +answer('urn:example:complies'('urn:example:bob7336', true)). +answer('urn:example:complies'('urn:example:bob7337', true)). +answer('urn:example:complies'('urn:example:bob7338', true)). +answer('urn:example:complies'('urn:example:bob7339', true)). +answer('urn:example:complies'('urn:example:bob7340', true)). +answer('urn:example:complies'('urn:example:bob7341', true)). +answer('urn:example:complies'('urn:example:bob7342', true)). +answer('urn:example:complies'('urn:example:bob7343', true)). +answer('urn:example:complies'('urn:example:bob7344', true)). +answer('urn:example:complies'('urn:example:bob7345', true)). +answer('urn:example:complies'('urn:example:bob7346', true)). +answer('urn:example:complies'('urn:example:bob7347', true)). +answer('urn:example:complies'('urn:example:bob7348', true)). +answer('urn:example:complies'('urn:example:bob7349', true)). +answer('urn:example:complies'('urn:example:bob7350', true)). +answer('urn:example:complies'('urn:example:bob7351', true)). +answer('urn:example:complies'('urn:example:bob7352', true)). +answer('urn:example:complies'('urn:example:bob7353', true)). +answer('urn:example:complies'('urn:example:bob7354', true)). +answer('urn:example:complies'('urn:example:bob7355', true)). +answer('urn:example:complies'('urn:example:bob7356', true)). +answer('urn:example:complies'('urn:example:bob7357', true)). +answer('urn:example:complies'('urn:example:bob7358', true)). +answer('urn:example:complies'('urn:example:bob7359', true)). +answer('urn:example:complies'('urn:example:bob7360', true)). +answer('urn:example:complies'('urn:example:bob7361', true)). +answer('urn:example:complies'('urn:example:bob7362', true)). +answer('urn:example:complies'('urn:example:bob7363', true)). +answer('urn:example:complies'('urn:example:bob7364', true)). +answer('urn:example:complies'('urn:example:bob7365', true)). +answer('urn:example:complies'('urn:example:bob7366', true)). +answer('urn:example:complies'('urn:example:bob7367', true)). +answer('urn:example:complies'('urn:example:bob7368', true)). +answer('urn:example:complies'('urn:example:bob7369', true)). +answer('urn:example:complies'('urn:example:bob7370', true)). +answer('urn:example:complies'('urn:example:bob7371', true)). +answer('urn:example:complies'('urn:example:bob7372', true)). +answer('urn:example:complies'('urn:example:bob7373', true)). +answer('urn:example:complies'('urn:example:bob7374', true)). +answer('urn:example:complies'('urn:example:bob7375', true)). +answer('urn:example:complies'('urn:example:bob7376', true)). +answer('urn:example:complies'('urn:example:bob7377', true)). +answer('urn:example:complies'('urn:example:bob7378', true)). +answer('urn:example:complies'('urn:example:bob7379', true)). +answer('urn:example:complies'('urn:example:bob7380', true)). +answer('urn:example:complies'('urn:example:bob7381', true)). +answer('urn:example:complies'('urn:example:bob7382', true)). +answer('urn:example:complies'('urn:example:bob7383', true)). +answer('urn:example:complies'('urn:example:bob7384', true)). +answer('urn:example:complies'('urn:example:bob7385', true)). +answer('urn:example:complies'('urn:example:bob7386', true)). +answer('urn:example:complies'('urn:example:bob7387', true)). +answer('urn:example:complies'('urn:example:bob7388', true)). +answer('urn:example:complies'('urn:example:bob7389', true)). +answer('urn:example:complies'('urn:example:bob7390', true)). +answer('urn:example:complies'('urn:example:bob7391', true)). +answer('urn:example:complies'('urn:example:bob7392', true)). +answer('urn:example:complies'('urn:example:bob7393', true)). +answer('urn:example:complies'('urn:example:bob7394', true)). +answer('urn:example:complies'('urn:example:bob7395', true)). +answer('urn:example:complies'('urn:example:bob7396', true)). +answer('urn:example:complies'('urn:example:bob7397', true)). +answer('urn:example:complies'('urn:example:bob7398', true)). +answer('urn:example:complies'('urn:example:bob7399', true)). +answer('urn:example:complies'('urn:example:bob7400', true)). +answer('urn:example:complies'('urn:example:bob7401', true)). +answer('urn:example:complies'('urn:example:bob7402', true)). +answer('urn:example:complies'('urn:example:bob7403', true)). +answer('urn:example:complies'('urn:example:bob7404', true)). +answer('urn:example:complies'('urn:example:bob7405', true)). +answer('urn:example:complies'('urn:example:bob7406', true)). +answer('urn:example:complies'('urn:example:bob7407', true)). +answer('urn:example:complies'('urn:example:bob7408', true)). +answer('urn:example:complies'('urn:example:bob7409', true)). +answer('urn:example:complies'('urn:example:bob7410', true)). +answer('urn:example:complies'('urn:example:bob7411', true)). +answer('urn:example:complies'('urn:example:bob7412', true)). +answer('urn:example:complies'('urn:example:bob7413', true)). +answer('urn:example:complies'('urn:example:bob7414', true)). +answer('urn:example:complies'('urn:example:bob7415', true)). +answer('urn:example:complies'('urn:example:bob7416', true)). +answer('urn:example:complies'('urn:example:bob7417', true)). +answer('urn:example:complies'('urn:example:bob7418', true)). +answer('urn:example:complies'('urn:example:bob7419', true)). +answer('urn:example:complies'('urn:example:bob7420', true)). +answer('urn:example:complies'('urn:example:bob7421', true)). +answer('urn:example:complies'('urn:example:bob7422', true)). +answer('urn:example:complies'('urn:example:bob7423', true)). +answer('urn:example:complies'('urn:example:bob7424', true)). +answer('urn:example:complies'('urn:example:bob7425', true)). +answer('urn:example:complies'('urn:example:bob7426', true)). +answer('urn:example:complies'('urn:example:bob7427', true)). +answer('urn:example:complies'('urn:example:bob7428', true)). +answer('urn:example:complies'('urn:example:bob7429', true)). +answer('urn:example:complies'('urn:example:bob7430', true)). +answer('urn:example:complies'('urn:example:bob7431', true)). +answer('urn:example:complies'('urn:example:bob7432', true)). +answer('urn:example:complies'('urn:example:bob7433', true)). +answer('urn:example:complies'('urn:example:bob7434', true)). +answer('urn:example:complies'('urn:example:bob7435', true)). +answer('urn:example:complies'('urn:example:bob7436', true)). +answer('urn:example:complies'('urn:example:bob7437', true)). +answer('urn:example:complies'('urn:example:bob7438', true)). +answer('urn:example:complies'('urn:example:bob7439', true)). +answer('urn:example:complies'('urn:example:bob7440', true)). +answer('urn:example:complies'('urn:example:bob7441', true)). +answer('urn:example:complies'('urn:example:bob7442', true)). +answer('urn:example:complies'('urn:example:bob7443', true)). +answer('urn:example:complies'('urn:example:bob7444', true)). +answer('urn:example:complies'('urn:example:bob7445', true)). +answer('urn:example:complies'('urn:example:bob7446', true)). +answer('urn:example:complies'('urn:example:bob7447', true)). +answer('urn:example:complies'('urn:example:bob7448', true)). +answer('urn:example:complies'('urn:example:bob7449', true)). +answer('urn:example:complies'('urn:example:bob7450', true)). +answer('urn:example:complies'('urn:example:bob7451', true)). +answer('urn:example:complies'('urn:example:bob7452', true)). +answer('urn:example:complies'('urn:example:bob7453', true)). +answer('urn:example:complies'('urn:example:bob7454', true)). +answer('urn:example:complies'('urn:example:bob7455', true)). +answer('urn:example:complies'('urn:example:bob7456', true)). +answer('urn:example:complies'('urn:example:bob7457', true)). +answer('urn:example:complies'('urn:example:bob7458', true)). +answer('urn:example:complies'('urn:example:bob7459', true)). +answer('urn:example:complies'('urn:example:bob7460', true)). +answer('urn:example:complies'('urn:example:bob7461', true)). +answer('urn:example:complies'('urn:example:bob7462', true)). +answer('urn:example:complies'('urn:example:bob7463', true)). +answer('urn:example:complies'('urn:example:bob7464', true)). +answer('urn:example:complies'('urn:example:bob7465', true)). +answer('urn:example:complies'('urn:example:bob7466', true)). +answer('urn:example:complies'('urn:example:bob7467', true)). +answer('urn:example:complies'('urn:example:bob7468', true)). +answer('urn:example:complies'('urn:example:bob7469', true)). +answer('urn:example:complies'('urn:example:bob7470', true)). +answer('urn:example:complies'('urn:example:bob7471', true)). +answer('urn:example:complies'('urn:example:bob7472', true)). +answer('urn:example:complies'('urn:example:bob7473', true)). +answer('urn:example:complies'('urn:example:bob7474', true)). +answer('urn:example:complies'('urn:example:bob7475', true)). +answer('urn:example:complies'('urn:example:bob7476', true)). +answer('urn:example:complies'('urn:example:bob7477', true)). +answer('urn:example:complies'('urn:example:bob7478', true)). +answer('urn:example:complies'('urn:example:bob7479', true)). +answer('urn:example:complies'('urn:example:bob7480', true)). +answer('urn:example:complies'('urn:example:bob7481', true)). +answer('urn:example:complies'('urn:example:bob7482', true)). +answer('urn:example:complies'('urn:example:bob7483', true)). +answer('urn:example:complies'('urn:example:bob7484', true)). +answer('urn:example:complies'('urn:example:bob7485', true)). +answer('urn:example:complies'('urn:example:bob7486', true)). +answer('urn:example:complies'('urn:example:bob7487', true)). +answer('urn:example:complies'('urn:example:bob7488', true)). +answer('urn:example:complies'('urn:example:bob7489', true)). +answer('urn:example:complies'('urn:example:bob7490', true)). +answer('urn:example:complies'('urn:example:bob7491', true)). +answer('urn:example:complies'('urn:example:bob7492', true)). +answer('urn:example:complies'('urn:example:bob7493', true)). +answer('urn:example:complies'('urn:example:bob7494', true)). +answer('urn:example:complies'('urn:example:bob7495', true)). +answer('urn:example:complies'('urn:example:bob7496', true)). +answer('urn:example:complies'('urn:example:bob7497', true)). +answer('urn:example:complies'('urn:example:bob7498', true)). +answer('urn:example:complies'('urn:example:bob7499', true)). +answer('urn:example:complies'('urn:example:bob7500', true)). +answer('urn:example:complies'('urn:example:bob7501', true)). +answer('urn:example:complies'('urn:example:bob7502', true)). +answer('urn:example:complies'('urn:example:bob7503', true)). +answer('urn:example:complies'('urn:example:bob7504', true)). +answer('urn:example:complies'('urn:example:bob7505', true)). +answer('urn:example:complies'('urn:example:bob7506', true)). +answer('urn:example:complies'('urn:example:bob7507', true)). +answer('urn:example:complies'('urn:example:bob7508', true)). +answer('urn:example:complies'('urn:example:bob7509', true)). +answer('urn:example:complies'('urn:example:bob7510', true)). +answer('urn:example:complies'('urn:example:bob7511', true)). +answer('urn:example:complies'('urn:example:bob7512', true)). +answer('urn:example:complies'('urn:example:bob7513', true)). +answer('urn:example:complies'('urn:example:bob7514', true)). +answer('urn:example:complies'('urn:example:bob7515', true)). +answer('urn:example:complies'('urn:example:bob7516', true)). +answer('urn:example:complies'('urn:example:bob7517', true)). +answer('urn:example:complies'('urn:example:bob7518', true)). +answer('urn:example:complies'('urn:example:bob7519', true)). +answer('urn:example:complies'('urn:example:bob7520', true)). +answer('urn:example:complies'('urn:example:bob7521', true)). +answer('urn:example:complies'('urn:example:bob7522', true)). +answer('urn:example:complies'('urn:example:bob7523', true)). +answer('urn:example:complies'('urn:example:bob7524', true)). +answer('urn:example:complies'('urn:example:bob7525', true)). +answer('urn:example:complies'('urn:example:bob7526', true)). +answer('urn:example:complies'('urn:example:bob7527', true)). +answer('urn:example:complies'('urn:example:bob7528', true)). +answer('urn:example:complies'('urn:example:bob7529', true)). +answer('urn:example:complies'('urn:example:bob7530', true)). +answer('urn:example:complies'('urn:example:bob7531', true)). +answer('urn:example:complies'('urn:example:bob7532', true)). +answer('urn:example:complies'('urn:example:bob7533', true)). +answer('urn:example:complies'('urn:example:bob7534', true)). +answer('urn:example:complies'('urn:example:bob7535', true)). +answer('urn:example:complies'('urn:example:bob7536', true)). +answer('urn:example:complies'('urn:example:bob7537', true)). +answer('urn:example:complies'('urn:example:bob7538', true)). +answer('urn:example:complies'('urn:example:bob7539', true)). +answer('urn:example:complies'('urn:example:bob7540', true)). +answer('urn:example:complies'('urn:example:bob7541', true)). +answer('urn:example:complies'('urn:example:bob7542', true)). +answer('urn:example:complies'('urn:example:bob7543', true)). +answer('urn:example:complies'('urn:example:bob7544', true)). +answer('urn:example:complies'('urn:example:bob7545', true)). +answer('urn:example:complies'('urn:example:bob7546', true)). +answer('urn:example:complies'('urn:example:bob7547', true)). +answer('urn:example:complies'('urn:example:bob7548', true)). +answer('urn:example:complies'('urn:example:bob7549', true)). +answer('urn:example:complies'('urn:example:bob7550', true)). +answer('urn:example:complies'('urn:example:bob7551', true)). +answer('urn:example:complies'('urn:example:bob7552', true)). +answer('urn:example:complies'('urn:example:bob7553', true)). +answer('urn:example:complies'('urn:example:bob7554', true)). +answer('urn:example:complies'('urn:example:bob7555', true)). +answer('urn:example:complies'('urn:example:bob7556', true)). +answer('urn:example:complies'('urn:example:bob7557', true)). +answer('urn:example:complies'('urn:example:bob7558', true)). +answer('urn:example:complies'('urn:example:bob7559', true)). +answer('urn:example:complies'('urn:example:bob7560', true)). +answer('urn:example:complies'('urn:example:bob7561', true)). +answer('urn:example:complies'('urn:example:bob7562', true)). +answer('urn:example:complies'('urn:example:bob7563', true)). +answer('urn:example:complies'('urn:example:bob7564', true)). +answer('urn:example:complies'('urn:example:bob7565', true)). +answer('urn:example:complies'('urn:example:bob7566', true)). +answer('urn:example:complies'('urn:example:bob7567', true)). +answer('urn:example:complies'('urn:example:bob7568', true)). +answer('urn:example:complies'('urn:example:bob7569', true)). +answer('urn:example:complies'('urn:example:bob7570', true)). +answer('urn:example:complies'('urn:example:bob7571', true)). +answer('urn:example:complies'('urn:example:bob7572', true)). +answer('urn:example:complies'('urn:example:bob7573', true)). +answer('urn:example:complies'('urn:example:bob7574', true)). +answer('urn:example:complies'('urn:example:bob7575', true)). +answer('urn:example:complies'('urn:example:bob7576', true)). +answer('urn:example:complies'('urn:example:bob7577', true)). +answer('urn:example:complies'('urn:example:bob7578', true)). +answer('urn:example:complies'('urn:example:bob7579', true)). +answer('urn:example:complies'('urn:example:bob7580', true)). +answer('urn:example:complies'('urn:example:bob7581', true)). +answer('urn:example:complies'('urn:example:bob7582', true)). +answer('urn:example:complies'('urn:example:bob7583', true)). +answer('urn:example:complies'('urn:example:bob7584', true)). +answer('urn:example:complies'('urn:example:bob7585', true)). +answer('urn:example:complies'('urn:example:bob7586', true)). +answer('urn:example:complies'('urn:example:bob7587', true)). +answer('urn:example:complies'('urn:example:bob7588', true)). +answer('urn:example:complies'('urn:example:bob7589', true)). +answer('urn:example:complies'('urn:example:bob7590', true)). +answer('urn:example:complies'('urn:example:bob7591', true)). +answer('urn:example:complies'('urn:example:bob7592', true)). +answer('urn:example:complies'('urn:example:bob7593', true)). +answer('urn:example:complies'('urn:example:bob7594', true)). +answer('urn:example:complies'('urn:example:bob7595', true)). +answer('urn:example:complies'('urn:example:bob7596', true)). +answer('urn:example:complies'('urn:example:bob7597', true)). +answer('urn:example:complies'('urn:example:bob7598', true)). +answer('urn:example:complies'('urn:example:bob7599', true)). +answer('urn:example:complies'('urn:example:bob7600', true)). +answer('urn:example:complies'('urn:example:bob7601', true)). +answer('urn:example:complies'('urn:example:bob7602', true)). +answer('urn:example:complies'('urn:example:bob7603', true)). +answer('urn:example:complies'('urn:example:bob7604', true)). +answer('urn:example:complies'('urn:example:bob7605', true)). +answer('urn:example:complies'('urn:example:bob7606', true)). +answer('urn:example:complies'('urn:example:bob7607', true)). +answer('urn:example:complies'('urn:example:bob7608', true)). +answer('urn:example:complies'('urn:example:bob7609', true)). +answer('urn:example:complies'('urn:example:bob7610', true)). +answer('urn:example:complies'('urn:example:bob7611', true)). +answer('urn:example:complies'('urn:example:bob7612', true)). +answer('urn:example:complies'('urn:example:bob7613', true)). +answer('urn:example:complies'('urn:example:bob7614', true)). +answer('urn:example:complies'('urn:example:bob7615', true)). +answer('urn:example:complies'('urn:example:bob7616', true)). +answer('urn:example:complies'('urn:example:bob7617', true)). +answer('urn:example:complies'('urn:example:bob7618', true)). +answer('urn:example:complies'('urn:example:bob7619', true)). +answer('urn:example:complies'('urn:example:bob7620', true)). +answer('urn:example:complies'('urn:example:bob7621', true)). +answer('urn:example:complies'('urn:example:bob7622', true)). +answer('urn:example:complies'('urn:example:bob7623', true)). +answer('urn:example:complies'('urn:example:bob7624', true)). +answer('urn:example:complies'('urn:example:bob7625', true)). +answer('urn:example:complies'('urn:example:bob7626', true)). +answer('urn:example:complies'('urn:example:bob7627', true)). +answer('urn:example:complies'('urn:example:bob7628', true)). +answer('urn:example:complies'('urn:example:bob7629', true)). +answer('urn:example:complies'('urn:example:bob7630', true)). +answer('urn:example:complies'('urn:example:bob7631', true)). +answer('urn:example:complies'('urn:example:bob7632', true)). +answer('urn:example:complies'('urn:example:bob7633', true)). +answer('urn:example:complies'('urn:example:bob7634', true)). +answer('urn:example:complies'('urn:example:bob7635', true)). +answer('urn:example:complies'('urn:example:bob7636', true)). +answer('urn:example:complies'('urn:example:bob7637', true)). +answer('urn:example:complies'('urn:example:bob7638', true)). +answer('urn:example:complies'('urn:example:bob7639', true)). +answer('urn:example:complies'('urn:example:bob7640', true)). +answer('urn:example:complies'('urn:example:bob7641', true)). +answer('urn:example:complies'('urn:example:bob7642', true)). +answer('urn:example:complies'('urn:example:bob7643', true)). +answer('urn:example:complies'('urn:example:bob7644', true)). +answer('urn:example:complies'('urn:example:bob7645', true)). +answer('urn:example:complies'('urn:example:bob7646', true)). +answer('urn:example:complies'('urn:example:bob7647', true)). +answer('urn:example:complies'('urn:example:bob7648', true)). +answer('urn:example:complies'('urn:example:bob7649', true)). +answer('urn:example:complies'('urn:example:bob7650', true)). +answer('urn:example:complies'('urn:example:bob7651', true)). +answer('urn:example:complies'('urn:example:bob7652', true)). +answer('urn:example:complies'('urn:example:bob7653', true)). +answer('urn:example:complies'('urn:example:bob7654', true)). +answer('urn:example:complies'('urn:example:bob7655', true)). +answer('urn:example:complies'('urn:example:bob7656', true)). +answer('urn:example:complies'('urn:example:bob7657', true)). +answer('urn:example:complies'('urn:example:bob7658', true)). +answer('urn:example:complies'('urn:example:bob7659', true)). +answer('urn:example:complies'('urn:example:bob7660', true)). +answer('urn:example:complies'('urn:example:bob7661', true)). +answer('urn:example:complies'('urn:example:bob7662', true)). +answer('urn:example:complies'('urn:example:bob7663', true)). +answer('urn:example:complies'('urn:example:bob7664', true)). +answer('urn:example:complies'('urn:example:bob7665', true)). +answer('urn:example:complies'('urn:example:bob7666', true)). +answer('urn:example:complies'('urn:example:bob7667', true)). +answer('urn:example:complies'('urn:example:bob7668', true)). +answer('urn:example:complies'('urn:example:bob7669', true)). +answer('urn:example:complies'('urn:example:bob7670', true)). +answer('urn:example:complies'('urn:example:bob7671', true)). +answer('urn:example:complies'('urn:example:bob7672', true)). +answer('urn:example:complies'('urn:example:bob7673', true)). +answer('urn:example:complies'('urn:example:bob7674', true)). +answer('urn:example:complies'('urn:example:bob7675', true)). +answer('urn:example:complies'('urn:example:bob7676', true)). +answer('urn:example:complies'('urn:example:bob7677', true)). +answer('urn:example:complies'('urn:example:bob7678', true)). +answer('urn:example:complies'('urn:example:bob7679', true)). +answer('urn:example:complies'('urn:example:bob7680', true)). +answer('urn:example:complies'('urn:example:bob7681', true)). +answer('urn:example:complies'('urn:example:bob7682', true)). +answer('urn:example:complies'('urn:example:bob7683', true)). +answer('urn:example:complies'('urn:example:bob7684', true)). +answer('urn:example:complies'('urn:example:bob7685', true)). +answer('urn:example:complies'('urn:example:bob7686', true)). +answer('urn:example:complies'('urn:example:bob7687', true)). +answer('urn:example:complies'('urn:example:bob7688', true)). +answer('urn:example:complies'('urn:example:bob7689', true)). +answer('urn:example:complies'('urn:example:bob7690', true)). +answer('urn:example:complies'('urn:example:bob7691', true)). +answer('urn:example:complies'('urn:example:bob7692', true)). +answer('urn:example:complies'('urn:example:bob7693', true)). +answer('urn:example:complies'('urn:example:bob7694', true)). +answer('urn:example:complies'('urn:example:bob7695', true)). +answer('urn:example:complies'('urn:example:bob7696', true)). +answer('urn:example:complies'('urn:example:bob7697', true)). +answer('urn:example:complies'('urn:example:bob7698', true)). +answer('urn:example:complies'('urn:example:bob7699', true)). +answer('urn:example:complies'('urn:example:bob7700', true)). +answer('urn:example:complies'('urn:example:bob7701', true)). +answer('urn:example:complies'('urn:example:bob7702', true)). +answer('urn:example:complies'('urn:example:bob7703', true)). +answer('urn:example:complies'('urn:example:bob7704', true)). +answer('urn:example:complies'('urn:example:bob7705', true)). +answer('urn:example:complies'('urn:example:bob7706', true)). +answer('urn:example:complies'('urn:example:bob7707', true)). +answer('urn:example:complies'('urn:example:bob7708', true)). +answer('urn:example:complies'('urn:example:bob7709', true)). +answer('urn:example:complies'('urn:example:bob7710', true)). +answer('urn:example:complies'('urn:example:bob7711', true)). +answer('urn:example:complies'('urn:example:bob7712', true)). +answer('urn:example:complies'('urn:example:bob7713', true)). +answer('urn:example:complies'('urn:example:bob7714', true)). +answer('urn:example:complies'('urn:example:bob7715', true)). +answer('urn:example:complies'('urn:example:bob7716', true)). +answer('urn:example:complies'('urn:example:bob7717', true)). +answer('urn:example:complies'('urn:example:bob7718', true)). +answer('urn:example:complies'('urn:example:bob7719', true)). +answer('urn:example:complies'('urn:example:bob7720', true)). +answer('urn:example:complies'('urn:example:bob7721', true)). +answer('urn:example:complies'('urn:example:bob7722', true)). +answer('urn:example:complies'('urn:example:bob7723', true)). +answer('urn:example:complies'('urn:example:bob7724', true)). +answer('urn:example:complies'('urn:example:bob7725', true)). +answer('urn:example:complies'('urn:example:bob7726', true)). +answer('urn:example:complies'('urn:example:bob7727', true)). +answer('urn:example:complies'('urn:example:bob7728', true)). +answer('urn:example:complies'('urn:example:bob7729', true)). +answer('urn:example:complies'('urn:example:bob7730', true)). +answer('urn:example:complies'('urn:example:bob7731', true)). +answer('urn:example:complies'('urn:example:bob7732', true)). +answer('urn:example:complies'('urn:example:bob7733', true)). +answer('urn:example:complies'('urn:example:bob7734', true)). +answer('urn:example:complies'('urn:example:bob7735', true)). +answer('urn:example:complies'('urn:example:bob7736', true)). +answer('urn:example:complies'('urn:example:bob7737', true)). +answer('urn:example:complies'('urn:example:bob7738', true)). +answer('urn:example:complies'('urn:example:bob7739', true)). +answer('urn:example:complies'('urn:example:bob7740', true)). +answer('urn:example:complies'('urn:example:bob7741', true)). +answer('urn:example:complies'('urn:example:bob7742', true)). +answer('urn:example:complies'('urn:example:bob7743', true)). +answer('urn:example:complies'('urn:example:bob7744', true)). +answer('urn:example:complies'('urn:example:bob7745', true)). +answer('urn:example:complies'('urn:example:bob7746', true)). +answer('urn:example:complies'('urn:example:bob7747', true)). +answer('urn:example:complies'('urn:example:bob7748', true)). +answer('urn:example:complies'('urn:example:bob7749', true)). +answer('urn:example:complies'('urn:example:bob7750', true)). +answer('urn:example:complies'('urn:example:bob7751', true)). +answer('urn:example:complies'('urn:example:bob7752', true)). +answer('urn:example:complies'('urn:example:bob7753', true)). +answer('urn:example:complies'('urn:example:bob7754', true)). +answer('urn:example:complies'('urn:example:bob7755', true)). +answer('urn:example:complies'('urn:example:bob7756', true)). +answer('urn:example:complies'('urn:example:bob7757', true)). +answer('urn:example:complies'('urn:example:bob7758', true)). +answer('urn:example:complies'('urn:example:bob7759', true)). +answer('urn:example:complies'('urn:example:bob7760', true)). +answer('urn:example:complies'('urn:example:bob7761', true)). +answer('urn:example:complies'('urn:example:bob7762', true)). +answer('urn:example:complies'('urn:example:bob7763', true)). +answer('urn:example:complies'('urn:example:bob7764', true)). +answer('urn:example:complies'('urn:example:bob7765', true)). +answer('urn:example:complies'('urn:example:bob7766', true)). +answer('urn:example:complies'('urn:example:bob7767', true)). +answer('urn:example:complies'('urn:example:bob7768', true)). +answer('urn:example:complies'('urn:example:bob7769', true)). +answer('urn:example:complies'('urn:example:bob7770', true)). +answer('urn:example:complies'('urn:example:bob7771', true)). +answer('urn:example:complies'('urn:example:bob7772', true)). +answer('urn:example:complies'('urn:example:bob7773', true)). +answer('urn:example:complies'('urn:example:bob7774', true)). +answer('urn:example:complies'('urn:example:bob7775', true)). +answer('urn:example:complies'('urn:example:bob7776', true)). +answer('urn:example:complies'('urn:example:bob7777', true)). +answer('urn:example:complies'('urn:example:bob7778', true)). +answer('urn:example:complies'('urn:example:bob7779', true)). +answer('urn:example:complies'('urn:example:bob7780', true)). +answer('urn:example:complies'('urn:example:bob7781', true)). +answer('urn:example:complies'('urn:example:bob7782', true)). +answer('urn:example:complies'('urn:example:bob7783', true)). +answer('urn:example:complies'('urn:example:bob7784', true)). +answer('urn:example:complies'('urn:example:bob7785', true)). +answer('urn:example:complies'('urn:example:bob7786', true)). +answer('urn:example:complies'('urn:example:bob7787', true)). +answer('urn:example:complies'('urn:example:bob7788', true)). +answer('urn:example:complies'('urn:example:bob7789', true)). +answer('urn:example:complies'('urn:example:bob7790', true)). +answer('urn:example:complies'('urn:example:bob7791', true)). +answer('urn:example:complies'('urn:example:bob7792', true)). +answer('urn:example:complies'('urn:example:bob7793', true)). +answer('urn:example:complies'('urn:example:bob7794', true)). +answer('urn:example:complies'('urn:example:bob7795', true)). +answer('urn:example:complies'('urn:example:bob7796', true)). +answer('urn:example:complies'('urn:example:bob7797', true)). +answer('urn:example:complies'('urn:example:bob7798', true)). +answer('urn:example:complies'('urn:example:bob7799', true)). +answer('urn:example:complies'('urn:example:bob7800', true)). +answer('urn:example:complies'('urn:example:bob7801', true)). +answer('urn:example:complies'('urn:example:bob7802', true)). +answer('urn:example:complies'('urn:example:bob7803', true)). +answer('urn:example:complies'('urn:example:bob7804', true)). +answer('urn:example:complies'('urn:example:bob7805', true)). +answer('urn:example:complies'('urn:example:bob7806', true)). +answer('urn:example:complies'('urn:example:bob7807', true)). +answer('urn:example:complies'('urn:example:bob7808', true)). +answer('urn:example:complies'('urn:example:bob7809', true)). +answer('urn:example:complies'('urn:example:bob7810', true)). +answer('urn:example:complies'('urn:example:bob7811', true)). +answer('urn:example:complies'('urn:example:bob7812', true)). +answer('urn:example:complies'('urn:example:bob7813', true)). +answer('urn:example:complies'('urn:example:bob7814', true)). +answer('urn:example:complies'('urn:example:bob7815', true)). +answer('urn:example:complies'('urn:example:bob7816', true)). +answer('urn:example:complies'('urn:example:bob7817', true)). +answer('urn:example:complies'('urn:example:bob7818', true)). +answer('urn:example:complies'('urn:example:bob7819', true)). +answer('urn:example:complies'('urn:example:bob7820', true)). +answer('urn:example:complies'('urn:example:bob7821', true)). +answer('urn:example:complies'('urn:example:bob7822', true)). +answer('urn:example:complies'('urn:example:bob7823', true)). +answer('urn:example:complies'('urn:example:bob7824', true)). +answer('urn:example:complies'('urn:example:bob7825', true)). +answer('urn:example:complies'('urn:example:bob7826', true)). +answer('urn:example:complies'('urn:example:bob7827', true)). +answer('urn:example:complies'('urn:example:bob7828', true)). +answer('urn:example:complies'('urn:example:bob7829', true)). +answer('urn:example:complies'('urn:example:bob7830', true)). +answer('urn:example:complies'('urn:example:bob7831', true)). +answer('urn:example:complies'('urn:example:bob7832', true)). +answer('urn:example:complies'('urn:example:bob7833', true)). +answer('urn:example:complies'('urn:example:bob7834', true)). +answer('urn:example:complies'('urn:example:bob7835', true)). +answer('urn:example:complies'('urn:example:bob7836', true)). +answer('urn:example:complies'('urn:example:bob7837', true)). +answer('urn:example:complies'('urn:example:bob7838', true)). +answer('urn:example:complies'('urn:example:bob7839', true)). +answer('urn:example:complies'('urn:example:bob7840', true)). +answer('urn:example:complies'('urn:example:bob7841', true)). +answer('urn:example:complies'('urn:example:bob7842', true)). +answer('urn:example:complies'('urn:example:bob7843', true)). +answer('urn:example:complies'('urn:example:bob7844', true)). +answer('urn:example:complies'('urn:example:bob7845', true)). +answer('urn:example:complies'('urn:example:bob7846', true)). +answer('urn:example:complies'('urn:example:bob7847', true)). +answer('urn:example:complies'('urn:example:bob7848', true)). +answer('urn:example:complies'('urn:example:bob7849', true)). +answer('urn:example:complies'('urn:example:bob7850', true)). +answer('urn:example:complies'('urn:example:bob7851', true)). +answer('urn:example:complies'('urn:example:bob7852', true)). +answer('urn:example:complies'('urn:example:bob7853', true)). +answer('urn:example:complies'('urn:example:bob7854', true)). +answer('urn:example:complies'('urn:example:bob7855', true)). +answer('urn:example:complies'('urn:example:bob7856', true)). +answer('urn:example:complies'('urn:example:bob7857', true)). +answer('urn:example:complies'('urn:example:bob7858', true)). +answer('urn:example:complies'('urn:example:bob7859', true)). +answer('urn:example:complies'('urn:example:bob7860', true)). +answer('urn:example:complies'('urn:example:bob7861', true)). +answer('urn:example:complies'('urn:example:bob7862', true)). +answer('urn:example:complies'('urn:example:bob7863', true)). +answer('urn:example:complies'('urn:example:bob7864', true)). +answer('urn:example:complies'('urn:example:bob7865', true)). +answer('urn:example:complies'('urn:example:bob7866', true)). +answer('urn:example:complies'('urn:example:bob7867', true)). +answer('urn:example:complies'('urn:example:bob7868', true)). +answer('urn:example:complies'('urn:example:bob7869', true)). +answer('urn:example:complies'('urn:example:bob7870', true)). +answer('urn:example:complies'('urn:example:bob7871', true)). +answer('urn:example:complies'('urn:example:bob7872', true)). +answer('urn:example:complies'('urn:example:bob7873', true)). +answer('urn:example:complies'('urn:example:bob7874', true)). +answer('urn:example:complies'('urn:example:bob7875', true)). +answer('urn:example:complies'('urn:example:bob7876', true)). +answer('urn:example:complies'('urn:example:bob7877', true)). +answer('urn:example:complies'('urn:example:bob7878', true)). +answer('urn:example:complies'('urn:example:bob7879', true)). +answer('urn:example:complies'('urn:example:bob7880', true)). +answer('urn:example:complies'('urn:example:bob7881', true)). +answer('urn:example:complies'('urn:example:bob7882', true)). +answer('urn:example:complies'('urn:example:bob7883', true)). +answer('urn:example:complies'('urn:example:bob7884', true)). +answer('urn:example:complies'('urn:example:bob7885', true)). +answer('urn:example:complies'('urn:example:bob7886', true)). +answer('urn:example:complies'('urn:example:bob7887', true)). +answer('urn:example:complies'('urn:example:bob7888', true)). +answer('urn:example:complies'('urn:example:bob7889', true)). +answer('urn:example:complies'('urn:example:bob7890', true)). +answer('urn:example:complies'('urn:example:bob7891', true)). +answer('urn:example:complies'('urn:example:bob7892', true)). +answer('urn:example:complies'('urn:example:bob7893', true)). +answer('urn:example:complies'('urn:example:bob7894', true)). +answer('urn:example:complies'('urn:example:bob7895', true)). +answer('urn:example:complies'('urn:example:bob7896', true)). +answer('urn:example:complies'('urn:example:bob7897', true)). +answer('urn:example:complies'('urn:example:bob7898', true)). +answer('urn:example:complies'('urn:example:bob7899', true)). +answer('urn:example:complies'('urn:example:bob7900', true)). +answer('urn:example:complies'('urn:example:bob7901', true)). +answer('urn:example:complies'('urn:example:bob7902', true)). +answer('urn:example:complies'('urn:example:bob7903', true)). +answer('urn:example:complies'('urn:example:bob7904', true)). +answer('urn:example:complies'('urn:example:bob7905', true)). +answer('urn:example:complies'('urn:example:bob7906', true)). +answer('urn:example:complies'('urn:example:bob7907', true)). +answer('urn:example:complies'('urn:example:bob7908', true)). +answer('urn:example:complies'('urn:example:bob7909', true)). +answer('urn:example:complies'('urn:example:bob7910', true)). +answer('urn:example:complies'('urn:example:bob7911', true)). +answer('urn:example:complies'('urn:example:bob7912', true)). +answer('urn:example:complies'('urn:example:bob7913', true)). +answer('urn:example:complies'('urn:example:bob7914', true)). +answer('urn:example:complies'('urn:example:bob7915', true)). +answer('urn:example:complies'('urn:example:bob7916', true)). +answer('urn:example:complies'('urn:example:bob7917', true)). +answer('urn:example:complies'('urn:example:bob7918', true)). +answer('urn:example:complies'('urn:example:bob7919', true)). +answer('urn:example:complies'('urn:example:bob7920', true)). +answer('urn:example:complies'('urn:example:bob7921', true)). +answer('urn:example:complies'('urn:example:bob7922', true)). +answer('urn:example:complies'('urn:example:bob7923', true)). +answer('urn:example:complies'('urn:example:bob7924', true)). +answer('urn:example:complies'('urn:example:bob7925', true)). +answer('urn:example:complies'('urn:example:bob7926', true)). +answer('urn:example:complies'('urn:example:bob7927', true)). +answer('urn:example:complies'('urn:example:bob7928', true)). +answer('urn:example:complies'('urn:example:bob7929', true)). +answer('urn:example:complies'('urn:example:bob7930', true)). +answer('urn:example:complies'('urn:example:bob7931', true)). +answer('urn:example:complies'('urn:example:bob7932', true)). +answer('urn:example:complies'('urn:example:bob7933', true)). +answer('urn:example:complies'('urn:example:bob7934', true)). +answer('urn:example:complies'('urn:example:bob7935', true)). +answer('urn:example:complies'('urn:example:bob7936', true)). +answer('urn:example:complies'('urn:example:bob7937', true)). +answer('urn:example:complies'('urn:example:bob7938', true)). +answer('urn:example:complies'('urn:example:bob7939', true)). +answer('urn:example:complies'('urn:example:bob7940', true)). +answer('urn:example:complies'('urn:example:bob7941', true)). +answer('urn:example:complies'('urn:example:bob7942', true)). +answer('urn:example:complies'('urn:example:bob7943', true)). +answer('urn:example:complies'('urn:example:bob7944', true)). +answer('urn:example:complies'('urn:example:bob7945', true)). +answer('urn:example:complies'('urn:example:bob7946', true)). +answer('urn:example:complies'('urn:example:bob7947', true)). +answer('urn:example:complies'('urn:example:bob7948', true)). +answer('urn:example:complies'('urn:example:bob7949', true)). +answer('urn:example:complies'('urn:example:bob7950', true)). +answer('urn:example:complies'('urn:example:bob7951', true)). +answer('urn:example:complies'('urn:example:bob7952', true)). +answer('urn:example:complies'('urn:example:bob7953', true)). +answer('urn:example:complies'('urn:example:bob7954', true)). +answer('urn:example:complies'('urn:example:bob7955', true)). +answer('urn:example:complies'('urn:example:bob7956', true)). +answer('urn:example:complies'('urn:example:bob7957', true)). +answer('urn:example:complies'('urn:example:bob7958', true)). +answer('urn:example:complies'('urn:example:bob7959', true)). +answer('urn:example:complies'('urn:example:bob7960', true)). +answer('urn:example:complies'('urn:example:bob7961', true)). +answer('urn:example:complies'('urn:example:bob7962', true)). +answer('urn:example:complies'('urn:example:bob7963', true)). +answer('urn:example:complies'('urn:example:bob7964', true)). +answer('urn:example:complies'('urn:example:bob7965', true)). +answer('urn:example:complies'('urn:example:bob7966', true)). +answer('urn:example:complies'('urn:example:bob7967', true)). +answer('urn:example:complies'('urn:example:bob7968', true)). +answer('urn:example:complies'('urn:example:bob7969', true)). +answer('urn:example:complies'('urn:example:bob7970', true)). +answer('urn:example:complies'('urn:example:bob7971', true)). +answer('urn:example:complies'('urn:example:bob7972', true)). +answer('urn:example:complies'('urn:example:bob7973', true)). +answer('urn:example:complies'('urn:example:bob7974', true)). +answer('urn:example:complies'('urn:example:bob7975', true)). +answer('urn:example:complies'('urn:example:bob7976', true)). +answer('urn:example:complies'('urn:example:bob7977', true)). +answer('urn:example:complies'('urn:example:bob7978', true)). +answer('urn:example:complies'('urn:example:bob7979', true)). +answer('urn:example:complies'('urn:example:bob7980', true)). +answer('urn:example:complies'('urn:example:bob7981', true)). +answer('urn:example:complies'('urn:example:bob7982', true)). +answer('urn:example:complies'('urn:example:bob7983', true)). +answer('urn:example:complies'('urn:example:bob7984', true)). +answer('urn:example:complies'('urn:example:bob7985', true)). +answer('urn:example:complies'('urn:example:bob7986', true)). +answer('urn:example:complies'('urn:example:bob7987', true)). +answer('urn:example:complies'('urn:example:bob7988', true)). +answer('urn:example:complies'('urn:example:bob7989', true)). +answer('urn:example:complies'('urn:example:bob7990', true)). +answer('urn:example:complies'('urn:example:bob7991', true)). +answer('urn:example:complies'('urn:example:bob7992', true)). +answer('urn:example:complies'('urn:example:bob7993', true)). +answer('urn:example:complies'('urn:example:bob7994', true)). +answer('urn:example:complies'('urn:example:bob7995', true)). +answer('urn:example:complies'('urn:example:bob7996', true)). +answer('urn:example:complies'('urn:example:bob7997', true)). +answer('urn:example:complies'('urn:example:bob7998', true)). +answer('urn:example:complies'('urn:example:bob7999', true)). +answer('urn:example:complies'('urn:example:bob8000', true)). +answer('urn:example:complies'('urn:example:bob8001', true)). +answer('urn:example:complies'('urn:example:bob8002', true)). +answer('urn:example:complies'('urn:example:bob8003', true)). +answer('urn:example:complies'('urn:example:bob8004', true)). +answer('urn:example:complies'('urn:example:bob8005', true)). +answer('urn:example:complies'('urn:example:bob8006', true)). +answer('urn:example:complies'('urn:example:bob8007', true)). +answer('urn:example:complies'('urn:example:bob8008', true)). +answer('urn:example:complies'('urn:example:bob8009', true)). +answer('urn:example:complies'('urn:example:bob8010', true)). +answer('urn:example:complies'('urn:example:bob8011', true)). +answer('urn:example:complies'('urn:example:bob8012', true)). +answer('urn:example:complies'('urn:example:bob8013', true)). +answer('urn:example:complies'('urn:example:bob8014', true)). +answer('urn:example:complies'('urn:example:bob8015', true)). +answer('urn:example:complies'('urn:example:bob8016', true)). +answer('urn:example:complies'('urn:example:bob8017', true)). +answer('urn:example:complies'('urn:example:bob8018', true)). +answer('urn:example:complies'('urn:example:bob8019', true)). +answer('urn:example:complies'('urn:example:bob8020', true)). +answer('urn:example:complies'('urn:example:bob8021', true)). +answer('urn:example:complies'('urn:example:bob8022', true)). +answer('urn:example:complies'('urn:example:bob8023', true)). +answer('urn:example:complies'('urn:example:bob8024', true)). +answer('urn:example:complies'('urn:example:bob8025', true)). +answer('urn:example:complies'('urn:example:bob8026', true)). +answer('urn:example:complies'('urn:example:bob8027', true)). +answer('urn:example:complies'('urn:example:bob8028', true)). +answer('urn:example:complies'('urn:example:bob8029', true)). +answer('urn:example:complies'('urn:example:bob8030', true)). +answer('urn:example:complies'('urn:example:bob8031', true)). +answer('urn:example:complies'('urn:example:bob8032', true)). +answer('urn:example:complies'('urn:example:bob8033', true)). +answer('urn:example:complies'('urn:example:bob8034', true)). +answer('urn:example:complies'('urn:example:bob8035', true)). +answer('urn:example:complies'('urn:example:bob8036', true)). +answer('urn:example:complies'('urn:example:bob8037', true)). +answer('urn:example:complies'('urn:example:bob8038', true)). +answer('urn:example:complies'('urn:example:bob8039', true)). +answer('urn:example:complies'('urn:example:bob8040', true)). +answer('urn:example:complies'('urn:example:bob8041', true)). +answer('urn:example:complies'('urn:example:bob8042', true)). +answer('urn:example:complies'('urn:example:bob8043', true)). +answer('urn:example:complies'('urn:example:bob8044', true)). +answer('urn:example:complies'('urn:example:bob8045', true)). +answer('urn:example:complies'('urn:example:bob8046', true)). +answer('urn:example:complies'('urn:example:bob8047', true)). +answer('urn:example:complies'('urn:example:bob8048', true)). +answer('urn:example:complies'('urn:example:bob8049', true)). +answer('urn:example:complies'('urn:example:bob8050', true)). +answer('urn:example:complies'('urn:example:bob8051', true)). +answer('urn:example:complies'('urn:example:bob8052', true)). +answer('urn:example:complies'('urn:example:bob8053', true)). +answer('urn:example:complies'('urn:example:bob8054', true)). +answer('urn:example:complies'('urn:example:bob8055', true)). +answer('urn:example:complies'('urn:example:bob8056', true)). +answer('urn:example:complies'('urn:example:bob8057', true)). +answer('urn:example:complies'('urn:example:bob8058', true)). +answer('urn:example:complies'('urn:example:bob8059', true)). +answer('urn:example:complies'('urn:example:bob8060', true)). +answer('urn:example:complies'('urn:example:bob8061', true)). +answer('urn:example:complies'('urn:example:bob8062', true)). +answer('urn:example:complies'('urn:example:bob8063', true)). +answer('urn:example:complies'('urn:example:bob8064', true)). +answer('urn:example:complies'('urn:example:bob8065', true)). +answer('urn:example:complies'('urn:example:bob8066', true)). +answer('urn:example:complies'('urn:example:bob8067', true)). +answer('urn:example:complies'('urn:example:bob8068', true)). +answer('urn:example:complies'('urn:example:bob8069', true)). +answer('urn:example:complies'('urn:example:bob8070', true)). +answer('urn:example:complies'('urn:example:bob8071', true)). +answer('urn:example:complies'('urn:example:bob8072', true)). +answer('urn:example:complies'('urn:example:bob8073', true)). +answer('urn:example:complies'('urn:example:bob8074', true)). +answer('urn:example:complies'('urn:example:bob8075', true)). +answer('urn:example:complies'('urn:example:bob8076', true)). +answer('urn:example:complies'('urn:example:bob8077', true)). +answer('urn:example:complies'('urn:example:bob8078', true)). +answer('urn:example:complies'('urn:example:bob8079', true)). +answer('urn:example:complies'('urn:example:bob8080', true)). +answer('urn:example:complies'('urn:example:bob8081', true)). +answer('urn:example:complies'('urn:example:bob8082', true)). +answer('urn:example:complies'('urn:example:bob8083', true)). +answer('urn:example:complies'('urn:example:bob8084', true)). +answer('urn:example:complies'('urn:example:bob8085', true)). +answer('urn:example:complies'('urn:example:bob8086', true)). +answer('urn:example:complies'('urn:example:bob8087', true)). +answer('urn:example:complies'('urn:example:bob8088', true)). +answer('urn:example:complies'('urn:example:bob8089', true)). +answer('urn:example:complies'('urn:example:bob8090', true)). +answer('urn:example:complies'('urn:example:bob8091', true)). +answer('urn:example:complies'('urn:example:bob8092', true)). +answer('urn:example:complies'('urn:example:bob8093', true)). +answer('urn:example:complies'('urn:example:bob8094', true)). +answer('urn:example:complies'('urn:example:bob8095', true)). +answer('urn:example:complies'('urn:example:bob8096', true)). +answer('urn:example:complies'('urn:example:bob8097', true)). +answer('urn:example:complies'('urn:example:bob8098', true)). +answer('urn:example:complies'('urn:example:bob8099', true)). +answer('urn:example:complies'('urn:example:bob8100', true)). +answer('urn:example:complies'('urn:example:bob8101', true)). +answer('urn:example:complies'('urn:example:bob8102', true)). +answer('urn:example:complies'('urn:example:bob8103', true)). +answer('urn:example:complies'('urn:example:bob8104', true)). +answer('urn:example:complies'('urn:example:bob8105', true)). +answer('urn:example:complies'('urn:example:bob8106', true)). +answer('urn:example:complies'('urn:example:bob8107', true)). +answer('urn:example:complies'('urn:example:bob8108', true)). +answer('urn:example:complies'('urn:example:bob8109', true)). +answer('urn:example:complies'('urn:example:bob8110', true)). +answer('urn:example:complies'('urn:example:bob8111', true)). +answer('urn:example:complies'('urn:example:bob8112', true)). +answer('urn:example:complies'('urn:example:bob8113', true)). +answer('urn:example:complies'('urn:example:bob8114', true)). +answer('urn:example:complies'('urn:example:bob8115', true)). +answer('urn:example:complies'('urn:example:bob8116', true)). +answer('urn:example:complies'('urn:example:bob8117', true)). +answer('urn:example:complies'('urn:example:bob8118', true)). +answer('urn:example:complies'('urn:example:bob8119', true)). +answer('urn:example:complies'('urn:example:bob8120', true)). +answer('urn:example:complies'('urn:example:bob8121', true)). +answer('urn:example:complies'('urn:example:bob8122', true)). +answer('urn:example:complies'('urn:example:bob8123', true)). +answer('urn:example:complies'('urn:example:bob8124', true)). +answer('urn:example:complies'('urn:example:bob8125', true)). +answer('urn:example:complies'('urn:example:bob8126', true)). +answer('urn:example:complies'('urn:example:bob8127', true)). +answer('urn:example:complies'('urn:example:bob8128', true)). +answer('urn:example:complies'('urn:example:bob8129', true)). +answer('urn:example:complies'('urn:example:bob8130', true)). +answer('urn:example:complies'('urn:example:bob8131', true)). +answer('urn:example:complies'('urn:example:bob8132', true)). +answer('urn:example:complies'('urn:example:bob8133', true)). +answer('urn:example:complies'('urn:example:bob8134', true)). +answer('urn:example:complies'('urn:example:bob8135', true)). +answer('urn:example:complies'('urn:example:bob8136', true)). +answer('urn:example:complies'('urn:example:bob8137', true)). +answer('urn:example:complies'('urn:example:bob8138', true)). +answer('urn:example:complies'('urn:example:bob8139', true)). +answer('urn:example:complies'('urn:example:bob8140', true)). +answer('urn:example:complies'('urn:example:bob8141', true)). +answer('urn:example:complies'('urn:example:bob8142', true)). +answer('urn:example:complies'('urn:example:bob8143', true)). +answer('urn:example:complies'('urn:example:bob8144', true)). +answer('urn:example:complies'('urn:example:bob8145', true)). +answer('urn:example:complies'('urn:example:bob8146', true)). +answer('urn:example:complies'('urn:example:bob8147', true)). +answer('urn:example:complies'('urn:example:bob8148', true)). +answer('urn:example:complies'('urn:example:bob8149', true)). +answer('urn:example:complies'('urn:example:bob8150', true)). +answer('urn:example:complies'('urn:example:bob8151', true)). +answer('urn:example:complies'('urn:example:bob8152', true)). +answer('urn:example:complies'('urn:example:bob8153', true)). +answer('urn:example:complies'('urn:example:bob8154', true)). +answer('urn:example:complies'('urn:example:bob8155', true)). +answer('urn:example:complies'('urn:example:bob8156', true)). +answer('urn:example:complies'('urn:example:bob8157', true)). +answer('urn:example:complies'('urn:example:bob8158', true)). +answer('urn:example:complies'('urn:example:bob8159', true)). +answer('urn:example:complies'('urn:example:bob8160', true)). +answer('urn:example:complies'('urn:example:bob8161', true)). +answer('urn:example:complies'('urn:example:bob8162', true)). +answer('urn:example:complies'('urn:example:bob8163', true)). +answer('urn:example:complies'('urn:example:bob8164', true)). +answer('urn:example:complies'('urn:example:bob8165', true)). +answer('urn:example:complies'('urn:example:bob8166', true)). +answer('urn:example:complies'('urn:example:bob8167', true)). +answer('urn:example:complies'('urn:example:bob8168', true)). +answer('urn:example:complies'('urn:example:bob8169', true)). +answer('urn:example:complies'('urn:example:bob8170', true)). +answer('urn:example:complies'('urn:example:bob8171', true)). +answer('urn:example:complies'('urn:example:bob8172', true)). +answer('urn:example:complies'('urn:example:bob8173', true)). +answer('urn:example:complies'('urn:example:bob8174', true)). +answer('urn:example:complies'('urn:example:bob8175', true)). +answer('urn:example:complies'('urn:example:bob8176', true)). +answer('urn:example:complies'('urn:example:bob8177', true)). +answer('urn:example:complies'('urn:example:bob8178', true)). +answer('urn:example:complies'('urn:example:bob8179', true)). +answer('urn:example:complies'('urn:example:bob8180', true)). +answer('urn:example:complies'('urn:example:bob8181', true)). +answer('urn:example:complies'('urn:example:bob8182', true)). +answer('urn:example:complies'('urn:example:bob8183', true)). +answer('urn:example:complies'('urn:example:bob8184', true)). +answer('urn:example:complies'('urn:example:bob8185', true)). +answer('urn:example:complies'('urn:example:bob8186', true)). +answer('urn:example:complies'('urn:example:bob8187', true)). +answer('urn:example:complies'('urn:example:bob8188', true)). +answer('urn:example:complies'('urn:example:bob8189', true)). +answer('urn:example:complies'('urn:example:bob8190', true)). +answer('urn:example:complies'('urn:example:bob8191', true)). +answer('urn:example:complies'('urn:example:bob8192', true)). +answer('urn:example:complies'('urn:example:bob8193', true)). +answer('urn:example:complies'('urn:example:bob8194', true)). +answer('urn:example:complies'('urn:example:bob8195', true)). +answer('urn:example:complies'('urn:example:bob8196', true)). +answer('urn:example:complies'('urn:example:bob8197', true)). +answer('urn:example:complies'('urn:example:bob8198', true)). +answer('urn:example:complies'('urn:example:bob8199', true)). +answer('urn:example:complies'('urn:example:bob8200', true)). +answer('urn:example:complies'('urn:example:bob8201', true)). +answer('urn:example:complies'('urn:example:bob8202', true)). +answer('urn:example:complies'('urn:example:bob8203', true)). +answer('urn:example:complies'('urn:example:bob8204', true)). +answer('urn:example:complies'('urn:example:bob8205', true)). +answer('urn:example:complies'('urn:example:bob8206', true)). +answer('urn:example:complies'('urn:example:bob8207', true)). +answer('urn:example:complies'('urn:example:bob8208', true)). +answer('urn:example:complies'('urn:example:bob8209', true)). +answer('urn:example:complies'('urn:example:bob8210', true)). +answer('urn:example:complies'('urn:example:bob8211', true)). +answer('urn:example:complies'('urn:example:bob8212', true)). +answer('urn:example:complies'('urn:example:bob8213', true)). +answer('urn:example:complies'('urn:example:bob8214', true)). +answer('urn:example:complies'('urn:example:bob8215', true)). +answer('urn:example:complies'('urn:example:bob8216', true)). +answer('urn:example:complies'('urn:example:bob8217', true)). +answer('urn:example:complies'('urn:example:bob8218', true)). +answer('urn:example:complies'('urn:example:bob8219', true)). +answer('urn:example:complies'('urn:example:bob8220', true)). +answer('urn:example:complies'('urn:example:bob8221', true)). +answer('urn:example:complies'('urn:example:bob8222', true)). +answer('urn:example:complies'('urn:example:bob8223', true)). +answer('urn:example:complies'('urn:example:bob8224', true)). +answer('urn:example:complies'('urn:example:bob8225', true)). +answer('urn:example:complies'('urn:example:bob8226', true)). +answer('urn:example:complies'('urn:example:bob8227', true)). +answer('urn:example:complies'('urn:example:bob8228', true)). +answer('urn:example:complies'('urn:example:bob8229', true)). +answer('urn:example:complies'('urn:example:bob8230', true)). +answer('urn:example:complies'('urn:example:bob8231', true)). +answer('urn:example:complies'('urn:example:bob8232', true)). +answer('urn:example:complies'('urn:example:bob8233', true)). +answer('urn:example:complies'('urn:example:bob8234', true)). +answer('urn:example:complies'('urn:example:bob8235', true)). +answer('urn:example:complies'('urn:example:bob8236', true)). +answer('urn:example:complies'('urn:example:bob8237', true)). +answer('urn:example:complies'('urn:example:bob8238', true)). +answer('urn:example:complies'('urn:example:bob8239', true)). +answer('urn:example:complies'('urn:example:bob8240', true)). +answer('urn:example:complies'('urn:example:bob8241', true)). +answer('urn:example:complies'('urn:example:bob8242', true)). +answer('urn:example:complies'('urn:example:bob8243', true)). +answer('urn:example:complies'('urn:example:bob8244', true)). +answer('urn:example:complies'('urn:example:bob8245', true)). +answer('urn:example:complies'('urn:example:bob8246', true)). +answer('urn:example:complies'('urn:example:bob8247', true)). +answer('urn:example:complies'('urn:example:bob8248', true)). +answer('urn:example:complies'('urn:example:bob8249', true)). +answer('urn:example:complies'('urn:example:bob8250', true)). +answer('urn:example:complies'('urn:example:bob8251', true)). +answer('urn:example:complies'('urn:example:bob8252', true)). +answer('urn:example:complies'('urn:example:bob8253', true)). +answer('urn:example:complies'('urn:example:bob8254', true)). +answer('urn:example:complies'('urn:example:bob8255', true)). +answer('urn:example:complies'('urn:example:bob8256', true)). +answer('urn:example:complies'('urn:example:bob8257', true)). +answer('urn:example:complies'('urn:example:bob8258', true)). +answer('urn:example:complies'('urn:example:bob8259', true)). +answer('urn:example:complies'('urn:example:bob8260', true)). +answer('urn:example:complies'('urn:example:bob8261', true)). +answer('urn:example:complies'('urn:example:bob8262', true)). +answer('urn:example:complies'('urn:example:bob8263', true)). +answer('urn:example:complies'('urn:example:bob8264', true)). +answer('urn:example:complies'('urn:example:bob8265', true)). +answer('urn:example:complies'('urn:example:bob8266', true)). +answer('urn:example:complies'('urn:example:bob8267', true)). +answer('urn:example:complies'('urn:example:bob8268', true)). +answer('urn:example:complies'('urn:example:bob8269', true)). +answer('urn:example:complies'('urn:example:bob8270', true)). +answer('urn:example:complies'('urn:example:bob8271', true)). +answer('urn:example:complies'('urn:example:bob8272', true)). +answer('urn:example:complies'('urn:example:bob8273', true)). +answer('urn:example:complies'('urn:example:bob8274', true)). +answer('urn:example:complies'('urn:example:bob8275', true)). +answer('urn:example:complies'('urn:example:bob8276', true)). +answer('urn:example:complies'('urn:example:bob8277', true)). +answer('urn:example:complies'('urn:example:bob8278', true)). +answer('urn:example:complies'('urn:example:bob8279', true)). +answer('urn:example:complies'('urn:example:bob8280', true)). +answer('urn:example:complies'('urn:example:bob8281', true)). +answer('urn:example:complies'('urn:example:bob8282', true)). +answer('urn:example:complies'('urn:example:bob8283', true)). +answer('urn:example:complies'('urn:example:bob8284', true)). +answer('urn:example:complies'('urn:example:bob8285', true)). +answer('urn:example:complies'('urn:example:bob8286', true)). +answer('urn:example:complies'('urn:example:bob8287', true)). +answer('urn:example:complies'('urn:example:bob8288', true)). +answer('urn:example:complies'('urn:example:bob8289', true)). +answer('urn:example:complies'('urn:example:bob8290', true)). +answer('urn:example:complies'('urn:example:bob8291', true)). +answer('urn:example:complies'('urn:example:bob8292', true)). +answer('urn:example:complies'('urn:example:bob8293', true)). +answer('urn:example:complies'('urn:example:bob8294', true)). +answer('urn:example:complies'('urn:example:bob8295', true)). +answer('urn:example:complies'('urn:example:bob8296', true)). +answer('urn:example:complies'('urn:example:bob8297', true)). +answer('urn:example:complies'('urn:example:bob8298', true)). +answer('urn:example:complies'('urn:example:bob8299', true)). +answer('urn:example:complies'('urn:example:bob8300', true)). +answer('urn:example:complies'('urn:example:bob8301', true)). +answer('urn:example:complies'('urn:example:bob8302', true)). +answer('urn:example:complies'('urn:example:bob8303', true)). +answer('urn:example:complies'('urn:example:bob8304', true)). +answer('urn:example:complies'('urn:example:bob8305', true)). +answer('urn:example:complies'('urn:example:bob8306', true)). +answer('urn:example:complies'('urn:example:bob8307', true)). +answer('urn:example:complies'('urn:example:bob8308', true)). +answer('urn:example:complies'('urn:example:bob8309', true)). +answer('urn:example:complies'('urn:example:bob8310', true)). +answer('urn:example:complies'('urn:example:bob8311', true)). +answer('urn:example:complies'('urn:example:bob8312', true)). +answer('urn:example:complies'('urn:example:bob8313', true)). +answer('urn:example:complies'('urn:example:bob8314', true)). +answer('urn:example:complies'('urn:example:bob8315', true)). +answer('urn:example:complies'('urn:example:bob8316', true)). +answer('urn:example:complies'('urn:example:bob8317', true)). +answer('urn:example:complies'('urn:example:bob8318', true)). +answer('urn:example:complies'('urn:example:bob8319', true)). +answer('urn:example:complies'('urn:example:bob8320', true)). +answer('urn:example:complies'('urn:example:bob8321', true)). +answer('urn:example:complies'('urn:example:bob8322', true)). +answer('urn:example:complies'('urn:example:bob8323', true)). +answer('urn:example:complies'('urn:example:bob8324', true)). +answer('urn:example:complies'('urn:example:bob8325', true)). +answer('urn:example:complies'('urn:example:bob8326', true)). +answer('urn:example:complies'('urn:example:bob8327', true)). +answer('urn:example:complies'('urn:example:bob8328', true)). +answer('urn:example:complies'('urn:example:bob8329', true)). +answer('urn:example:complies'('urn:example:bob8330', true)). +answer('urn:example:complies'('urn:example:bob8331', true)). +answer('urn:example:complies'('urn:example:bob8332', true)). +answer('urn:example:complies'('urn:example:bob8333', true)). +answer('urn:example:complies'('urn:example:bob8334', true)). +answer('urn:example:complies'('urn:example:bob8335', true)). +answer('urn:example:complies'('urn:example:bob8336', true)). +answer('urn:example:complies'('urn:example:bob8337', true)). +answer('urn:example:complies'('urn:example:bob8338', true)). +answer('urn:example:complies'('urn:example:bob8339', true)). +answer('urn:example:complies'('urn:example:bob8340', true)). +answer('urn:example:complies'('urn:example:bob8341', true)). +answer('urn:example:complies'('urn:example:bob8342', true)). +answer('urn:example:complies'('urn:example:bob8343', true)). +answer('urn:example:complies'('urn:example:bob8344', true)). +answer('urn:example:complies'('urn:example:bob8345', true)). +answer('urn:example:complies'('urn:example:bob8346', true)). +answer('urn:example:complies'('urn:example:bob8347', true)). +answer('urn:example:complies'('urn:example:bob8348', true)). +answer('urn:example:complies'('urn:example:bob8349', true)). +answer('urn:example:complies'('urn:example:bob8350', true)). +answer('urn:example:complies'('urn:example:bob8351', true)). +answer('urn:example:complies'('urn:example:bob8352', true)). +answer('urn:example:complies'('urn:example:bob8353', true)). +answer('urn:example:complies'('urn:example:bob8354', true)). +answer('urn:example:complies'('urn:example:bob8355', true)). +answer('urn:example:complies'('urn:example:bob8356', true)). +answer('urn:example:complies'('urn:example:bob8357', true)). +answer('urn:example:complies'('urn:example:bob8358', true)). +answer('urn:example:complies'('urn:example:bob8359', true)). +answer('urn:example:complies'('urn:example:bob8360', true)). +answer('urn:example:complies'('urn:example:bob8361', true)). +answer('urn:example:complies'('urn:example:bob8362', true)). +answer('urn:example:complies'('urn:example:bob8363', true)). +answer('urn:example:complies'('urn:example:bob8364', true)). +answer('urn:example:complies'('urn:example:bob8365', true)). +answer('urn:example:complies'('urn:example:bob8366', true)). +answer('urn:example:complies'('urn:example:bob8367', true)). +answer('urn:example:complies'('urn:example:bob8368', true)). +answer('urn:example:complies'('urn:example:bob8369', true)). +answer('urn:example:complies'('urn:example:bob8370', true)). +answer('urn:example:complies'('urn:example:bob8371', true)). +answer('urn:example:complies'('urn:example:bob8372', true)). +answer('urn:example:complies'('urn:example:bob8373', true)). +answer('urn:example:complies'('urn:example:bob8374', true)). +answer('urn:example:complies'('urn:example:bob8375', true)). +answer('urn:example:complies'('urn:example:bob8376', true)). +answer('urn:example:complies'('urn:example:bob8377', true)). +answer('urn:example:complies'('urn:example:bob8378', true)). +answer('urn:example:complies'('urn:example:bob8379', true)). +answer('urn:example:complies'('urn:example:bob8380', true)). +answer('urn:example:complies'('urn:example:bob8381', true)). +answer('urn:example:complies'('urn:example:bob8382', true)). +answer('urn:example:complies'('urn:example:bob8383', true)). +answer('urn:example:complies'('urn:example:bob8384', true)). +answer('urn:example:complies'('urn:example:bob8385', true)). +answer('urn:example:complies'('urn:example:bob8386', true)). +answer('urn:example:complies'('urn:example:bob8387', true)). +answer('urn:example:complies'('urn:example:bob8388', true)). +answer('urn:example:complies'('urn:example:bob8389', true)). +answer('urn:example:complies'('urn:example:bob8390', true)). +answer('urn:example:complies'('urn:example:bob8391', true)). +answer('urn:example:complies'('urn:example:bob8392', true)). +answer('urn:example:complies'('urn:example:bob8393', true)). +answer('urn:example:complies'('urn:example:bob8394', true)). +answer('urn:example:complies'('urn:example:bob8395', true)). +answer('urn:example:complies'('urn:example:bob8396', true)). +answer('urn:example:complies'('urn:example:bob8397', true)). +answer('urn:example:complies'('urn:example:bob8398', true)). +answer('urn:example:complies'('urn:example:bob8399', true)). +answer('urn:example:complies'('urn:example:bob8400', true)). +answer('urn:example:complies'('urn:example:bob8401', true)). +answer('urn:example:complies'('urn:example:bob8402', true)). +answer('urn:example:complies'('urn:example:bob8403', true)). +answer('urn:example:complies'('urn:example:bob8404', true)). +answer('urn:example:complies'('urn:example:bob8405', true)). +answer('urn:example:complies'('urn:example:bob8406', true)). +answer('urn:example:complies'('urn:example:bob8407', true)). +answer('urn:example:complies'('urn:example:bob8408', true)). +answer('urn:example:complies'('urn:example:bob8409', true)). +answer('urn:example:complies'('urn:example:bob8410', true)). +answer('urn:example:complies'('urn:example:bob8411', true)). +answer('urn:example:complies'('urn:example:bob8412', true)). +answer('urn:example:complies'('urn:example:bob8413', true)). +answer('urn:example:complies'('urn:example:bob8414', true)). +answer('urn:example:complies'('urn:example:bob8415', true)). +answer('urn:example:complies'('urn:example:bob8416', true)). +answer('urn:example:complies'('urn:example:bob8417', true)). +answer('urn:example:complies'('urn:example:bob8418', true)). +answer('urn:example:complies'('urn:example:bob8419', true)). +answer('urn:example:complies'('urn:example:bob8420', true)). +answer('urn:example:complies'('urn:example:bob8421', true)). +answer('urn:example:complies'('urn:example:bob8422', true)). +answer('urn:example:complies'('urn:example:bob8423', true)). +answer('urn:example:complies'('urn:example:bob8424', true)). +answer('urn:example:complies'('urn:example:bob8425', true)). +answer('urn:example:complies'('urn:example:bob8426', true)). +answer('urn:example:complies'('urn:example:bob8427', true)). +answer('urn:example:complies'('urn:example:bob8428', true)). +answer('urn:example:complies'('urn:example:bob8429', true)). +answer('urn:example:complies'('urn:example:bob8430', true)). +answer('urn:example:complies'('urn:example:bob8431', true)). +answer('urn:example:complies'('urn:example:bob8432', true)). +answer('urn:example:complies'('urn:example:bob8433', true)). +answer('urn:example:complies'('urn:example:bob8434', true)). +answer('urn:example:complies'('urn:example:bob8435', true)). +answer('urn:example:complies'('urn:example:bob8436', true)). +answer('urn:example:complies'('urn:example:bob8437', true)). +answer('urn:example:complies'('urn:example:bob8438', true)). +answer('urn:example:complies'('urn:example:bob8439', true)). +answer('urn:example:complies'('urn:example:bob8440', true)). +answer('urn:example:complies'('urn:example:bob8441', true)). +answer('urn:example:complies'('urn:example:bob8442', true)). +answer('urn:example:complies'('urn:example:bob8443', true)). +answer('urn:example:complies'('urn:example:bob8444', true)). +answer('urn:example:complies'('urn:example:bob8445', true)). +answer('urn:example:complies'('urn:example:bob8446', true)). +answer('urn:example:complies'('urn:example:bob8447', true)). +answer('urn:example:complies'('urn:example:bob8448', true)). +answer('urn:example:complies'('urn:example:bob8449', true)). +answer('urn:example:complies'('urn:example:bob8450', true)). +answer('urn:example:complies'('urn:example:bob8451', true)). +answer('urn:example:complies'('urn:example:bob8452', true)). +answer('urn:example:complies'('urn:example:bob8453', true)). +answer('urn:example:complies'('urn:example:bob8454', true)). +answer('urn:example:complies'('urn:example:bob8455', true)). +answer('urn:example:complies'('urn:example:bob8456', true)). +answer('urn:example:complies'('urn:example:bob8457', true)). +answer('urn:example:complies'('urn:example:bob8458', true)). +answer('urn:example:complies'('urn:example:bob8459', true)). +answer('urn:example:complies'('urn:example:bob8460', true)). +answer('urn:example:complies'('urn:example:bob8461', true)). +answer('urn:example:complies'('urn:example:bob8462', true)). +answer('urn:example:complies'('urn:example:bob8463', true)). +answer('urn:example:complies'('urn:example:bob8464', true)). +answer('urn:example:complies'('urn:example:bob8465', true)). +answer('urn:example:complies'('urn:example:bob8466', true)). +answer('urn:example:complies'('urn:example:bob8467', true)). +answer('urn:example:complies'('urn:example:bob8468', true)). +answer('urn:example:complies'('urn:example:bob8469', true)). +answer('urn:example:complies'('urn:example:bob8470', true)). +answer('urn:example:complies'('urn:example:bob8471', true)). +answer('urn:example:complies'('urn:example:bob8472', true)). +answer('urn:example:complies'('urn:example:bob8473', true)). +answer('urn:example:complies'('urn:example:bob8474', true)). +answer('urn:example:complies'('urn:example:bob8475', true)). +answer('urn:example:complies'('urn:example:bob8476', true)). +answer('urn:example:complies'('urn:example:bob8477', true)). +answer('urn:example:complies'('urn:example:bob8478', true)). +answer('urn:example:complies'('urn:example:bob8479', true)). +answer('urn:example:complies'('urn:example:bob8480', true)). +answer('urn:example:complies'('urn:example:bob8481', true)). +answer('urn:example:complies'('urn:example:bob8482', true)). +answer('urn:example:complies'('urn:example:bob8483', true)). +answer('urn:example:complies'('urn:example:bob8484', true)). +answer('urn:example:complies'('urn:example:bob8485', true)). +answer('urn:example:complies'('urn:example:bob8486', true)). +answer('urn:example:complies'('urn:example:bob8487', true)). +answer('urn:example:complies'('urn:example:bob8488', true)). +answer('urn:example:complies'('urn:example:bob8489', true)). +answer('urn:example:complies'('urn:example:bob8490', true)). +answer('urn:example:complies'('urn:example:bob8491', true)). +answer('urn:example:complies'('urn:example:bob8492', true)). +answer('urn:example:complies'('urn:example:bob8493', true)). +answer('urn:example:complies'('urn:example:bob8494', true)). +answer('urn:example:complies'('urn:example:bob8495', true)). +answer('urn:example:complies'('urn:example:bob8496', true)). +answer('urn:example:complies'('urn:example:bob8497', true)). +answer('urn:example:complies'('urn:example:bob8498', true)). +answer('urn:example:complies'('urn:example:bob8499', true)). +answer('urn:example:complies'('urn:example:bob8500', true)). +answer('urn:example:complies'('urn:example:bob8501', true)). +answer('urn:example:complies'('urn:example:bob8502', true)). +answer('urn:example:complies'('urn:example:bob8503', true)). +answer('urn:example:complies'('urn:example:bob8504', true)). +answer('urn:example:complies'('urn:example:bob8505', true)). +answer('urn:example:complies'('urn:example:bob8506', true)). +answer('urn:example:complies'('urn:example:bob8507', true)). +answer('urn:example:complies'('urn:example:bob8508', true)). +answer('urn:example:complies'('urn:example:bob8509', true)). +answer('urn:example:complies'('urn:example:bob8510', true)). +answer('urn:example:complies'('urn:example:bob8511', true)). +answer('urn:example:complies'('urn:example:bob8512', true)). +answer('urn:example:complies'('urn:example:bob8513', true)). +answer('urn:example:complies'('urn:example:bob8514', true)). +answer('urn:example:complies'('urn:example:bob8515', true)). +answer('urn:example:complies'('urn:example:bob8516', true)). +answer('urn:example:complies'('urn:example:bob8517', true)). +answer('urn:example:complies'('urn:example:bob8518', true)). +answer('urn:example:complies'('urn:example:bob8519', true)). +answer('urn:example:complies'('urn:example:bob8520', true)). +answer('urn:example:complies'('urn:example:bob8521', true)). +answer('urn:example:complies'('urn:example:bob8522', true)). +answer('urn:example:complies'('urn:example:bob8523', true)). +answer('urn:example:complies'('urn:example:bob8524', true)). +answer('urn:example:complies'('urn:example:bob8525', true)). +answer('urn:example:complies'('urn:example:bob8526', true)). +answer('urn:example:complies'('urn:example:bob8527', true)). +answer('urn:example:complies'('urn:example:bob8528', true)). +answer('urn:example:complies'('urn:example:bob8529', true)). +answer('urn:example:complies'('urn:example:bob8530', true)). +answer('urn:example:complies'('urn:example:bob8531', true)). +answer('urn:example:complies'('urn:example:bob8532', true)). +answer('urn:example:complies'('urn:example:bob8533', true)). +answer('urn:example:complies'('urn:example:bob8534', true)). +answer('urn:example:complies'('urn:example:bob8535', true)). +answer('urn:example:complies'('urn:example:bob8536', true)). +answer('urn:example:complies'('urn:example:bob8537', true)). +answer('urn:example:complies'('urn:example:bob8538', true)). +answer('urn:example:complies'('urn:example:bob8539', true)). +answer('urn:example:complies'('urn:example:bob8540', true)). +answer('urn:example:complies'('urn:example:bob8541', true)). +answer('urn:example:complies'('urn:example:bob8542', true)). +answer('urn:example:complies'('urn:example:bob8543', true)). +answer('urn:example:complies'('urn:example:bob8544', true)). +answer('urn:example:complies'('urn:example:bob8545', true)). +answer('urn:example:complies'('urn:example:bob8546', true)). +answer('urn:example:complies'('urn:example:bob8547', true)). +answer('urn:example:complies'('urn:example:bob8548', true)). +answer('urn:example:complies'('urn:example:bob8549', true)). +answer('urn:example:complies'('urn:example:bob8550', true)). +answer('urn:example:complies'('urn:example:bob8551', true)). +answer('urn:example:complies'('urn:example:bob8552', true)). +answer('urn:example:complies'('urn:example:bob8553', true)). +answer('urn:example:complies'('urn:example:bob8554', true)). +answer('urn:example:complies'('urn:example:bob8555', true)). +answer('urn:example:complies'('urn:example:bob8556', true)). +answer('urn:example:complies'('urn:example:bob8557', true)). +answer('urn:example:complies'('urn:example:bob8558', true)). +answer('urn:example:complies'('urn:example:bob8559', true)). +answer('urn:example:complies'('urn:example:bob8560', true)). +answer('urn:example:complies'('urn:example:bob8561', true)). +answer('urn:example:complies'('urn:example:bob8562', true)). +answer('urn:example:complies'('urn:example:bob8563', true)). +answer('urn:example:complies'('urn:example:bob8564', true)). +answer('urn:example:complies'('urn:example:bob8565', true)). +answer('urn:example:complies'('urn:example:bob8566', true)). +answer('urn:example:complies'('urn:example:bob8567', true)). +answer('urn:example:complies'('urn:example:bob8568', true)). +answer('urn:example:complies'('urn:example:bob8569', true)). +answer('urn:example:complies'('urn:example:bob8570', true)). +answer('urn:example:complies'('urn:example:bob8571', true)). +answer('urn:example:complies'('urn:example:bob8572', true)). +answer('urn:example:complies'('urn:example:bob8573', true)). +answer('urn:example:complies'('urn:example:bob8574', true)). +answer('urn:example:complies'('urn:example:bob8575', true)). +answer('urn:example:complies'('urn:example:bob8576', true)). +answer('urn:example:complies'('urn:example:bob8577', true)). +answer('urn:example:complies'('urn:example:bob8578', true)). +answer('urn:example:complies'('urn:example:bob8579', true)). +answer('urn:example:complies'('urn:example:bob8580', true)). +answer('urn:example:complies'('urn:example:bob8581', true)). +answer('urn:example:complies'('urn:example:bob8582', true)). +answer('urn:example:complies'('urn:example:bob8583', true)). +answer('urn:example:complies'('urn:example:bob8584', true)). +answer('urn:example:complies'('urn:example:bob8585', true)). +answer('urn:example:complies'('urn:example:bob8586', true)). +answer('urn:example:complies'('urn:example:bob8587', true)). +answer('urn:example:complies'('urn:example:bob8588', true)). +answer('urn:example:complies'('urn:example:bob8589', true)). +answer('urn:example:complies'('urn:example:bob8590', true)). +answer('urn:example:complies'('urn:example:bob8591', true)). +answer('urn:example:complies'('urn:example:bob8592', true)). +answer('urn:example:complies'('urn:example:bob8593', true)). +answer('urn:example:complies'('urn:example:bob8594', true)). +answer('urn:example:complies'('urn:example:bob8595', true)). +answer('urn:example:complies'('urn:example:bob8596', true)). +answer('urn:example:complies'('urn:example:bob8597', true)). +answer('urn:example:complies'('urn:example:bob8598', true)). +answer('urn:example:complies'('urn:example:bob8599', true)). +answer('urn:example:complies'('urn:example:bob8600', true)). +answer('urn:example:complies'('urn:example:bob8601', true)). +answer('urn:example:complies'('urn:example:bob8602', true)). +answer('urn:example:complies'('urn:example:bob8603', true)). +answer('urn:example:complies'('urn:example:bob8604', true)). +answer('urn:example:complies'('urn:example:bob8605', true)). +answer('urn:example:complies'('urn:example:bob8606', true)). +answer('urn:example:complies'('urn:example:bob8607', true)). +answer('urn:example:complies'('urn:example:bob8608', true)). +answer('urn:example:complies'('urn:example:bob8609', true)). +answer('urn:example:complies'('urn:example:bob8610', true)). +answer('urn:example:complies'('urn:example:bob8611', true)). +answer('urn:example:complies'('urn:example:bob8612', true)). +answer('urn:example:complies'('urn:example:bob8613', true)). +answer('urn:example:complies'('urn:example:bob8614', true)). +answer('urn:example:complies'('urn:example:bob8615', true)). +answer('urn:example:complies'('urn:example:bob8616', true)). +answer('urn:example:complies'('urn:example:bob8617', true)). +answer('urn:example:complies'('urn:example:bob8618', true)). +answer('urn:example:complies'('urn:example:bob8619', true)). +answer('urn:example:complies'('urn:example:bob8620', true)). +answer('urn:example:complies'('urn:example:bob8621', true)). +answer('urn:example:complies'('urn:example:bob8622', true)). +answer('urn:example:complies'('urn:example:bob8623', true)). +answer('urn:example:complies'('urn:example:bob8624', true)). +answer('urn:example:complies'('urn:example:bob8625', true)). +answer('urn:example:complies'('urn:example:bob8626', true)). +answer('urn:example:complies'('urn:example:bob8627', true)). +answer('urn:example:complies'('urn:example:bob8628', true)). +answer('urn:example:complies'('urn:example:bob8629', true)). +answer('urn:example:complies'('urn:example:bob8630', true)). +answer('urn:example:complies'('urn:example:bob8631', true)). +answer('urn:example:complies'('urn:example:bob8632', true)). +answer('urn:example:complies'('urn:example:bob8633', true)). +answer('urn:example:complies'('urn:example:bob8634', true)). +answer('urn:example:complies'('urn:example:bob8635', true)). +answer('urn:example:complies'('urn:example:bob8636', true)). +answer('urn:example:complies'('urn:example:bob8637', true)). +answer('urn:example:complies'('urn:example:bob8638', true)). +answer('urn:example:complies'('urn:example:bob8639', true)). +answer('urn:example:complies'('urn:example:bob8640', true)). +answer('urn:example:complies'('urn:example:bob8641', true)). +answer('urn:example:complies'('urn:example:bob8642', true)). +answer('urn:example:complies'('urn:example:bob8643', true)). +answer('urn:example:complies'('urn:example:bob8644', true)). +answer('urn:example:complies'('urn:example:bob8645', true)). +answer('urn:example:complies'('urn:example:bob8646', true)). +answer('urn:example:complies'('urn:example:bob8647', true)). +answer('urn:example:complies'('urn:example:bob8648', true)). +answer('urn:example:complies'('urn:example:bob8649', true)). +answer('urn:example:complies'('urn:example:bob8650', true)). +answer('urn:example:complies'('urn:example:bob8651', true)). +answer('urn:example:complies'('urn:example:bob8652', true)). +answer('urn:example:complies'('urn:example:bob8653', true)). +answer('urn:example:complies'('urn:example:bob8654', true)). +answer('urn:example:complies'('urn:example:bob8655', true)). +answer('urn:example:complies'('urn:example:bob8656', true)). +answer('urn:example:complies'('urn:example:bob8657', true)). +answer('urn:example:complies'('urn:example:bob8658', true)). +answer('urn:example:complies'('urn:example:bob8659', true)). +answer('urn:example:complies'('urn:example:bob8660', true)). +answer('urn:example:complies'('urn:example:bob8661', true)). +answer('urn:example:complies'('urn:example:bob8662', true)). +answer('urn:example:complies'('urn:example:bob8663', true)). +answer('urn:example:complies'('urn:example:bob8664', true)). +answer('urn:example:complies'('urn:example:bob8665', true)). +answer('urn:example:complies'('urn:example:bob8666', true)). +answer('urn:example:complies'('urn:example:bob8667', true)). +answer('urn:example:complies'('urn:example:bob8668', true)). +answer('urn:example:complies'('urn:example:bob8669', true)). +answer('urn:example:complies'('urn:example:bob8670', true)). +answer('urn:example:complies'('urn:example:bob8671', true)). +answer('urn:example:complies'('urn:example:bob8672', true)). +answer('urn:example:complies'('urn:example:bob8673', true)). +answer('urn:example:complies'('urn:example:bob8674', true)). +answer('urn:example:complies'('urn:example:bob8675', true)). +answer('urn:example:complies'('urn:example:bob8676', true)). +answer('urn:example:complies'('urn:example:bob8677', true)). +answer('urn:example:complies'('urn:example:bob8678', true)). +answer('urn:example:complies'('urn:example:bob8679', true)). +answer('urn:example:complies'('urn:example:bob8680', true)). +answer('urn:example:complies'('urn:example:bob8681', true)). +answer('urn:example:complies'('urn:example:bob8682', true)). +answer('urn:example:complies'('urn:example:bob8683', true)). +answer('urn:example:complies'('urn:example:bob8684', true)). +answer('urn:example:complies'('urn:example:bob8685', true)). +answer('urn:example:complies'('urn:example:bob8686', true)). +answer('urn:example:complies'('urn:example:bob8687', true)). +answer('urn:example:complies'('urn:example:bob8688', true)). +answer('urn:example:complies'('urn:example:bob8689', true)). +answer('urn:example:complies'('urn:example:bob8690', true)). +answer('urn:example:complies'('urn:example:bob8691', true)). +answer('urn:example:complies'('urn:example:bob8692', true)). +answer('urn:example:complies'('urn:example:bob8693', true)). +answer('urn:example:complies'('urn:example:bob8694', true)). +answer('urn:example:complies'('urn:example:bob8695', true)). +answer('urn:example:complies'('urn:example:bob8696', true)). +answer('urn:example:complies'('urn:example:bob8697', true)). +answer('urn:example:complies'('urn:example:bob8698', true)). +answer('urn:example:complies'('urn:example:bob8699', true)). +answer('urn:example:complies'('urn:example:bob8700', true)). +answer('urn:example:complies'('urn:example:bob8701', true)). +answer('urn:example:complies'('urn:example:bob8702', true)). +answer('urn:example:complies'('urn:example:bob8703', true)). +answer('urn:example:complies'('urn:example:bob8704', true)). +answer('urn:example:complies'('urn:example:bob8705', true)). +answer('urn:example:complies'('urn:example:bob8706', true)). +answer('urn:example:complies'('urn:example:bob8707', true)). +answer('urn:example:complies'('urn:example:bob8708', true)). +answer('urn:example:complies'('urn:example:bob8709', true)). +answer('urn:example:complies'('urn:example:bob8710', true)). +answer('urn:example:complies'('urn:example:bob8711', true)). +answer('urn:example:complies'('urn:example:bob8712', true)). +answer('urn:example:complies'('urn:example:bob8713', true)). +answer('urn:example:complies'('urn:example:bob8714', true)). +answer('urn:example:complies'('urn:example:bob8715', true)). +answer('urn:example:complies'('urn:example:bob8716', true)). +answer('urn:example:complies'('urn:example:bob8717', true)). +answer('urn:example:complies'('urn:example:bob8718', true)). +answer('urn:example:complies'('urn:example:bob8719', true)). +answer('urn:example:complies'('urn:example:bob8720', true)). +answer('urn:example:complies'('urn:example:bob8721', true)). +answer('urn:example:complies'('urn:example:bob8722', true)). +answer('urn:example:complies'('urn:example:bob8723', true)). +answer('urn:example:complies'('urn:example:bob8724', true)). +answer('urn:example:complies'('urn:example:bob8725', true)). +answer('urn:example:complies'('urn:example:bob8726', true)). +answer('urn:example:complies'('urn:example:bob8727', true)). +answer('urn:example:complies'('urn:example:bob8728', true)). +answer('urn:example:complies'('urn:example:bob8729', true)). +answer('urn:example:complies'('urn:example:bob8730', true)). +answer('urn:example:complies'('urn:example:bob8731', true)). +answer('urn:example:complies'('urn:example:bob8732', true)). +answer('urn:example:complies'('urn:example:bob8733', true)). +answer('urn:example:complies'('urn:example:bob8734', true)). +answer('urn:example:complies'('urn:example:bob8735', true)). +answer('urn:example:complies'('urn:example:bob8736', true)). +answer('urn:example:complies'('urn:example:bob8737', true)). +answer('urn:example:complies'('urn:example:bob8738', true)). +answer('urn:example:complies'('urn:example:bob8739', true)). +answer('urn:example:complies'('urn:example:bob8740', true)). +answer('urn:example:complies'('urn:example:bob8741', true)). +answer('urn:example:complies'('urn:example:bob8742', true)). +answer('urn:example:complies'('urn:example:bob8743', true)). +answer('urn:example:complies'('urn:example:bob8744', true)). +answer('urn:example:complies'('urn:example:bob8745', true)). +answer('urn:example:complies'('urn:example:bob8746', true)). +answer('urn:example:complies'('urn:example:bob8747', true)). +answer('urn:example:complies'('urn:example:bob8748', true)). +answer('urn:example:complies'('urn:example:bob8749', true)). +answer('urn:example:complies'('urn:example:bob8750', true)). +answer('urn:example:complies'('urn:example:bob8751', true)). +answer('urn:example:complies'('urn:example:bob8752', true)). +answer('urn:example:complies'('urn:example:bob8753', true)). +answer('urn:example:complies'('urn:example:bob8754', true)). +answer('urn:example:complies'('urn:example:bob8755', true)). +answer('urn:example:complies'('urn:example:bob8756', true)). +answer('urn:example:complies'('urn:example:bob8757', true)). +answer('urn:example:complies'('urn:example:bob8758', true)). +answer('urn:example:complies'('urn:example:bob8759', true)). +answer('urn:example:complies'('urn:example:bob8760', true)). +answer('urn:example:complies'('urn:example:bob8761', true)). +answer('urn:example:complies'('urn:example:bob8762', true)). +answer('urn:example:complies'('urn:example:bob8763', true)). +answer('urn:example:complies'('urn:example:bob8764', true)). +answer('urn:example:complies'('urn:example:bob8765', true)). +answer('urn:example:complies'('urn:example:bob8766', true)). +answer('urn:example:complies'('urn:example:bob8767', true)). +answer('urn:example:complies'('urn:example:bob8768', true)). +answer('urn:example:complies'('urn:example:bob8769', true)). +answer('urn:example:complies'('urn:example:bob8770', true)). +answer('urn:example:complies'('urn:example:bob8771', true)). +answer('urn:example:complies'('urn:example:bob8772', true)). +answer('urn:example:complies'('urn:example:bob8773', true)). +answer('urn:example:complies'('urn:example:bob8774', true)). +answer('urn:example:complies'('urn:example:bob8775', true)). +answer('urn:example:complies'('urn:example:bob8776', true)). +answer('urn:example:complies'('urn:example:bob8777', true)). +answer('urn:example:complies'('urn:example:bob8778', true)). +answer('urn:example:complies'('urn:example:bob8779', true)). +answer('urn:example:complies'('urn:example:bob8780', true)). +answer('urn:example:complies'('urn:example:bob8781', true)). +answer('urn:example:complies'('urn:example:bob8782', true)). +answer('urn:example:complies'('urn:example:bob8783', true)). +answer('urn:example:complies'('urn:example:bob8784', true)). +answer('urn:example:complies'('urn:example:bob8785', true)). +answer('urn:example:complies'('urn:example:bob8786', true)). +answer('urn:example:complies'('urn:example:bob8787', true)). +answer('urn:example:complies'('urn:example:bob8788', true)). +answer('urn:example:complies'('urn:example:bob8789', true)). +answer('urn:example:complies'('urn:example:bob8790', true)). +answer('urn:example:complies'('urn:example:bob8791', true)). +answer('urn:example:complies'('urn:example:bob8792', true)). +answer('urn:example:complies'('urn:example:bob8793', true)). +answer('urn:example:complies'('urn:example:bob8794', true)). +answer('urn:example:complies'('urn:example:bob8795', true)). +answer('urn:example:complies'('urn:example:bob8796', true)). +answer('urn:example:complies'('urn:example:bob8797', true)). +answer('urn:example:complies'('urn:example:bob8798', true)). +answer('urn:example:complies'('urn:example:bob8799', true)). +answer('urn:example:complies'('urn:example:bob8800', true)). +answer('urn:example:complies'('urn:example:bob8801', true)). +answer('urn:example:complies'('urn:example:bob8802', true)). +answer('urn:example:complies'('urn:example:bob8803', true)). +answer('urn:example:complies'('urn:example:bob8804', true)). +answer('urn:example:complies'('urn:example:bob8805', true)). +answer('urn:example:complies'('urn:example:bob8806', true)). +answer('urn:example:complies'('urn:example:bob8807', true)). +answer('urn:example:complies'('urn:example:bob8808', true)). +answer('urn:example:complies'('urn:example:bob8809', true)). +answer('urn:example:complies'('urn:example:bob8810', true)). +answer('urn:example:complies'('urn:example:bob8811', true)). +answer('urn:example:complies'('urn:example:bob8812', true)). +answer('urn:example:complies'('urn:example:bob8813', true)). +answer('urn:example:complies'('urn:example:bob8814', true)). +answer('urn:example:complies'('urn:example:bob8815', true)). +answer('urn:example:complies'('urn:example:bob8816', true)). +answer('urn:example:complies'('urn:example:bob8817', true)). +answer('urn:example:complies'('urn:example:bob8818', true)). +answer('urn:example:complies'('urn:example:bob8819', true)). +answer('urn:example:complies'('urn:example:bob8820', true)). +answer('urn:example:complies'('urn:example:bob8821', true)). +answer('urn:example:complies'('urn:example:bob8822', true)). +answer('urn:example:complies'('urn:example:bob8823', true)). +answer('urn:example:complies'('urn:example:bob8824', true)). +answer('urn:example:complies'('urn:example:bob8825', true)). +answer('urn:example:complies'('urn:example:bob8826', true)). +answer('urn:example:complies'('urn:example:bob8827', true)). +answer('urn:example:complies'('urn:example:bob8828', true)). +answer('urn:example:complies'('urn:example:bob8829', true)). +answer('urn:example:complies'('urn:example:bob8830', true)). +answer('urn:example:complies'('urn:example:bob8831', true)). +answer('urn:example:complies'('urn:example:bob8832', true)). +answer('urn:example:complies'('urn:example:bob8833', true)). +answer('urn:example:complies'('urn:example:bob8834', true)). +answer('urn:example:complies'('urn:example:bob8835', true)). +answer('urn:example:complies'('urn:example:bob8836', true)). +answer('urn:example:complies'('urn:example:bob8837', true)). +answer('urn:example:complies'('urn:example:bob8838', true)). +answer('urn:example:complies'('urn:example:bob8839', true)). +answer('urn:example:complies'('urn:example:bob8840', true)). +answer('urn:example:complies'('urn:example:bob8841', true)). +answer('urn:example:complies'('urn:example:bob8842', true)). +answer('urn:example:complies'('urn:example:bob8843', true)). +answer('urn:example:complies'('urn:example:bob8844', true)). +answer('urn:example:complies'('urn:example:bob8845', true)). +answer('urn:example:complies'('urn:example:bob8846', true)). +answer('urn:example:complies'('urn:example:bob8847', true)). +answer('urn:example:complies'('urn:example:bob8848', true)). +answer('urn:example:complies'('urn:example:bob8849', true)). +answer('urn:example:complies'('urn:example:bob8850', true)). +answer('urn:example:complies'('urn:example:bob8851', true)). +answer('urn:example:complies'('urn:example:bob8852', true)). +answer('urn:example:complies'('urn:example:bob8853', true)). +answer('urn:example:complies'('urn:example:bob8854', true)). +answer('urn:example:complies'('urn:example:bob8855', true)). +answer('urn:example:complies'('urn:example:bob8856', true)). +answer('urn:example:complies'('urn:example:bob8857', true)). +answer('urn:example:complies'('urn:example:bob8858', true)). +answer('urn:example:complies'('urn:example:bob8859', true)). +answer('urn:example:complies'('urn:example:bob8860', true)). +answer('urn:example:complies'('urn:example:bob8861', true)). +answer('urn:example:complies'('urn:example:bob8862', true)). +answer('urn:example:complies'('urn:example:bob8863', true)). +answer('urn:example:complies'('urn:example:bob8864', true)). +answer('urn:example:complies'('urn:example:bob8865', true)). +answer('urn:example:complies'('urn:example:bob8866', true)). +answer('urn:example:complies'('urn:example:bob8867', true)). +answer('urn:example:complies'('urn:example:bob8868', true)). +answer('urn:example:complies'('urn:example:bob8869', true)). +answer('urn:example:complies'('urn:example:bob8870', true)). +answer('urn:example:complies'('urn:example:bob8871', true)). +answer('urn:example:complies'('urn:example:bob8872', true)). +answer('urn:example:complies'('urn:example:bob8873', true)). +answer('urn:example:complies'('urn:example:bob8874', true)). +answer('urn:example:complies'('urn:example:bob8875', true)). +answer('urn:example:complies'('urn:example:bob8876', true)). +answer('urn:example:complies'('urn:example:bob8877', true)). +answer('urn:example:complies'('urn:example:bob8878', true)). +answer('urn:example:complies'('urn:example:bob8879', true)). +answer('urn:example:complies'('urn:example:bob8880', true)). +answer('urn:example:complies'('urn:example:bob8881', true)). +answer('urn:example:complies'('urn:example:bob8882', true)). +answer('urn:example:complies'('urn:example:bob8883', true)). +answer('urn:example:complies'('urn:example:bob8884', true)). +answer('urn:example:complies'('urn:example:bob8885', true)). +answer('urn:example:complies'('urn:example:bob8886', true)). +answer('urn:example:complies'('urn:example:bob8887', true)). +answer('urn:example:complies'('urn:example:bob8888', true)). +answer('urn:example:complies'('urn:example:bob8889', true)). +answer('urn:example:complies'('urn:example:bob8890', true)). +answer('urn:example:complies'('urn:example:bob8891', true)). +answer('urn:example:complies'('urn:example:bob8892', true)). +answer('urn:example:complies'('urn:example:bob8893', true)). +answer('urn:example:complies'('urn:example:bob8894', true)). +answer('urn:example:complies'('urn:example:bob8895', true)). +answer('urn:example:complies'('urn:example:bob8896', true)). +answer('urn:example:complies'('urn:example:bob8897', true)). +answer('urn:example:complies'('urn:example:bob8898', true)). +answer('urn:example:complies'('urn:example:bob8899', true)). +answer('urn:example:complies'('urn:example:bob8900', true)). +answer('urn:example:complies'('urn:example:bob8901', true)). +answer('urn:example:complies'('urn:example:bob8902', true)). +answer('urn:example:complies'('urn:example:bob8903', true)). +answer('urn:example:complies'('urn:example:bob8904', true)). +answer('urn:example:complies'('urn:example:bob8905', true)). +answer('urn:example:complies'('urn:example:bob8906', true)). +answer('urn:example:complies'('urn:example:bob8907', true)). +answer('urn:example:complies'('urn:example:bob8908', true)). +answer('urn:example:complies'('urn:example:bob8909', true)). +answer('urn:example:complies'('urn:example:bob8910', true)). +answer('urn:example:complies'('urn:example:bob8911', true)). +answer('urn:example:complies'('urn:example:bob8912', true)). +answer('urn:example:complies'('urn:example:bob8913', true)). +answer('urn:example:complies'('urn:example:bob8914', true)). +answer('urn:example:complies'('urn:example:bob8915', true)). +answer('urn:example:complies'('urn:example:bob8916', true)). +answer('urn:example:complies'('urn:example:bob8917', true)). +answer('urn:example:complies'('urn:example:bob8918', true)). +answer('urn:example:complies'('urn:example:bob8919', true)). +answer('urn:example:complies'('urn:example:bob8920', true)). +answer('urn:example:complies'('urn:example:bob8921', true)). +answer('urn:example:complies'('urn:example:bob8922', true)). +answer('urn:example:complies'('urn:example:bob8923', true)). +answer('urn:example:complies'('urn:example:bob8924', true)). +answer('urn:example:complies'('urn:example:bob8925', true)). +answer('urn:example:complies'('urn:example:bob8926', true)). +answer('urn:example:complies'('urn:example:bob8927', true)). +answer('urn:example:complies'('urn:example:bob8928', true)). +answer('urn:example:complies'('urn:example:bob8929', true)). +answer('urn:example:complies'('urn:example:bob8930', true)). +answer('urn:example:complies'('urn:example:bob8931', true)). +answer('urn:example:complies'('urn:example:bob8932', true)). +answer('urn:example:complies'('urn:example:bob8933', true)). +answer('urn:example:complies'('urn:example:bob8934', true)). +answer('urn:example:complies'('urn:example:bob8935', true)). +answer('urn:example:complies'('urn:example:bob8936', true)). +answer('urn:example:complies'('urn:example:bob8937', true)). +answer('urn:example:complies'('urn:example:bob8938', true)). +answer('urn:example:complies'('urn:example:bob8939', true)). +answer('urn:example:complies'('urn:example:bob8940', true)). +answer('urn:example:complies'('urn:example:bob8941', true)). +answer('urn:example:complies'('urn:example:bob8942', true)). +answer('urn:example:complies'('urn:example:bob8943', true)). +answer('urn:example:complies'('urn:example:bob8944', true)). +answer('urn:example:complies'('urn:example:bob8945', true)). +answer('urn:example:complies'('urn:example:bob8946', true)). +answer('urn:example:complies'('urn:example:bob8947', true)). +answer('urn:example:complies'('urn:example:bob8948', true)). +answer('urn:example:complies'('urn:example:bob8949', true)). +answer('urn:example:complies'('urn:example:bob8950', true)). +answer('urn:example:complies'('urn:example:bob8951', true)). +answer('urn:example:complies'('urn:example:bob8952', true)). +answer('urn:example:complies'('urn:example:bob8953', true)). +answer('urn:example:complies'('urn:example:bob8954', true)). +answer('urn:example:complies'('urn:example:bob8955', true)). +answer('urn:example:complies'('urn:example:bob8956', true)). +answer('urn:example:complies'('urn:example:bob8957', true)). +answer('urn:example:complies'('urn:example:bob8958', true)). +answer('urn:example:complies'('urn:example:bob8959', true)). +answer('urn:example:complies'('urn:example:bob8960', true)). +answer('urn:example:complies'('urn:example:bob8961', true)). +answer('urn:example:complies'('urn:example:bob8962', true)). +answer('urn:example:complies'('urn:example:bob8963', true)). +answer('urn:example:complies'('urn:example:bob8964', true)). +answer('urn:example:complies'('urn:example:bob8965', true)). +answer('urn:example:complies'('urn:example:bob8966', true)). +answer('urn:example:complies'('urn:example:bob8967', true)). +answer('urn:example:complies'('urn:example:bob8968', true)). +answer('urn:example:complies'('urn:example:bob8969', true)). +answer('urn:example:complies'('urn:example:bob8970', true)). +answer('urn:example:complies'('urn:example:bob8971', true)). +answer('urn:example:complies'('urn:example:bob8972', true)). +answer('urn:example:complies'('urn:example:bob8973', true)). +answer('urn:example:complies'('urn:example:bob8974', true)). +answer('urn:example:complies'('urn:example:bob8975', true)). +answer('urn:example:complies'('urn:example:bob8976', true)). +answer('urn:example:complies'('urn:example:bob8977', true)). +answer('urn:example:complies'('urn:example:bob8978', true)). +answer('urn:example:complies'('urn:example:bob8979', true)). +answer('urn:example:complies'('urn:example:bob8980', true)). +answer('urn:example:complies'('urn:example:bob8981', true)). +answer('urn:example:complies'('urn:example:bob8982', true)). +answer('urn:example:complies'('urn:example:bob8983', true)). +answer('urn:example:complies'('urn:example:bob8984', true)). +answer('urn:example:complies'('urn:example:bob8985', true)). +answer('urn:example:complies'('urn:example:bob8986', true)). +answer('urn:example:complies'('urn:example:bob8987', true)). +answer('urn:example:complies'('urn:example:bob8988', true)). +answer('urn:example:complies'('urn:example:bob8989', true)). +answer('urn:example:complies'('urn:example:bob8990', true)). +answer('urn:example:complies'('urn:example:bob8991', true)). +answer('urn:example:complies'('urn:example:bob8992', true)). +answer('urn:example:complies'('urn:example:bob8993', true)). +answer('urn:example:complies'('urn:example:bob8994', true)). +answer('urn:example:complies'('urn:example:bob8995', true)). +answer('urn:example:complies'('urn:example:bob8996', true)). +answer('urn:example:complies'('urn:example:bob8997', true)). +answer('urn:example:complies'('urn:example:bob8998', true)). +answer('urn:example:complies'('urn:example:bob8999', true)). +answer('urn:example:complies'('urn:example:bob9000', true)). +answer('urn:example:complies'('urn:example:bob9001', true)). +answer('urn:example:complies'('urn:example:bob9002', true)). +answer('urn:example:complies'('urn:example:bob9003', true)). +answer('urn:example:complies'('urn:example:bob9004', true)). +answer('urn:example:complies'('urn:example:bob9005', true)). +answer('urn:example:complies'('urn:example:bob9006', true)). +answer('urn:example:complies'('urn:example:bob9007', true)). +answer('urn:example:complies'('urn:example:bob9008', true)). +answer('urn:example:complies'('urn:example:bob9009', true)). +answer('urn:example:complies'('urn:example:bob9010', true)). +answer('urn:example:complies'('urn:example:bob9011', true)). +answer('urn:example:complies'('urn:example:bob9012', true)). +answer('urn:example:complies'('urn:example:bob9013', true)). +answer('urn:example:complies'('urn:example:bob9014', true)). +answer('urn:example:complies'('urn:example:bob9015', true)). +answer('urn:example:complies'('urn:example:bob9016', true)). +answer('urn:example:complies'('urn:example:bob9017', true)). +answer('urn:example:complies'('urn:example:bob9018', true)). +answer('urn:example:complies'('urn:example:bob9019', true)). +answer('urn:example:complies'('urn:example:bob9020', true)). +answer('urn:example:complies'('urn:example:bob9021', true)). +answer('urn:example:complies'('urn:example:bob9022', true)). +answer('urn:example:complies'('urn:example:bob9023', true)). +answer('urn:example:complies'('urn:example:bob9024', true)). +answer('urn:example:complies'('urn:example:bob9025', true)). +answer('urn:example:complies'('urn:example:bob9026', true)). +answer('urn:example:complies'('urn:example:bob9027', true)). +answer('urn:example:complies'('urn:example:bob9028', true)). +answer('urn:example:complies'('urn:example:bob9029', true)). +answer('urn:example:complies'('urn:example:bob9030', true)). +answer('urn:example:complies'('urn:example:bob9031', true)). +answer('urn:example:complies'('urn:example:bob9032', true)). +answer('urn:example:complies'('urn:example:bob9033', true)). +answer('urn:example:complies'('urn:example:bob9034', true)). +answer('urn:example:complies'('urn:example:bob9035', true)). +answer('urn:example:complies'('urn:example:bob9036', true)). +answer('urn:example:complies'('urn:example:bob9037', true)). +answer('urn:example:complies'('urn:example:bob9038', true)). +answer('urn:example:complies'('urn:example:bob9039', true)). +answer('urn:example:complies'('urn:example:bob9040', true)). +answer('urn:example:complies'('urn:example:bob9041', true)). +answer('urn:example:complies'('urn:example:bob9042', true)). +answer('urn:example:complies'('urn:example:bob9043', true)). +answer('urn:example:complies'('urn:example:bob9044', true)). +answer('urn:example:complies'('urn:example:bob9045', true)). +answer('urn:example:complies'('urn:example:bob9046', true)). +answer('urn:example:complies'('urn:example:bob9047', true)). +answer('urn:example:complies'('urn:example:bob9048', true)). +answer('urn:example:complies'('urn:example:bob9049', true)). +answer('urn:example:complies'('urn:example:bob9050', true)). +answer('urn:example:complies'('urn:example:bob9051', true)). +answer('urn:example:complies'('urn:example:bob9052', true)). +answer('urn:example:complies'('urn:example:bob9053', true)). +answer('urn:example:complies'('urn:example:bob9054', true)). +answer('urn:example:complies'('urn:example:bob9055', true)). +answer('urn:example:complies'('urn:example:bob9056', true)). +answer('urn:example:complies'('urn:example:bob9057', true)). +answer('urn:example:complies'('urn:example:bob9058', true)). +answer('urn:example:complies'('urn:example:bob9059', true)). +answer('urn:example:complies'('urn:example:bob9060', true)). +answer('urn:example:complies'('urn:example:bob9061', true)). +answer('urn:example:complies'('urn:example:bob9062', true)). +answer('urn:example:complies'('urn:example:bob9063', true)). +answer('urn:example:complies'('urn:example:bob9064', true)). +answer('urn:example:complies'('urn:example:bob9065', true)). +answer('urn:example:complies'('urn:example:bob9066', true)). +answer('urn:example:complies'('urn:example:bob9067', true)). +answer('urn:example:complies'('urn:example:bob9068', true)). +answer('urn:example:complies'('urn:example:bob9069', true)). +answer('urn:example:complies'('urn:example:bob9070', true)). +answer('urn:example:complies'('urn:example:bob9071', true)). +answer('urn:example:complies'('urn:example:bob9072', true)). +answer('urn:example:complies'('urn:example:bob9073', true)). +answer('urn:example:complies'('urn:example:bob9074', true)). +answer('urn:example:complies'('urn:example:bob9075', true)). +answer('urn:example:complies'('urn:example:bob9076', true)). +answer('urn:example:complies'('urn:example:bob9077', true)). +answer('urn:example:complies'('urn:example:bob9078', true)). +answer('urn:example:complies'('urn:example:bob9079', true)). +answer('urn:example:complies'('urn:example:bob9080', true)). +answer('urn:example:complies'('urn:example:bob9081', true)). +answer('urn:example:complies'('urn:example:bob9082', true)). +answer('urn:example:complies'('urn:example:bob9083', true)). +answer('urn:example:complies'('urn:example:bob9084', true)). +answer('urn:example:complies'('urn:example:bob9085', true)). +answer('urn:example:complies'('urn:example:bob9086', true)). +answer('urn:example:complies'('urn:example:bob9087', true)). +answer('urn:example:complies'('urn:example:bob9088', true)). +answer('urn:example:complies'('urn:example:bob9089', true)). +answer('urn:example:complies'('urn:example:bob9090', true)). +answer('urn:example:complies'('urn:example:bob9091', true)). +answer('urn:example:complies'('urn:example:bob9092', true)). +answer('urn:example:complies'('urn:example:bob9093', true)). +answer('urn:example:complies'('urn:example:bob9094', true)). +answer('urn:example:complies'('urn:example:bob9095', true)). +answer('urn:example:complies'('urn:example:bob9096', true)). +answer('urn:example:complies'('urn:example:bob9097', true)). +answer('urn:example:complies'('urn:example:bob9098', true)). +answer('urn:example:complies'('urn:example:bob9099', true)). +answer('urn:example:complies'('urn:example:bob9100', true)). +answer('urn:example:complies'('urn:example:bob9101', true)). +answer('urn:example:complies'('urn:example:bob9102', true)). +answer('urn:example:complies'('urn:example:bob9103', true)). +answer('urn:example:complies'('urn:example:bob9104', true)). +answer('urn:example:complies'('urn:example:bob9105', true)). +answer('urn:example:complies'('urn:example:bob9106', true)). +answer('urn:example:complies'('urn:example:bob9107', true)). +answer('urn:example:complies'('urn:example:bob9108', true)). +answer('urn:example:complies'('urn:example:bob9109', true)). +answer('urn:example:complies'('urn:example:bob9110', true)). +answer('urn:example:complies'('urn:example:bob9111', true)). +answer('urn:example:complies'('urn:example:bob9112', true)). +answer('urn:example:complies'('urn:example:bob9113', true)). +answer('urn:example:complies'('urn:example:bob9114', true)). +answer('urn:example:complies'('urn:example:bob9115', true)). +answer('urn:example:complies'('urn:example:bob9116', true)). +answer('urn:example:complies'('urn:example:bob9117', true)). +answer('urn:example:complies'('urn:example:bob9118', true)). +answer('urn:example:complies'('urn:example:bob9119', true)). +answer('urn:example:complies'('urn:example:bob9120', true)). +answer('urn:example:complies'('urn:example:bob9121', true)). +answer('urn:example:complies'('urn:example:bob9122', true)). +answer('urn:example:complies'('urn:example:bob9123', true)). +answer('urn:example:complies'('urn:example:bob9124', true)). +answer('urn:example:complies'('urn:example:bob9125', true)). +answer('urn:example:complies'('urn:example:bob9126', true)). +answer('urn:example:complies'('urn:example:bob9127', true)). +answer('urn:example:complies'('urn:example:bob9128', true)). +answer('urn:example:complies'('urn:example:bob9129', true)). +answer('urn:example:complies'('urn:example:bob9130', true)). +answer('urn:example:complies'('urn:example:bob9131', true)). +answer('urn:example:complies'('urn:example:bob9132', true)). +answer('urn:example:complies'('urn:example:bob9133', true)). +answer('urn:example:complies'('urn:example:bob9134', true)). +answer('urn:example:complies'('urn:example:bob9135', true)). +answer('urn:example:complies'('urn:example:bob9136', true)). +answer('urn:example:complies'('urn:example:bob9137', true)). +answer('urn:example:complies'('urn:example:bob9138', true)). +answer('urn:example:complies'('urn:example:bob9139', true)). +answer('urn:example:complies'('urn:example:bob9140', true)). +answer('urn:example:complies'('urn:example:bob9141', true)). +answer('urn:example:complies'('urn:example:bob9142', true)). +answer('urn:example:complies'('urn:example:bob9143', true)). +answer('urn:example:complies'('urn:example:bob9144', true)). +answer('urn:example:complies'('urn:example:bob9145', true)). +answer('urn:example:complies'('urn:example:bob9146', true)). +answer('urn:example:complies'('urn:example:bob9147', true)). +answer('urn:example:complies'('urn:example:bob9148', true)). +answer('urn:example:complies'('urn:example:bob9149', true)). +answer('urn:example:complies'('urn:example:bob9150', true)). +answer('urn:example:complies'('urn:example:bob9151', true)). +answer('urn:example:complies'('urn:example:bob9152', true)). +answer('urn:example:complies'('urn:example:bob9153', true)). +answer('urn:example:complies'('urn:example:bob9154', true)). +answer('urn:example:complies'('urn:example:bob9155', true)). +answer('urn:example:complies'('urn:example:bob9156', true)). +answer('urn:example:complies'('urn:example:bob9157', true)). +answer('urn:example:complies'('urn:example:bob9158', true)). +answer('urn:example:complies'('urn:example:bob9159', true)). +answer('urn:example:complies'('urn:example:bob9160', true)). +answer('urn:example:complies'('urn:example:bob9161', true)). +answer('urn:example:complies'('urn:example:bob9162', true)). +answer('urn:example:complies'('urn:example:bob9163', true)). +answer('urn:example:complies'('urn:example:bob9164', true)). +answer('urn:example:complies'('urn:example:bob9165', true)). +answer('urn:example:complies'('urn:example:bob9166', true)). +answer('urn:example:complies'('urn:example:bob9167', true)). +answer('urn:example:complies'('urn:example:bob9168', true)). +answer('urn:example:complies'('urn:example:bob9169', true)). +answer('urn:example:complies'('urn:example:bob9170', true)). +answer('urn:example:complies'('urn:example:bob9171', true)). +answer('urn:example:complies'('urn:example:bob9172', true)). +answer('urn:example:complies'('urn:example:bob9173', true)). +answer('urn:example:complies'('urn:example:bob9174', true)). +answer('urn:example:complies'('urn:example:bob9175', true)). +answer('urn:example:complies'('urn:example:bob9176', true)). +answer('urn:example:complies'('urn:example:bob9177', true)). +answer('urn:example:complies'('urn:example:bob9178', true)). +answer('urn:example:complies'('urn:example:bob9179', true)). +answer('urn:example:complies'('urn:example:bob9180', true)). +answer('urn:example:complies'('urn:example:bob9181', true)). +answer('urn:example:complies'('urn:example:bob9182', true)). +answer('urn:example:complies'('urn:example:bob9183', true)). +answer('urn:example:complies'('urn:example:bob9184', true)). +answer('urn:example:complies'('urn:example:bob9185', true)). +answer('urn:example:complies'('urn:example:bob9186', true)). +answer('urn:example:complies'('urn:example:bob9187', true)). +answer('urn:example:complies'('urn:example:bob9188', true)). +answer('urn:example:complies'('urn:example:bob9189', true)). +answer('urn:example:complies'('urn:example:bob9190', true)). +answer('urn:example:complies'('urn:example:bob9191', true)). +answer('urn:example:complies'('urn:example:bob9192', true)). +answer('urn:example:complies'('urn:example:bob9193', true)). +answer('urn:example:complies'('urn:example:bob9194', true)). +answer('urn:example:complies'('urn:example:bob9195', true)). +answer('urn:example:complies'('urn:example:bob9196', true)). +answer('urn:example:complies'('urn:example:bob9197', true)). +answer('urn:example:complies'('urn:example:bob9198', true)). +answer('urn:example:complies'('urn:example:bob9199', true)). +answer('urn:example:complies'('urn:example:bob9200', true)). +answer('urn:example:complies'('urn:example:bob9201', true)). +answer('urn:example:complies'('urn:example:bob9202', true)). +answer('urn:example:complies'('urn:example:bob9203', true)). +answer('urn:example:complies'('urn:example:bob9204', true)). +answer('urn:example:complies'('urn:example:bob9205', true)). +answer('urn:example:complies'('urn:example:bob9206', true)). +answer('urn:example:complies'('urn:example:bob9207', true)). +answer('urn:example:complies'('urn:example:bob9208', true)). +answer('urn:example:complies'('urn:example:bob9209', true)). +answer('urn:example:complies'('urn:example:bob9210', true)). +answer('urn:example:complies'('urn:example:bob9211', true)). +answer('urn:example:complies'('urn:example:bob9212', true)). +answer('urn:example:complies'('urn:example:bob9213', true)). +answer('urn:example:complies'('urn:example:bob9214', true)). +answer('urn:example:complies'('urn:example:bob9215', true)). +answer('urn:example:complies'('urn:example:bob9216', true)). +answer('urn:example:complies'('urn:example:bob9217', true)). +answer('urn:example:complies'('urn:example:bob9218', true)). +answer('urn:example:complies'('urn:example:bob9219', true)). +answer('urn:example:complies'('urn:example:bob9220', true)). +answer('urn:example:complies'('urn:example:bob9221', true)). +answer('urn:example:complies'('urn:example:bob9222', true)). +answer('urn:example:complies'('urn:example:bob9223', true)). +answer('urn:example:complies'('urn:example:bob9224', true)). +answer('urn:example:complies'('urn:example:bob9225', true)). +answer('urn:example:complies'('urn:example:bob9226', true)). +answer('urn:example:complies'('urn:example:bob9227', true)). +answer('urn:example:complies'('urn:example:bob9228', true)). +answer('urn:example:complies'('urn:example:bob9229', true)). +answer('urn:example:complies'('urn:example:bob9230', true)). +answer('urn:example:complies'('urn:example:bob9231', true)). +answer('urn:example:complies'('urn:example:bob9232', true)). +answer('urn:example:complies'('urn:example:bob9233', true)). +answer('urn:example:complies'('urn:example:bob9234', true)). +answer('urn:example:complies'('urn:example:bob9235', true)). +answer('urn:example:complies'('urn:example:bob9236', true)). +answer('urn:example:complies'('urn:example:bob9237', true)). +answer('urn:example:complies'('urn:example:bob9238', true)). +answer('urn:example:complies'('urn:example:bob9239', true)). +answer('urn:example:complies'('urn:example:bob9240', true)). +answer('urn:example:complies'('urn:example:bob9241', true)). +answer('urn:example:complies'('urn:example:bob9242', true)). +answer('urn:example:complies'('urn:example:bob9243', true)). +answer('urn:example:complies'('urn:example:bob9244', true)). +answer('urn:example:complies'('urn:example:bob9245', true)). +answer('urn:example:complies'('urn:example:bob9246', true)). +answer('urn:example:complies'('urn:example:bob9247', true)). +answer('urn:example:complies'('urn:example:bob9248', true)). +answer('urn:example:complies'('urn:example:bob9249', true)). +answer('urn:example:complies'('urn:example:bob9250', true)). +answer('urn:example:complies'('urn:example:bob9251', true)). +answer('urn:example:complies'('urn:example:bob9252', true)). +answer('urn:example:complies'('urn:example:bob9253', true)). +answer('urn:example:complies'('urn:example:bob9254', true)). +answer('urn:example:complies'('urn:example:bob9255', true)). +answer('urn:example:complies'('urn:example:bob9256', true)). +answer('urn:example:complies'('urn:example:bob9257', true)). +answer('urn:example:complies'('urn:example:bob9258', true)). +answer('urn:example:complies'('urn:example:bob9259', true)). +answer('urn:example:complies'('urn:example:bob9260', true)). +answer('urn:example:complies'('urn:example:bob9261', true)). +answer('urn:example:complies'('urn:example:bob9262', true)). +answer('urn:example:complies'('urn:example:bob9263', true)). +answer('urn:example:complies'('urn:example:bob9264', true)). +answer('urn:example:complies'('urn:example:bob9265', true)). +answer('urn:example:complies'('urn:example:bob9266', true)). +answer('urn:example:complies'('urn:example:bob9267', true)). +answer('urn:example:complies'('urn:example:bob9268', true)). +answer('urn:example:complies'('urn:example:bob9269', true)). +answer('urn:example:complies'('urn:example:bob9270', true)). +answer('urn:example:complies'('urn:example:bob9271', true)). +answer('urn:example:complies'('urn:example:bob9272', true)). +answer('urn:example:complies'('urn:example:bob9273', true)). +answer('urn:example:complies'('urn:example:bob9274', true)). +answer('urn:example:complies'('urn:example:bob9275', true)). +answer('urn:example:complies'('urn:example:bob9276', true)). +answer('urn:example:complies'('urn:example:bob9277', true)). +answer('urn:example:complies'('urn:example:bob9278', true)). +answer('urn:example:complies'('urn:example:bob9279', true)). +answer('urn:example:complies'('urn:example:bob9280', true)). +answer('urn:example:complies'('urn:example:bob9281', true)). +answer('urn:example:complies'('urn:example:bob9282', true)). +answer('urn:example:complies'('urn:example:bob9283', true)). +answer('urn:example:complies'('urn:example:bob9284', true)). +answer('urn:example:complies'('urn:example:bob9285', true)). +answer('urn:example:complies'('urn:example:bob9286', true)). +answer('urn:example:complies'('urn:example:bob9287', true)). +answer('urn:example:complies'('urn:example:bob9288', true)). +answer('urn:example:complies'('urn:example:bob9289', true)). +answer('urn:example:complies'('urn:example:bob9290', true)). +answer('urn:example:complies'('urn:example:bob9291', true)). +answer('urn:example:complies'('urn:example:bob9292', true)). +answer('urn:example:complies'('urn:example:bob9293', true)). +answer('urn:example:complies'('urn:example:bob9294', true)). +answer('urn:example:complies'('urn:example:bob9295', true)). +answer('urn:example:complies'('urn:example:bob9296', true)). +answer('urn:example:complies'('urn:example:bob9297', true)). +answer('urn:example:complies'('urn:example:bob9298', true)). +answer('urn:example:complies'('urn:example:bob9299', true)). +answer('urn:example:complies'('urn:example:bob9300', true)). +answer('urn:example:complies'('urn:example:bob9301', true)). +answer('urn:example:complies'('urn:example:bob9302', true)). +answer('urn:example:complies'('urn:example:bob9303', true)). +answer('urn:example:complies'('urn:example:bob9304', true)). +answer('urn:example:complies'('urn:example:bob9305', true)). +answer('urn:example:complies'('urn:example:bob9306', true)). +answer('urn:example:complies'('urn:example:bob9307', true)). +answer('urn:example:complies'('urn:example:bob9308', true)). +answer('urn:example:complies'('urn:example:bob9309', true)). +answer('urn:example:complies'('urn:example:bob9310', true)). +answer('urn:example:complies'('urn:example:bob9311', true)). +answer('urn:example:complies'('urn:example:bob9312', true)). +answer('urn:example:complies'('urn:example:bob9313', true)). +answer('urn:example:complies'('urn:example:bob9314', true)). +answer('urn:example:complies'('urn:example:bob9315', true)). +answer('urn:example:complies'('urn:example:bob9316', true)). +answer('urn:example:complies'('urn:example:bob9317', true)). +answer('urn:example:complies'('urn:example:bob9318', true)). +answer('urn:example:complies'('urn:example:bob9319', true)). +answer('urn:example:complies'('urn:example:bob9320', true)). +answer('urn:example:complies'('urn:example:bob9321', true)). +answer('urn:example:complies'('urn:example:bob9322', true)). +answer('urn:example:complies'('urn:example:bob9323', true)). +answer('urn:example:complies'('urn:example:bob9324', true)). +answer('urn:example:complies'('urn:example:bob9325', true)). +answer('urn:example:complies'('urn:example:bob9326', true)). +answer('urn:example:complies'('urn:example:bob9327', true)). +answer('urn:example:complies'('urn:example:bob9328', true)). +answer('urn:example:complies'('urn:example:bob9329', true)). +answer('urn:example:complies'('urn:example:bob9330', true)). +answer('urn:example:complies'('urn:example:bob9331', true)). +answer('urn:example:complies'('urn:example:bob9332', true)). +answer('urn:example:complies'('urn:example:bob9333', true)). +answer('urn:example:complies'('urn:example:bob9334', true)). +answer('urn:example:complies'('urn:example:bob9335', true)). +answer('urn:example:complies'('urn:example:bob9336', true)). +answer('urn:example:complies'('urn:example:bob9337', true)). +answer('urn:example:complies'('urn:example:bob9338', true)). +answer('urn:example:complies'('urn:example:bob9339', true)). +answer('urn:example:complies'('urn:example:bob9340', true)). +answer('urn:example:complies'('urn:example:bob9341', true)). +answer('urn:example:complies'('urn:example:bob9342', true)). +answer('urn:example:complies'('urn:example:bob9343', true)). +answer('urn:example:complies'('urn:example:bob9344', true)). +answer('urn:example:complies'('urn:example:bob9345', true)). +answer('urn:example:complies'('urn:example:bob9346', true)). +answer('urn:example:complies'('urn:example:bob9347', true)). +answer('urn:example:complies'('urn:example:bob9348', true)). +answer('urn:example:complies'('urn:example:bob9349', true)). +answer('urn:example:complies'('urn:example:bob9350', true)). +answer('urn:example:complies'('urn:example:bob9351', true)). +answer('urn:example:complies'('urn:example:bob9352', true)). +answer('urn:example:complies'('urn:example:bob9353', true)). +answer('urn:example:complies'('urn:example:bob9354', true)). +answer('urn:example:complies'('urn:example:bob9355', true)). +answer('urn:example:complies'('urn:example:bob9356', true)). +answer('urn:example:complies'('urn:example:bob9357', true)). +answer('urn:example:complies'('urn:example:bob9358', true)). +answer('urn:example:complies'('urn:example:bob9359', true)). +answer('urn:example:complies'('urn:example:bob9360', true)). +answer('urn:example:complies'('urn:example:bob9361', true)). +answer('urn:example:complies'('urn:example:bob9362', true)). +answer('urn:example:complies'('urn:example:bob9363', true)). +answer('urn:example:complies'('urn:example:bob9364', true)). +answer('urn:example:complies'('urn:example:bob9365', true)). +answer('urn:example:complies'('urn:example:bob9366', true)). +answer('urn:example:complies'('urn:example:bob9367', true)). +answer('urn:example:complies'('urn:example:bob9368', true)). +answer('urn:example:complies'('urn:example:bob9369', true)). +answer('urn:example:complies'('urn:example:bob9370', true)). +answer('urn:example:complies'('urn:example:bob9371', true)). +answer('urn:example:complies'('urn:example:bob9372', true)). +answer('urn:example:complies'('urn:example:bob9373', true)). +answer('urn:example:complies'('urn:example:bob9374', true)). +answer('urn:example:complies'('urn:example:bob9375', true)). +answer('urn:example:complies'('urn:example:bob9376', true)). +answer('urn:example:complies'('urn:example:bob9377', true)). +answer('urn:example:complies'('urn:example:bob9378', true)). +answer('urn:example:complies'('urn:example:bob9379', true)). +answer('urn:example:complies'('urn:example:bob9380', true)). +answer('urn:example:complies'('urn:example:bob9381', true)). +answer('urn:example:complies'('urn:example:bob9382', true)). +answer('urn:example:complies'('urn:example:bob9383', true)). +answer('urn:example:complies'('urn:example:bob9384', true)). +answer('urn:example:complies'('urn:example:bob9385', true)). +answer('urn:example:complies'('urn:example:bob9386', true)). +answer('urn:example:complies'('urn:example:bob9387', true)). +answer('urn:example:complies'('urn:example:bob9388', true)). +answer('urn:example:complies'('urn:example:bob9389', true)). +answer('urn:example:complies'('urn:example:bob9390', true)). +answer('urn:example:complies'('urn:example:bob9391', true)). +answer('urn:example:complies'('urn:example:bob9392', true)). +answer('urn:example:complies'('urn:example:bob9393', true)). +answer('urn:example:complies'('urn:example:bob9394', true)). +answer('urn:example:complies'('urn:example:bob9395', true)). +answer('urn:example:complies'('urn:example:bob9396', true)). +answer('urn:example:complies'('urn:example:bob9397', true)). +answer('urn:example:complies'('urn:example:bob9398', true)). +answer('urn:example:complies'('urn:example:bob9399', true)). +answer('urn:example:complies'('urn:example:bob9400', true)). +answer('urn:example:complies'('urn:example:bob9401', true)). +answer('urn:example:complies'('urn:example:bob9402', true)). +answer('urn:example:complies'('urn:example:bob9403', true)). +answer('urn:example:complies'('urn:example:bob9404', true)). +answer('urn:example:complies'('urn:example:bob9405', true)). +answer('urn:example:complies'('urn:example:bob9406', true)). +answer('urn:example:complies'('urn:example:bob9407', true)). +answer('urn:example:complies'('urn:example:bob9408', true)). +answer('urn:example:complies'('urn:example:bob9409', true)). +answer('urn:example:complies'('urn:example:bob9410', true)). +answer('urn:example:complies'('urn:example:bob9411', true)). +answer('urn:example:complies'('urn:example:bob9412', true)). +answer('urn:example:complies'('urn:example:bob9413', true)). +answer('urn:example:complies'('urn:example:bob9414', true)). +answer('urn:example:complies'('urn:example:bob9415', true)). +answer('urn:example:complies'('urn:example:bob9416', true)). +answer('urn:example:complies'('urn:example:bob9417', true)). +answer('urn:example:complies'('urn:example:bob9418', true)). +answer('urn:example:complies'('urn:example:bob9419', true)). +answer('urn:example:complies'('urn:example:bob9420', true)). +answer('urn:example:complies'('urn:example:bob9421', true)). +answer('urn:example:complies'('urn:example:bob9422', true)). +answer('urn:example:complies'('urn:example:bob9423', true)). +answer('urn:example:complies'('urn:example:bob9424', true)). +answer('urn:example:complies'('urn:example:bob9425', true)). +answer('urn:example:complies'('urn:example:bob9426', true)). +answer('urn:example:complies'('urn:example:bob9427', true)). +answer('urn:example:complies'('urn:example:bob9428', true)). +answer('urn:example:complies'('urn:example:bob9429', true)). +answer('urn:example:complies'('urn:example:bob9430', true)). +answer('urn:example:complies'('urn:example:bob9431', true)). +answer('urn:example:complies'('urn:example:bob9432', true)). +answer('urn:example:complies'('urn:example:bob9433', true)). +answer('urn:example:complies'('urn:example:bob9434', true)). +answer('urn:example:complies'('urn:example:bob9435', true)). +answer('urn:example:complies'('urn:example:bob9436', true)). +answer('urn:example:complies'('urn:example:bob9437', true)). +answer('urn:example:complies'('urn:example:bob9438', true)). +answer('urn:example:complies'('urn:example:bob9439', true)). +answer('urn:example:complies'('urn:example:bob9440', true)). +answer('urn:example:complies'('urn:example:bob9441', true)). +answer('urn:example:complies'('urn:example:bob9442', true)). +answer('urn:example:complies'('urn:example:bob9443', true)). +answer('urn:example:complies'('urn:example:bob9444', true)). +answer('urn:example:complies'('urn:example:bob9445', true)). +answer('urn:example:complies'('urn:example:bob9446', true)). +answer('urn:example:complies'('urn:example:bob9447', true)). +answer('urn:example:complies'('urn:example:bob9448', true)). +answer('urn:example:complies'('urn:example:bob9449', true)). +answer('urn:example:complies'('urn:example:bob9450', true)). +answer('urn:example:complies'('urn:example:bob9451', true)). +answer('urn:example:complies'('urn:example:bob9452', true)). +answer('urn:example:complies'('urn:example:bob9453', true)). +answer('urn:example:complies'('urn:example:bob9454', true)). +answer('urn:example:complies'('urn:example:bob9455', true)). +answer('urn:example:complies'('urn:example:bob9456', true)). +answer('urn:example:complies'('urn:example:bob9457', true)). +answer('urn:example:complies'('urn:example:bob9458', true)). +answer('urn:example:complies'('urn:example:bob9459', true)). +answer('urn:example:complies'('urn:example:bob9460', true)). +answer('urn:example:complies'('urn:example:bob9461', true)). +answer('urn:example:complies'('urn:example:bob9462', true)). +answer('urn:example:complies'('urn:example:bob9463', true)). +answer('urn:example:complies'('urn:example:bob9464', true)). +answer('urn:example:complies'('urn:example:bob9465', true)). +answer('urn:example:complies'('urn:example:bob9466', true)). +answer('urn:example:complies'('urn:example:bob9467', true)). +answer('urn:example:complies'('urn:example:bob9468', true)). +answer('urn:example:complies'('urn:example:bob9469', true)). +answer('urn:example:complies'('urn:example:bob9470', true)). +answer('urn:example:complies'('urn:example:bob9471', true)). +answer('urn:example:complies'('urn:example:bob9472', true)). +answer('urn:example:complies'('urn:example:bob9473', true)). +answer('urn:example:complies'('urn:example:bob9474', true)). +answer('urn:example:complies'('urn:example:bob9475', true)). +answer('urn:example:complies'('urn:example:bob9476', true)). +answer('urn:example:complies'('urn:example:bob9477', true)). +answer('urn:example:complies'('urn:example:bob9478', true)). +answer('urn:example:complies'('urn:example:bob9479', true)). +answer('urn:example:complies'('urn:example:bob9480', true)). +answer('urn:example:complies'('urn:example:bob9481', true)). +answer('urn:example:complies'('urn:example:bob9482', true)). +answer('urn:example:complies'('urn:example:bob9483', true)). +answer('urn:example:complies'('urn:example:bob9484', true)). +answer('urn:example:complies'('urn:example:bob9485', true)). +answer('urn:example:complies'('urn:example:bob9486', true)). +answer('urn:example:complies'('urn:example:bob9487', true)). +answer('urn:example:complies'('urn:example:bob9488', true)). +answer('urn:example:complies'('urn:example:bob9489', true)). +answer('urn:example:complies'('urn:example:bob9490', true)). +answer('urn:example:complies'('urn:example:bob9491', true)). +answer('urn:example:complies'('urn:example:bob9492', true)). +answer('urn:example:complies'('urn:example:bob9493', true)). +answer('urn:example:complies'('urn:example:bob9494', true)). +answer('urn:example:complies'('urn:example:bob9495', true)). +answer('urn:example:complies'('urn:example:bob9496', true)). +answer('urn:example:complies'('urn:example:bob9497', true)). +answer('urn:example:complies'('urn:example:bob9498', true)). +answer('urn:example:complies'('urn:example:bob9499', true)). +answer('urn:example:complies'('urn:example:bob9500', true)). +answer('urn:example:complies'('urn:example:bob9501', true)). +answer('urn:example:complies'('urn:example:bob9502', true)). +answer('urn:example:complies'('urn:example:bob9503', true)). +answer('urn:example:complies'('urn:example:bob9504', true)). +answer('urn:example:complies'('urn:example:bob9505', true)). +answer('urn:example:complies'('urn:example:bob9506', true)). +answer('urn:example:complies'('urn:example:bob9507', true)). +answer('urn:example:complies'('urn:example:bob9508', true)). +answer('urn:example:complies'('urn:example:bob9509', true)). +answer('urn:example:complies'('urn:example:bob9510', true)). +answer('urn:example:complies'('urn:example:bob9511', true)). +answer('urn:example:complies'('urn:example:bob9512', true)). +answer('urn:example:complies'('urn:example:bob9513', true)). +answer('urn:example:complies'('urn:example:bob9514', true)). +answer('urn:example:complies'('urn:example:bob9515', true)). +answer('urn:example:complies'('urn:example:bob9516', true)). +answer('urn:example:complies'('urn:example:bob9517', true)). +answer('urn:example:complies'('urn:example:bob9518', true)). +answer('urn:example:complies'('urn:example:bob9519', true)). +answer('urn:example:complies'('urn:example:bob9520', true)). +answer('urn:example:complies'('urn:example:bob9521', true)). +answer('urn:example:complies'('urn:example:bob9522', true)). +answer('urn:example:complies'('urn:example:bob9523', true)). +answer('urn:example:complies'('urn:example:bob9524', true)). +answer('urn:example:complies'('urn:example:bob9525', true)). +answer('urn:example:complies'('urn:example:bob9526', true)). +answer('urn:example:complies'('urn:example:bob9527', true)). +answer('urn:example:complies'('urn:example:bob9528', true)). +answer('urn:example:complies'('urn:example:bob9529', true)). +answer('urn:example:complies'('urn:example:bob9530', true)). +answer('urn:example:complies'('urn:example:bob9531', true)). +answer('urn:example:complies'('urn:example:bob9532', true)). +answer('urn:example:complies'('urn:example:bob9533', true)). +answer('urn:example:complies'('urn:example:bob9534', true)). +answer('urn:example:complies'('urn:example:bob9535', true)). +answer('urn:example:complies'('urn:example:bob9536', true)). +answer('urn:example:complies'('urn:example:bob9537', true)). +answer('urn:example:complies'('urn:example:bob9538', true)). +answer('urn:example:complies'('urn:example:bob9539', true)). +answer('urn:example:complies'('urn:example:bob9540', true)). +answer('urn:example:complies'('urn:example:bob9541', true)). +answer('urn:example:complies'('urn:example:bob9542', true)). +answer('urn:example:complies'('urn:example:bob9543', true)). +answer('urn:example:complies'('urn:example:bob9544', true)). +answer('urn:example:complies'('urn:example:bob9545', true)). +answer('urn:example:complies'('urn:example:bob9546', true)). +answer('urn:example:complies'('urn:example:bob9547', true)). +answer('urn:example:complies'('urn:example:bob9548', true)). +answer('urn:example:complies'('urn:example:bob9549', true)). +answer('urn:example:complies'('urn:example:bob9550', true)). +answer('urn:example:complies'('urn:example:bob9551', true)). +answer('urn:example:complies'('urn:example:bob9552', true)). +answer('urn:example:complies'('urn:example:bob9553', true)). +answer('urn:example:complies'('urn:example:bob9554', true)). +answer('urn:example:complies'('urn:example:bob9555', true)). +answer('urn:example:complies'('urn:example:bob9556', true)). +answer('urn:example:complies'('urn:example:bob9557', true)). +answer('urn:example:complies'('urn:example:bob9558', true)). +answer('urn:example:complies'('urn:example:bob9559', true)). +answer('urn:example:complies'('urn:example:bob9560', true)). +answer('urn:example:complies'('urn:example:bob9561', true)). +answer('urn:example:complies'('urn:example:bob9562', true)). +answer('urn:example:complies'('urn:example:bob9563', true)). +answer('urn:example:complies'('urn:example:bob9564', true)). +answer('urn:example:complies'('urn:example:bob9565', true)). +answer('urn:example:complies'('urn:example:bob9566', true)). +answer('urn:example:complies'('urn:example:bob9567', true)). +answer('urn:example:complies'('urn:example:bob9568', true)). +answer('urn:example:complies'('urn:example:bob9569', true)). +answer('urn:example:complies'('urn:example:bob9570', true)). +answer('urn:example:complies'('urn:example:bob9571', true)). +answer('urn:example:complies'('urn:example:bob9572', true)). +answer('urn:example:complies'('urn:example:bob9573', true)). +answer('urn:example:complies'('urn:example:bob9574', true)). +answer('urn:example:complies'('urn:example:bob9575', true)). +answer('urn:example:complies'('urn:example:bob9576', true)). +answer('urn:example:complies'('urn:example:bob9577', true)). +answer('urn:example:complies'('urn:example:bob9578', true)). +answer('urn:example:complies'('urn:example:bob9579', true)). +answer('urn:example:complies'('urn:example:bob9580', true)). +answer('urn:example:complies'('urn:example:bob9581', true)). +answer('urn:example:complies'('urn:example:bob9582', true)). +answer('urn:example:complies'('urn:example:bob9583', true)). +answer('urn:example:complies'('urn:example:bob9584', true)). +answer('urn:example:complies'('urn:example:bob9585', true)). +answer('urn:example:complies'('urn:example:bob9586', true)). +answer('urn:example:complies'('urn:example:bob9587', true)). +answer('urn:example:complies'('urn:example:bob9588', true)). +answer('urn:example:complies'('urn:example:bob9589', true)). +answer('urn:example:complies'('urn:example:bob9590', true)). +answer('urn:example:complies'('urn:example:bob9591', true)). +answer('urn:example:complies'('urn:example:bob9592', true)). +answer('urn:example:complies'('urn:example:bob9593', true)). +answer('urn:example:complies'('urn:example:bob9594', true)). +answer('urn:example:complies'('urn:example:bob9595', true)). +answer('urn:example:complies'('urn:example:bob9596', true)). +answer('urn:example:complies'('urn:example:bob9597', true)). +answer('urn:example:complies'('urn:example:bob9598', true)). +answer('urn:example:complies'('urn:example:bob9599', true)). +answer('urn:example:complies'('urn:example:bob9600', true)). +answer('urn:example:complies'('urn:example:bob9601', true)). +answer('urn:example:complies'('urn:example:bob9602', true)). +answer('urn:example:complies'('urn:example:bob9603', true)). +answer('urn:example:complies'('urn:example:bob9604', true)). +answer('urn:example:complies'('urn:example:bob9605', true)). +answer('urn:example:complies'('urn:example:bob9606', true)). +answer('urn:example:complies'('urn:example:bob9607', true)). +answer('urn:example:complies'('urn:example:bob9608', true)). +answer('urn:example:complies'('urn:example:bob9609', true)). +answer('urn:example:complies'('urn:example:bob9610', true)). +answer('urn:example:complies'('urn:example:bob9611', true)). +answer('urn:example:complies'('urn:example:bob9612', true)). +answer('urn:example:complies'('urn:example:bob9613', true)). +answer('urn:example:complies'('urn:example:bob9614', true)). +answer('urn:example:complies'('urn:example:bob9615', true)). +answer('urn:example:complies'('urn:example:bob9616', true)). +answer('urn:example:complies'('urn:example:bob9617', true)). +answer('urn:example:complies'('urn:example:bob9618', true)). +answer('urn:example:complies'('urn:example:bob9619', true)). +answer('urn:example:complies'('urn:example:bob9620', true)). +answer('urn:example:complies'('urn:example:bob9621', true)). +answer('urn:example:complies'('urn:example:bob9622', true)). +answer('urn:example:complies'('urn:example:bob9623', true)). +answer('urn:example:complies'('urn:example:bob9624', true)). +answer('urn:example:complies'('urn:example:bob9625', true)). +answer('urn:example:complies'('urn:example:bob9626', true)). +answer('urn:example:complies'('urn:example:bob9627', true)). +answer('urn:example:complies'('urn:example:bob9628', true)). +answer('urn:example:complies'('urn:example:bob9629', true)). +answer('urn:example:complies'('urn:example:bob9630', true)). +answer('urn:example:complies'('urn:example:bob9631', true)). +answer('urn:example:complies'('urn:example:bob9632', true)). +answer('urn:example:complies'('urn:example:bob9633', true)). +answer('urn:example:complies'('urn:example:bob9634', true)). +answer('urn:example:complies'('urn:example:bob9635', true)). +answer('urn:example:complies'('urn:example:bob9636', true)). +answer('urn:example:complies'('urn:example:bob9637', true)). +answer('urn:example:complies'('urn:example:bob9638', true)). +answer('urn:example:complies'('urn:example:bob9639', true)). +answer('urn:example:complies'('urn:example:bob9640', true)). +answer('urn:example:complies'('urn:example:bob9641', true)). +answer('urn:example:complies'('urn:example:bob9642', true)). +answer('urn:example:complies'('urn:example:bob9643', true)). +answer('urn:example:complies'('urn:example:bob9644', true)). +answer('urn:example:complies'('urn:example:bob9645', true)). +answer('urn:example:complies'('urn:example:bob9646', true)). +answer('urn:example:complies'('urn:example:bob9647', true)). +answer('urn:example:complies'('urn:example:bob9648', true)). +answer('urn:example:complies'('urn:example:bob9649', true)). +answer('urn:example:complies'('urn:example:bob9650', true)). +answer('urn:example:complies'('urn:example:bob9651', true)). +answer('urn:example:complies'('urn:example:bob9652', true)). +answer('urn:example:complies'('urn:example:bob9653', true)). +answer('urn:example:complies'('urn:example:bob9654', true)). +answer('urn:example:complies'('urn:example:bob9655', true)). +answer('urn:example:complies'('urn:example:bob9656', true)). +answer('urn:example:complies'('urn:example:bob9657', true)). +answer('urn:example:complies'('urn:example:bob9658', true)). +answer('urn:example:complies'('urn:example:bob9659', true)). +answer('urn:example:complies'('urn:example:bob9660', true)). +answer('urn:example:complies'('urn:example:bob9661', true)). +answer('urn:example:complies'('urn:example:bob9662', true)). +answer('urn:example:complies'('urn:example:bob9663', true)). +answer('urn:example:complies'('urn:example:bob9664', true)). +answer('urn:example:complies'('urn:example:bob9665', true)). +answer('urn:example:complies'('urn:example:bob9666', true)). +answer('urn:example:complies'('urn:example:bob9667', true)). +answer('urn:example:complies'('urn:example:bob9668', true)). +answer('urn:example:complies'('urn:example:bob9669', true)). +answer('urn:example:complies'('urn:example:bob9670', true)). +answer('urn:example:complies'('urn:example:bob9671', true)). +answer('urn:example:complies'('urn:example:bob9672', true)). +answer('urn:example:complies'('urn:example:bob9673', true)). +answer('urn:example:complies'('urn:example:bob9674', true)). +answer('urn:example:complies'('urn:example:bob9675', true)). +answer('urn:example:complies'('urn:example:bob9676', true)). +answer('urn:example:complies'('urn:example:bob9677', true)). +answer('urn:example:complies'('urn:example:bob9678', true)). +answer('urn:example:complies'('urn:example:bob9679', true)). +answer('urn:example:complies'('urn:example:bob9680', true)). +answer('urn:example:complies'('urn:example:bob9681', true)). +answer('urn:example:complies'('urn:example:bob9682', true)). +answer('urn:example:complies'('urn:example:bob9683', true)). +answer('urn:example:complies'('urn:example:bob9684', true)). +answer('urn:example:complies'('urn:example:bob9685', true)). +answer('urn:example:complies'('urn:example:bob9686', true)). +answer('urn:example:complies'('urn:example:bob9687', true)). +answer('urn:example:complies'('urn:example:bob9688', true)). +answer('urn:example:complies'('urn:example:bob9689', true)). +answer('urn:example:complies'('urn:example:bob9690', true)). +answer('urn:example:complies'('urn:example:bob9691', true)). +answer('urn:example:complies'('urn:example:bob9692', true)). +answer('urn:example:complies'('urn:example:bob9693', true)). +answer('urn:example:complies'('urn:example:bob9694', true)). +answer('urn:example:complies'('urn:example:bob9695', true)). +answer('urn:example:complies'('urn:example:bob9696', true)). +answer('urn:example:complies'('urn:example:bob9697', true)). +answer('urn:example:complies'('urn:example:bob9698', true)). +answer('urn:example:complies'('urn:example:bob9699', true)). +answer('urn:example:complies'('urn:example:bob9700', true)). +answer('urn:example:complies'('urn:example:bob9701', true)). +answer('urn:example:complies'('urn:example:bob9702', true)). +answer('urn:example:complies'('urn:example:bob9703', true)). +answer('urn:example:complies'('urn:example:bob9704', true)). +answer('urn:example:complies'('urn:example:bob9705', true)). +answer('urn:example:complies'('urn:example:bob9706', true)). +answer('urn:example:complies'('urn:example:bob9707', true)). +answer('urn:example:complies'('urn:example:bob9708', true)). +answer('urn:example:complies'('urn:example:bob9709', true)). +answer('urn:example:complies'('urn:example:bob9710', true)). +answer('urn:example:complies'('urn:example:bob9711', true)). +answer('urn:example:complies'('urn:example:bob9712', true)). +answer('urn:example:complies'('urn:example:bob9713', true)). +answer('urn:example:complies'('urn:example:bob9714', true)). +answer('urn:example:complies'('urn:example:bob9715', true)). +answer('urn:example:complies'('urn:example:bob9716', true)). +answer('urn:example:complies'('urn:example:bob9717', true)). +answer('urn:example:complies'('urn:example:bob9718', true)). +answer('urn:example:complies'('urn:example:bob9719', true)). +answer('urn:example:complies'('urn:example:bob9720', true)). +answer('urn:example:complies'('urn:example:bob9721', true)). +answer('urn:example:complies'('urn:example:bob9722', true)). +answer('urn:example:complies'('urn:example:bob9723', true)). +answer('urn:example:complies'('urn:example:bob9724', true)). +answer('urn:example:complies'('urn:example:bob9725', true)). +answer('urn:example:complies'('urn:example:bob9726', true)). +answer('urn:example:complies'('urn:example:bob9727', true)). +answer('urn:example:complies'('urn:example:bob9728', true)). +answer('urn:example:complies'('urn:example:bob9729', true)). +answer('urn:example:complies'('urn:example:bob9730', true)). +answer('urn:example:complies'('urn:example:bob9731', true)). +answer('urn:example:complies'('urn:example:bob9732', true)). +answer('urn:example:complies'('urn:example:bob9733', true)). +answer('urn:example:complies'('urn:example:bob9734', true)). +answer('urn:example:complies'('urn:example:bob9735', true)). +answer('urn:example:complies'('urn:example:bob9736', true)). +answer('urn:example:complies'('urn:example:bob9737', true)). +answer('urn:example:complies'('urn:example:bob9738', true)). +answer('urn:example:complies'('urn:example:bob9739', true)). +answer('urn:example:complies'('urn:example:bob9740', true)). +answer('urn:example:complies'('urn:example:bob9741', true)). +answer('urn:example:complies'('urn:example:bob9742', true)). +answer('urn:example:complies'('urn:example:bob9743', true)). +answer('urn:example:complies'('urn:example:bob9744', true)). +answer('urn:example:complies'('urn:example:bob9745', true)). +answer('urn:example:complies'('urn:example:bob9746', true)). +answer('urn:example:complies'('urn:example:bob9747', true)). +answer('urn:example:complies'('urn:example:bob9748', true)). +answer('urn:example:complies'('urn:example:bob9749', true)). +answer('urn:example:complies'('urn:example:bob9750', true)). +answer('urn:example:complies'('urn:example:bob9751', true)). +answer('urn:example:complies'('urn:example:bob9752', true)). +answer('urn:example:complies'('urn:example:bob9753', true)). +answer('urn:example:complies'('urn:example:bob9754', true)). +answer('urn:example:complies'('urn:example:bob9755', true)). +answer('urn:example:complies'('urn:example:bob9756', true)). +answer('urn:example:complies'('urn:example:bob9757', true)). +answer('urn:example:complies'('urn:example:bob9758', true)). +answer('urn:example:complies'('urn:example:bob9759', true)). +answer('urn:example:complies'('urn:example:bob9760', true)). +answer('urn:example:complies'('urn:example:bob9761', true)). +answer('urn:example:complies'('urn:example:bob9762', true)). +answer('urn:example:complies'('urn:example:bob9763', true)). +answer('urn:example:complies'('urn:example:bob9764', true)). +answer('urn:example:complies'('urn:example:bob9765', true)). +answer('urn:example:complies'('urn:example:bob9766', true)). +answer('urn:example:complies'('urn:example:bob9767', true)). +answer('urn:example:complies'('urn:example:bob9768', true)). +answer('urn:example:complies'('urn:example:bob9769', true)). +answer('urn:example:complies'('urn:example:bob9770', true)). +answer('urn:example:complies'('urn:example:bob9771', true)). +answer('urn:example:complies'('urn:example:bob9772', true)). +answer('urn:example:complies'('urn:example:bob9773', true)). +answer('urn:example:complies'('urn:example:bob9774', true)). +answer('urn:example:complies'('urn:example:bob9775', true)). +answer('urn:example:complies'('urn:example:bob9776', true)). +answer('urn:example:complies'('urn:example:bob9777', true)). +answer('urn:example:complies'('urn:example:bob9778', true)). +answer('urn:example:complies'('urn:example:bob9779', true)). +answer('urn:example:complies'('urn:example:bob9780', true)). +answer('urn:example:complies'('urn:example:bob9781', true)). +answer('urn:example:complies'('urn:example:bob9782', true)). +answer('urn:example:complies'('urn:example:bob9783', true)). +answer('urn:example:complies'('urn:example:bob9784', true)). +answer('urn:example:complies'('urn:example:bob9785', true)). +answer('urn:example:complies'('urn:example:bob9786', true)). +answer('urn:example:complies'('urn:example:bob9787', true)). +answer('urn:example:complies'('urn:example:bob9788', true)). +answer('urn:example:complies'('urn:example:bob9789', true)). +answer('urn:example:complies'('urn:example:bob9790', true)). +answer('urn:example:complies'('urn:example:bob9791', true)). +answer('urn:example:complies'('urn:example:bob9792', true)). +answer('urn:example:complies'('urn:example:bob9793', true)). +answer('urn:example:complies'('urn:example:bob9794', true)). +answer('urn:example:complies'('urn:example:bob9795', true)). +answer('urn:example:complies'('urn:example:bob9796', true)). +answer('urn:example:complies'('urn:example:bob9797', true)). +answer('urn:example:complies'('urn:example:bob9798', true)). +answer('urn:example:complies'('urn:example:bob9799', true)). +answer('urn:example:complies'('urn:example:bob9800', true)). +answer('urn:example:complies'('urn:example:bob9801', true)). +answer('urn:example:complies'('urn:example:bob9802', true)). +answer('urn:example:complies'('urn:example:bob9803', true)). +answer('urn:example:complies'('urn:example:bob9804', true)). +answer('urn:example:complies'('urn:example:bob9805', true)). +answer('urn:example:complies'('urn:example:bob9806', true)). +answer('urn:example:complies'('urn:example:bob9807', true)). +answer('urn:example:complies'('urn:example:bob9808', true)). +answer('urn:example:complies'('urn:example:bob9809', true)). +answer('urn:example:complies'('urn:example:bob9810', true)). +answer('urn:example:complies'('urn:example:bob9811', true)). +answer('urn:example:complies'('urn:example:bob9812', true)). +answer('urn:example:complies'('urn:example:bob9813', true)). +answer('urn:example:complies'('urn:example:bob9814', true)). +answer('urn:example:complies'('urn:example:bob9815', true)). +answer('urn:example:complies'('urn:example:bob9816', true)). +answer('urn:example:complies'('urn:example:bob9817', true)). +answer('urn:example:complies'('urn:example:bob9818', true)). +answer('urn:example:complies'('urn:example:bob9819', true)). +answer('urn:example:complies'('urn:example:bob9820', true)). +answer('urn:example:complies'('urn:example:bob9821', true)). +answer('urn:example:complies'('urn:example:bob9822', true)). +answer('urn:example:complies'('urn:example:bob9823', true)). +answer('urn:example:complies'('urn:example:bob9824', true)). +answer('urn:example:complies'('urn:example:bob9825', true)). +answer('urn:example:complies'('urn:example:bob9826', true)). +answer('urn:example:complies'('urn:example:bob9827', true)). +answer('urn:example:complies'('urn:example:bob9828', true)). +answer('urn:example:complies'('urn:example:bob9829', true)). +answer('urn:example:complies'('urn:example:bob9830', true)). +answer('urn:example:complies'('urn:example:bob9831', true)). +answer('urn:example:complies'('urn:example:bob9832', true)). +answer('urn:example:complies'('urn:example:bob9833', true)). +answer('urn:example:complies'('urn:example:bob9834', true)). +answer('urn:example:complies'('urn:example:bob9835', true)). +answer('urn:example:complies'('urn:example:bob9836', true)). +answer('urn:example:complies'('urn:example:bob9837', true)). +answer('urn:example:complies'('urn:example:bob9838', true)). +answer('urn:example:complies'('urn:example:bob9839', true)). +answer('urn:example:complies'('urn:example:bob9840', true)). +answer('urn:example:complies'('urn:example:bob9841', true)). +answer('urn:example:complies'('urn:example:bob9842', true)). +answer('urn:example:complies'('urn:example:bob9843', true)). +answer('urn:example:complies'('urn:example:bob9844', true)). +answer('urn:example:complies'('urn:example:bob9845', true)). +answer('urn:example:complies'('urn:example:bob9846', true)). +answer('urn:example:complies'('urn:example:bob9847', true)). +answer('urn:example:complies'('urn:example:bob9848', true)). +answer('urn:example:complies'('urn:example:bob9849', true)). +answer('urn:example:complies'('urn:example:bob9850', true)). +answer('urn:example:complies'('urn:example:bob9851', true)). +answer('urn:example:complies'('urn:example:bob9852', true)). +answer('urn:example:complies'('urn:example:bob9853', true)). +answer('urn:example:complies'('urn:example:bob9854', true)). +answer('urn:example:complies'('urn:example:bob9855', true)). +answer('urn:example:complies'('urn:example:bob9856', true)). +answer('urn:example:complies'('urn:example:bob9857', true)). +answer('urn:example:complies'('urn:example:bob9858', true)). +answer('urn:example:complies'('urn:example:bob9859', true)). +answer('urn:example:complies'('urn:example:bob9860', true)). +answer('urn:example:complies'('urn:example:bob9861', true)). +answer('urn:example:complies'('urn:example:bob9862', true)). +answer('urn:example:complies'('urn:example:bob9863', true)). +answer('urn:example:complies'('urn:example:bob9864', true)). +answer('urn:example:complies'('urn:example:bob9865', true)). +answer('urn:example:complies'('urn:example:bob9866', true)). +answer('urn:example:complies'('urn:example:bob9867', true)). +answer('urn:example:complies'('urn:example:bob9868', true)). +answer('urn:example:complies'('urn:example:bob9869', true)). +answer('urn:example:complies'('urn:example:bob9870', true)). +answer('urn:example:complies'('urn:example:bob9871', true)). +answer('urn:example:complies'('urn:example:bob9872', true)). +answer('urn:example:complies'('urn:example:bob9873', true)). +answer('urn:example:complies'('urn:example:bob9874', true)). +answer('urn:example:complies'('urn:example:bob9875', true)). +answer('urn:example:complies'('urn:example:bob9876', true)). +answer('urn:example:complies'('urn:example:bob9877', true)). +answer('urn:example:complies'('urn:example:bob9878', true)). +answer('urn:example:complies'('urn:example:bob9879', true)). +answer('urn:example:complies'('urn:example:bob9880', true)). +answer('urn:example:complies'('urn:example:bob9881', true)). +answer('urn:example:complies'('urn:example:bob9882', true)). +answer('urn:example:complies'('urn:example:bob9883', true)). +answer('urn:example:complies'('urn:example:bob9884', true)). +answer('urn:example:complies'('urn:example:bob9885', true)). +answer('urn:example:complies'('urn:example:bob9886', true)). +answer('urn:example:complies'('urn:example:bob9887', true)). +answer('urn:example:complies'('urn:example:bob9888', true)). +answer('urn:example:complies'('urn:example:bob9889', true)). +answer('urn:example:complies'('urn:example:bob9890', true)). +answer('urn:example:complies'('urn:example:bob9891', true)). +answer('urn:example:complies'('urn:example:bob9892', true)). +answer('urn:example:complies'('urn:example:bob9893', true)). +answer('urn:example:complies'('urn:example:bob9894', true)). +answer('urn:example:complies'('urn:example:bob9895', true)). +answer('urn:example:complies'('urn:example:bob9896', true)). +answer('urn:example:complies'('urn:example:bob9897', true)). +answer('urn:example:complies'('urn:example:bob9898', true)). +answer('urn:example:complies'('urn:example:bob9899', true)). +answer('urn:example:complies'('urn:example:bob9900', true)). +answer('urn:example:complies'('urn:example:bob9901', true)). +answer('urn:example:complies'('urn:example:bob9902', true)). +answer('urn:example:complies'('urn:example:bob9903', true)). +answer('urn:example:complies'('urn:example:bob9904', true)). +answer('urn:example:complies'('urn:example:bob9905', true)). +answer('urn:example:complies'('urn:example:bob9906', true)). +answer('urn:example:complies'('urn:example:bob9907', true)). +answer('urn:example:complies'('urn:example:bob9908', true)). +answer('urn:example:complies'('urn:example:bob9909', true)). +answer('urn:example:complies'('urn:example:bob9910', true)). +answer('urn:example:complies'('urn:example:bob9911', true)). +answer('urn:example:complies'('urn:example:bob9912', true)). +answer('urn:example:complies'('urn:example:bob9913', true)). +answer('urn:example:complies'('urn:example:bob9914', true)). +answer('urn:example:complies'('urn:example:bob9915', true)). +answer('urn:example:complies'('urn:example:bob9916', true)). +answer('urn:example:complies'('urn:example:bob9917', true)). +answer('urn:example:complies'('urn:example:bob9918', true)). +answer('urn:example:complies'('urn:example:bob9919', true)). +answer('urn:example:complies'('urn:example:bob9920', true)). +answer('urn:example:complies'('urn:example:bob9921', true)). +answer('urn:example:complies'('urn:example:bob9922', true)). +answer('urn:example:complies'('urn:example:bob9923', true)). +answer('urn:example:complies'('urn:example:bob9924', true)). +answer('urn:example:complies'('urn:example:bob9925', true)). +answer('urn:example:complies'('urn:example:bob9926', true)). +answer('urn:example:complies'('urn:example:bob9927', true)). +answer('urn:example:complies'('urn:example:bob9928', true)). +answer('urn:example:complies'('urn:example:bob9929', true)). +answer('urn:example:complies'('urn:example:bob9930', true)). +answer('urn:example:complies'('urn:example:bob9931', true)). +answer('urn:example:complies'('urn:example:bob9932', true)). +answer('urn:example:complies'('urn:example:bob9933', true)). +answer('urn:example:complies'('urn:example:bob9934', true)). +answer('urn:example:complies'('urn:example:bob9935', true)). +answer('urn:example:complies'('urn:example:bob9936', true)). +answer('urn:example:complies'('urn:example:bob9937', true)). +answer('urn:example:complies'('urn:example:bob9938', true)). +answer('urn:example:complies'('urn:example:bob9939', true)). +answer('urn:example:complies'('urn:example:bob9940', true)). +answer('urn:example:complies'('urn:example:bob9941', true)). +answer('urn:example:complies'('urn:example:bob9942', true)). +answer('urn:example:complies'('urn:example:bob9943', true)). +answer('urn:example:complies'('urn:example:bob9944', true)). +answer('urn:example:complies'('urn:example:bob9945', true)). +answer('urn:example:complies'('urn:example:bob9946', true)). +answer('urn:example:complies'('urn:example:bob9947', true)). +answer('urn:example:complies'('urn:example:bob9948', true)). +answer('urn:example:complies'('urn:example:bob9949', true)). +answer('urn:example:complies'('urn:example:bob9950', true)). +answer('urn:example:complies'('urn:example:bob9951', true)). +answer('urn:example:complies'('urn:example:bob9952', true)). +answer('urn:example:complies'('urn:example:bob9953', true)). +answer('urn:example:complies'('urn:example:bob9954', true)). +answer('urn:example:complies'('urn:example:bob9955', true)). +answer('urn:example:complies'('urn:example:bob9956', true)). +answer('urn:example:complies'('urn:example:bob9957', true)). +answer('urn:example:complies'('urn:example:bob9958', true)). +answer('urn:example:complies'('urn:example:bob9959', true)). +answer('urn:example:complies'('urn:example:bob9960', true)). +answer('urn:example:complies'('urn:example:bob9961', true)). +answer('urn:example:complies'('urn:example:bob9962', true)). +answer('urn:example:complies'('urn:example:bob9963', true)). +answer('urn:example:complies'('urn:example:bob9964', true)). +answer('urn:example:complies'('urn:example:bob9965', true)). +answer('urn:example:complies'('urn:example:bob9966', true)). +answer('urn:example:complies'('urn:example:bob9967', true)). +answer('urn:example:complies'('urn:example:bob9968', true)). +answer('urn:example:complies'('urn:example:bob9969', true)). +answer('urn:example:complies'('urn:example:bob9970', true)). +answer('urn:example:complies'('urn:example:bob9971', true)). +answer('urn:example:complies'('urn:example:bob9972', true)). +answer('urn:example:complies'('urn:example:bob9973', true)). +answer('urn:example:complies'('urn:example:bob9974', true)). +answer('urn:example:complies'('urn:example:bob9975', true)). +answer('urn:example:complies'('urn:example:bob9976', true)). +answer('urn:example:complies'('urn:example:bob9977', true)). +answer('urn:example:complies'('urn:example:bob9978', true)). +answer('urn:example:complies'('urn:example:bob9979', true)). +answer('urn:example:complies'('urn:example:bob9980', true)). +answer('urn:example:complies'('urn:example:bob9981', true)). +answer('urn:example:complies'('urn:example:bob9982', true)). +answer('urn:example:complies'('urn:example:bob9983', true)). +answer('urn:example:complies'('urn:example:bob9984', true)). +answer('urn:example:complies'('urn:example:bob9985', true)). +answer('urn:example:complies'('urn:example:bob9986', true)). +answer('urn:example:complies'('urn:example:bob9987', true)). +answer('urn:example:complies'('urn:example:bob9988', true)). +answer('urn:example:complies'('urn:example:bob9989', true)). +answer('urn:example:complies'('urn:example:bob9990', true)). +answer('urn:example:complies'('urn:example:bob9991', true)). +answer('urn:example:complies'('urn:example:bob9992', true)). +answer('urn:example:complies'('urn:example:bob9993', true)). +answer('urn:example:complies'('urn:example:bob9994', true)). +answer('urn:example:complies'('urn:example:bob9995', true)). +answer('urn:example:complies'('urn:example:bob9996', true)). +answer('urn:example:complies'('urn:example:bob9997', true)). +answer('urn:example:complies'('urn:example:bob9998', true)). +answer('urn:example:complies'('urn:example:bob9999', true)). +answer('urn:example:complies'('urn:example:bob10000', true)). +answer('urn:example:complies'('urn:example:alice1', true)). +answer('urn:example:complies'('urn:example:alice2', true)). +answer('urn:example:complies'('urn:example:alice3', true)). +answer('urn:example:complies'('urn:example:alice4', true)). +answer('urn:example:complies'('urn:example:alice5', true)). +answer('urn:example:complies'('urn:example:alice6', true)). +answer('urn:example:complies'('urn:example:alice7', true)). +answer('urn:example:complies'('urn:example:alice8', true)). +answer('urn:example:complies'('urn:example:alice9', true)). +answer('urn:example:complies'('urn:example:alice10', true)). +answer('urn:example:complies'('urn:example:alice11', true)). +answer('urn:example:complies'('urn:example:alice12', true)). +answer('urn:example:complies'('urn:example:alice13', true)). +answer('urn:example:complies'('urn:example:alice14', true)). +answer('urn:example:complies'('urn:example:alice15', true)). +answer('urn:example:complies'('urn:example:alice16', true)). +answer('urn:example:complies'('urn:example:alice17', true)). +answer('urn:example:complies'('urn:example:alice18', true)). +answer('urn:example:complies'('urn:example:alice19', true)). +answer('urn:example:complies'('urn:example:alice20', true)). +answer('urn:example:complies'('urn:example:alice21', true)). +answer('urn:example:complies'('urn:example:alice22', true)). +answer('urn:example:complies'('urn:example:alice23', true)). +answer('urn:example:complies'('urn:example:alice24', true)). +answer('urn:example:complies'('urn:example:alice25', true)). +answer('urn:example:complies'('urn:example:alice26', true)). +answer('urn:example:complies'('urn:example:alice27', true)). +answer('urn:example:complies'('urn:example:alice28', true)). +answer('urn:example:complies'('urn:example:alice29', true)). +answer('urn:example:complies'('urn:example:alice30', true)). +answer('urn:example:complies'('urn:example:alice31', true)). +answer('urn:example:complies'('urn:example:alice32', true)). +answer('urn:example:complies'('urn:example:alice33', true)). +answer('urn:example:complies'('urn:example:alice34', true)). +answer('urn:example:complies'('urn:example:alice35', true)). +answer('urn:example:complies'('urn:example:alice36', true)). +answer('urn:example:complies'('urn:example:alice37', true)). +answer('urn:example:complies'('urn:example:alice38', true)). +answer('urn:example:complies'('urn:example:alice39', true)). +answer('urn:example:complies'('urn:example:alice40', true)). +answer('urn:example:complies'('urn:example:alice41', true)). +answer('urn:example:complies'('urn:example:alice42', true)). +answer('urn:example:complies'('urn:example:alice43', true)). +answer('urn:example:complies'('urn:example:alice44', true)). +answer('urn:example:complies'('urn:example:alice45', true)). +answer('urn:example:complies'('urn:example:alice46', true)). +answer('urn:example:complies'('urn:example:alice47', true)). +answer('urn:example:complies'('urn:example:alice48', true)). +answer('urn:example:complies'('urn:example:alice49', true)). +answer('urn:example:complies'('urn:example:alice50', true)). +answer('urn:example:complies'('urn:example:alice51', true)). +answer('urn:example:complies'('urn:example:alice52', true)). +answer('urn:example:complies'('urn:example:alice53', true)). +answer('urn:example:complies'('urn:example:alice54', true)). +answer('urn:example:complies'('urn:example:alice55', true)). +answer('urn:example:complies'('urn:example:alice56', true)). +answer('urn:example:complies'('urn:example:alice57', true)). +answer('urn:example:complies'('urn:example:alice58', true)). +answer('urn:example:complies'('urn:example:alice59', true)). +answer('urn:example:complies'('urn:example:alice60', true)). +answer('urn:example:complies'('urn:example:alice61', true)). +answer('urn:example:complies'('urn:example:alice62', true)). +answer('urn:example:complies'('urn:example:alice63', true)). +answer('urn:example:complies'('urn:example:alice64', true)). +answer('urn:example:complies'('urn:example:alice65', true)). +answer('urn:example:complies'('urn:example:alice66', true)). +answer('urn:example:complies'('urn:example:alice67', true)). +answer('urn:example:complies'('urn:example:alice68', true)). +answer('urn:example:complies'('urn:example:alice69', true)). +answer('urn:example:complies'('urn:example:alice70', true)). +answer('urn:example:complies'('urn:example:alice71', true)). +answer('urn:example:complies'('urn:example:alice72', true)). +answer('urn:example:complies'('urn:example:alice73', true)). +answer('urn:example:complies'('urn:example:alice74', true)). +answer('urn:example:complies'('urn:example:alice75', true)). +answer('urn:example:complies'('urn:example:alice76', true)). +answer('urn:example:complies'('urn:example:alice77', true)). +answer('urn:example:complies'('urn:example:alice78', true)). +answer('urn:example:complies'('urn:example:alice79', true)). +answer('urn:example:complies'('urn:example:alice80', true)). +answer('urn:example:complies'('urn:example:alice81', true)). +answer('urn:example:complies'('urn:example:alice82', true)). +answer('urn:example:complies'('urn:example:alice83', true)). +answer('urn:example:complies'('urn:example:alice84', true)). +answer('urn:example:complies'('urn:example:alice85', true)). +answer('urn:example:complies'('urn:example:alice86', true)). +answer('urn:example:complies'('urn:example:alice87', true)). +answer('urn:example:complies'('urn:example:alice88', true)). +answer('urn:example:complies'('urn:example:alice89', true)). +answer('urn:example:complies'('urn:example:alice90', true)). +answer('urn:example:complies'('urn:example:alice91', true)). +answer('urn:example:complies'('urn:example:alice92', true)). +answer('urn:example:complies'('urn:example:alice93', true)). +answer('urn:example:complies'('urn:example:alice94', true)). +answer('urn:example:complies'('urn:example:alice95', true)). +answer('urn:example:complies'('urn:example:alice96', true)). +answer('urn:example:complies'('urn:example:alice97', true)). +answer('urn:example:complies'('urn:example:alice98', true)). +answer('urn:example:complies'('urn:example:alice99', true)). +answer('urn:example:complies'('urn:example:alice100', true)). +answer('urn:example:complies'('urn:example:alice101', true)). +answer('urn:example:complies'('urn:example:alice102', true)). +answer('urn:example:complies'('urn:example:alice103', true)). +answer('urn:example:complies'('urn:example:alice104', true)). +answer('urn:example:complies'('urn:example:alice105', true)). +answer('urn:example:complies'('urn:example:alice106', true)). +answer('urn:example:complies'('urn:example:alice107', true)). +answer('urn:example:complies'('urn:example:alice108', true)). +answer('urn:example:complies'('urn:example:alice109', true)). +answer('urn:example:complies'('urn:example:alice110', true)). +answer('urn:example:complies'('urn:example:alice111', true)). +answer('urn:example:complies'('urn:example:alice112', true)). +answer('urn:example:complies'('urn:example:alice113', true)). +answer('urn:example:complies'('urn:example:alice114', true)). +answer('urn:example:complies'('urn:example:alice115', true)). +answer('urn:example:complies'('urn:example:alice116', true)). +answer('urn:example:complies'('urn:example:alice117', true)). +answer('urn:example:complies'('urn:example:alice118', true)). +answer('urn:example:complies'('urn:example:alice119', true)). +answer('urn:example:complies'('urn:example:alice120', true)). +answer('urn:example:complies'('urn:example:alice121', true)). +answer('urn:example:complies'('urn:example:alice122', true)). +answer('urn:example:complies'('urn:example:alice123', true)). +answer('urn:example:complies'('urn:example:alice124', true)). +answer('urn:example:complies'('urn:example:alice125', true)). +answer('urn:example:complies'('urn:example:alice126', true)). +answer('urn:example:complies'('urn:example:alice127', true)). +answer('urn:example:complies'('urn:example:alice128', true)). +answer('urn:example:complies'('urn:example:alice129', true)). +answer('urn:example:complies'('urn:example:alice130', true)). +answer('urn:example:complies'('urn:example:alice131', true)). +answer('urn:example:complies'('urn:example:alice132', true)). +answer('urn:example:complies'('urn:example:alice133', true)). +answer('urn:example:complies'('urn:example:alice134', true)). +answer('urn:example:complies'('urn:example:alice135', true)). +answer('urn:example:complies'('urn:example:alice136', true)). +answer('urn:example:complies'('urn:example:alice137', true)). +answer('urn:example:complies'('urn:example:alice138', true)). +answer('urn:example:complies'('urn:example:alice139', true)). +answer('urn:example:complies'('urn:example:alice140', true)). +answer('urn:example:complies'('urn:example:alice141', true)). +answer('urn:example:complies'('urn:example:alice142', true)). +answer('urn:example:complies'('urn:example:alice143', true)). +answer('urn:example:complies'('urn:example:alice144', true)). +answer('urn:example:complies'('urn:example:alice145', true)). +answer('urn:example:complies'('urn:example:alice146', true)). +answer('urn:example:complies'('urn:example:alice147', true)). +answer('urn:example:complies'('urn:example:alice148', true)). +answer('urn:example:complies'('urn:example:alice149', true)). +answer('urn:example:complies'('urn:example:alice150', true)). +answer('urn:example:complies'('urn:example:alice151', true)). +answer('urn:example:complies'('urn:example:alice152', true)). +answer('urn:example:complies'('urn:example:alice153', true)). +answer('urn:example:complies'('urn:example:alice154', true)). +answer('urn:example:complies'('urn:example:alice155', true)). +answer('urn:example:complies'('urn:example:alice156', true)). +answer('urn:example:complies'('urn:example:alice157', true)). +answer('urn:example:complies'('urn:example:alice158', true)). +answer('urn:example:complies'('urn:example:alice159', true)). +answer('urn:example:complies'('urn:example:alice160', true)). +answer('urn:example:complies'('urn:example:alice161', true)). +answer('urn:example:complies'('urn:example:alice162', true)). +answer('urn:example:complies'('urn:example:alice163', true)). +answer('urn:example:complies'('urn:example:alice164', true)). +answer('urn:example:complies'('urn:example:alice165', true)). +answer('urn:example:complies'('urn:example:alice166', true)). +answer('urn:example:complies'('urn:example:alice167', true)). +answer('urn:example:complies'('urn:example:alice168', true)). +answer('urn:example:complies'('urn:example:alice169', true)). +answer('urn:example:complies'('urn:example:alice170', true)). +answer('urn:example:complies'('urn:example:alice171', true)). +answer('urn:example:complies'('urn:example:alice172', true)). +answer('urn:example:complies'('urn:example:alice173', true)). +answer('urn:example:complies'('urn:example:alice174', true)). +answer('urn:example:complies'('urn:example:alice175', true)). +answer('urn:example:complies'('urn:example:alice176', true)). +answer('urn:example:complies'('urn:example:alice177', true)). +answer('urn:example:complies'('urn:example:alice178', true)). +answer('urn:example:complies'('urn:example:alice179', true)). +answer('urn:example:complies'('urn:example:alice180', true)). +answer('urn:example:complies'('urn:example:alice181', true)). +answer('urn:example:complies'('urn:example:alice182', true)). +answer('urn:example:complies'('urn:example:alice183', true)). +answer('urn:example:complies'('urn:example:alice184', true)). +answer('urn:example:complies'('urn:example:alice185', true)). +answer('urn:example:complies'('urn:example:alice186', true)). +answer('urn:example:complies'('urn:example:alice187', true)). +answer('urn:example:complies'('urn:example:alice188', true)). +answer('urn:example:complies'('urn:example:alice189', true)). +answer('urn:example:complies'('urn:example:alice190', true)). +answer('urn:example:complies'('urn:example:alice191', true)). +answer('urn:example:complies'('urn:example:alice192', true)). +answer('urn:example:complies'('urn:example:alice193', true)). +answer('urn:example:complies'('urn:example:alice194', true)). +answer('urn:example:complies'('urn:example:alice195', true)). +answer('urn:example:complies'('urn:example:alice196', true)). +answer('urn:example:complies'('urn:example:alice197', true)). +answer('urn:example:complies'('urn:example:alice198', true)). +answer('urn:example:complies'('urn:example:alice199', true)). +answer('urn:example:complies'('urn:example:alice200', true)). +answer('urn:example:complies'('urn:example:alice201', true)). +answer('urn:example:complies'('urn:example:alice202', true)). +answer('urn:example:complies'('urn:example:alice203', true)). +answer('urn:example:complies'('urn:example:alice204', true)). +answer('urn:example:complies'('urn:example:alice205', true)). +answer('urn:example:complies'('urn:example:alice206', true)). +answer('urn:example:complies'('urn:example:alice207', true)). +answer('urn:example:complies'('urn:example:alice208', true)). +answer('urn:example:complies'('urn:example:alice209', true)). +answer('urn:example:complies'('urn:example:alice210', true)). +answer('urn:example:complies'('urn:example:alice211', true)). +answer('urn:example:complies'('urn:example:alice212', true)). +answer('urn:example:complies'('urn:example:alice213', true)). +answer('urn:example:complies'('urn:example:alice214', true)). +answer('urn:example:complies'('urn:example:alice215', true)). +answer('urn:example:complies'('urn:example:alice216', true)). +answer('urn:example:complies'('urn:example:alice217', true)). +answer('urn:example:complies'('urn:example:alice218', true)). +answer('urn:example:complies'('urn:example:alice219', true)). +answer('urn:example:complies'('urn:example:alice220', true)). +answer('urn:example:complies'('urn:example:alice221', true)). +answer('urn:example:complies'('urn:example:alice222', true)). +answer('urn:example:complies'('urn:example:alice223', true)). +answer('urn:example:complies'('urn:example:alice224', true)). +answer('urn:example:complies'('urn:example:alice225', true)). +answer('urn:example:complies'('urn:example:alice226', true)). +answer('urn:example:complies'('urn:example:alice227', true)). +answer('urn:example:complies'('urn:example:alice228', true)). +answer('urn:example:complies'('urn:example:alice229', true)). +answer('urn:example:complies'('urn:example:alice230', true)). +answer('urn:example:complies'('urn:example:alice231', true)). +answer('urn:example:complies'('urn:example:alice232', true)). +answer('urn:example:complies'('urn:example:alice233', true)). +answer('urn:example:complies'('urn:example:alice234', true)). +answer('urn:example:complies'('urn:example:alice235', true)). +answer('urn:example:complies'('urn:example:alice236', true)). +answer('urn:example:complies'('urn:example:alice237', true)). +answer('urn:example:complies'('urn:example:alice238', true)). +answer('urn:example:complies'('urn:example:alice239', true)). +answer('urn:example:complies'('urn:example:alice240', true)). +answer('urn:example:complies'('urn:example:alice241', true)). +answer('urn:example:complies'('urn:example:alice242', true)). +answer('urn:example:complies'('urn:example:alice243', true)). +answer('urn:example:complies'('urn:example:alice244', true)). +answer('urn:example:complies'('urn:example:alice245', true)). +answer('urn:example:complies'('urn:example:alice246', true)). +answer('urn:example:complies'('urn:example:alice247', true)). +answer('urn:example:complies'('urn:example:alice248', true)). +answer('urn:example:complies'('urn:example:alice249', true)). +answer('urn:example:complies'('urn:example:alice250', true)). +answer('urn:example:complies'('urn:example:alice251', true)). +answer('urn:example:complies'('urn:example:alice252', true)). +answer('urn:example:complies'('urn:example:alice253', true)). +answer('urn:example:complies'('urn:example:alice254', true)). +answer('urn:example:complies'('urn:example:alice255', true)). +answer('urn:example:complies'('urn:example:alice256', true)). +answer('urn:example:complies'('urn:example:alice257', true)). +answer('urn:example:complies'('urn:example:alice258', true)). +answer('urn:example:complies'('urn:example:alice259', true)). +answer('urn:example:complies'('urn:example:alice260', true)). +answer('urn:example:complies'('urn:example:alice261', true)). +answer('urn:example:complies'('urn:example:alice262', true)). +answer('urn:example:complies'('urn:example:alice263', true)). +answer('urn:example:complies'('urn:example:alice264', true)). +answer('urn:example:complies'('urn:example:alice265', true)). +answer('urn:example:complies'('urn:example:alice266', true)). +answer('urn:example:complies'('urn:example:alice267', true)). +answer('urn:example:complies'('urn:example:alice268', true)). +answer('urn:example:complies'('urn:example:alice269', true)). +answer('urn:example:complies'('urn:example:alice270', true)). +answer('urn:example:complies'('urn:example:alice271', true)). +answer('urn:example:complies'('urn:example:alice272', true)). +answer('urn:example:complies'('urn:example:alice273', true)). +answer('urn:example:complies'('urn:example:alice274', true)). +answer('urn:example:complies'('urn:example:alice275', true)). +answer('urn:example:complies'('urn:example:alice276', true)). +answer('urn:example:complies'('urn:example:alice277', true)). +answer('urn:example:complies'('urn:example:alice278', true)). +answer('urn:example:complies'('urn:example:alice279', true)). +answer('urn:example:complies'('urn:example:alice280', true)). +answer('urn:example:complies'('urn:example:alice281', true)). +answer('urn:example:complies'('urn:example:alice282', true)). +answer('urn:example:complies'('urn:example:alice283', true)). +answer('urn:example:complies'('urn:example:alice284', true)). +answer('urn:example:complies'('urn:example:alice285', true)). +answer('urn:example:complies'('urn:example:alice286', true)). +answer('urn:example:complies'('urn:example:alice287', true)). +answer('urn:example:complies'('urn:example:alice288', true)). +answer('urn:example:complies'('urn:example:alice289', true)). +answer('urn:example:complies'('urn:example:alice290', true)). +answer('urn:example:complies'('urn:example:alice291', true)). +answer('urn:example:complies'('urn:example:alice292', true)). +answer('urn:example:complies'('urn:example:alice293', true)). +answer('urn:example:complies'('urn:example:alice294', true)). +answer('urn:example:complies'('urn:example:alice295', true)). +answer('urn:example:complies'('urn:example:alice296', true)). +answer('urn:example:complies'('urn:example:alice297', true)). +answer('urn:example:complies'('urn:example:alice298', true)). +answer('urn:example:complies'('urn:example:alice299', true)). +answer('urn:example:complies'('urn:example:alice300', true)). +answer('urn:example:complies'('urn:example:alice301', true)). +answer('urn:example:complies'('urn:example:alice302', true)). +answer('urn:example:complies'('urn:example:alice303', true)). +answer('urn:example:complies'('urn:example:alice304', true)). +answer('urn:example:complies'('urn:example:alice305', true)). +answer('urn:example:complies'('urn:example:alice306', true)). +answer('urn:example:complies'('urn:example:alice307', true)). +answer('urn:example:complies'('urn:example:alice308', true)). +answer('urn:example:complies'('urn:example:alice309', true)). +answer('urn:example:complies'('urn:example:alice310', true)). +answer('urn:example:complies'('urn:example:alice311', true)). +answer('urn:example:complies'('urn:example:alice312', true)). +answer('urn:example:complies'('urn:example:alice313', true)). +answer('urn:example:complies'('urn:example:alice314', true)). +answer('urn:example:complies'('urn:example:alice315', true)). +answer('urn:example:complies'('urn:example:alice316', true)). +answer('urn:example:complies'('urn:example:alice317', true)). +answer('urn:example:complies'('urn:example:alice318', true)). +answer('urn:example:complies'('urn:example:alice319', true)). +answer('urn:example:complies'('urn:example:alice320', true)). +answer('urn:example:complies'('urn:example:alice321', true)). +answer('urn:example:complies'('urn:example:alice322', true)). +answer('urn:example:complies'('urn:example:alice323', true)). +answer('urn:example:complies'('urn:example:alice324', true)). +answer('urn:example:complies'('urn:example:alice325', true)). +answer('urn:example:complies'('urn:example:alice326', true)). +answer('urn:example:complies'('urn:example:alice327', true)). +answer('urn:example:complies'('urn:example:alice328', true)). +answer('urn:example:complies'('urn:example:alice329', true)). +answer('urn:example:complies'('urn:example:alice330', true)). +answer('urn:example:complies'('urn:example:alice331', true)). +answer('urn:example:complies'('urn:example:alice332', true)). +answer('urn:example:complies'('urn:example:alice333', true)). +answer('urn:example:complies'('urn:example:alice334', true)). +answer('urn:example:complies'('urn:example:alice335', true)). +answer('urn:example:complies'('urn:example:alice336', true)). +answer('urn:example:complies'('urn:example:alice337', true)). +answer('urn:example:complies'('urn:example:alice338', true)). +answer('urn:example:complies'('urn:example:alice339', true)). +answer('urn:example:complies'('urn:example:alice340', true)). +answer('urn:example:complies'('urn:example:alice341', true)). +answer('urn:example:complies'('urn:example:alice342', true)). +answer('urn:example:complies'('urn:example:alice343', true)). +answer('urn:example:complies'('urn:example:alice344', true)). +answer('urn:example:complies'('urn:example:alice345', true)). +answer('urn:example:complies'('urn:example:alice346', true)). +answer('urn:example:complies'('urn:example:alice347', true)). +answer('urn:example:complies'('urn:example:alice348', true)). +answer('urn:example:complies'('urn:example:alice349', true)). +answer('urn:example:complies'('urn:example:alice350', true)). +answer('urn:example:complies'('urn:example:alice351', true)). +answer('urn:example:complies'('urn:example:alice352', true)). +answer('urn:example:complies'('urn:example:alice353', true)). +answer('urn:example:complies'('urn:example:alice354', true)). +answer('urn:example:complies'('urn:example:alice355', true)). +answer('urn:example:complies'('urn:example:alice356', true)). +answer('urn:example:complies'('urn:example:alice357', true)). +answer('urn:example:complies'('urn:example:alice358', true)). +answer('urn:example:complies'('urn:example:alice359', true)). +answer('urn:example:complies'('urn:example:alice360', true)). +answer('urn:example:complies'('urn:example:alice361', true)). +answer('urn:example:complies'('urn:example:alice362', true)). +answer('urn:example:complies'('urn:example:alice363', true)). +answer('urn:example:complies'('urn:example:alice364', true)). +answer('urn:example:complies'('urn:example:alice365', true)). +answer('urn:example:complies'('urn:example:alice366', true)). +answer('urn:example:complies'('urn:example:alice367', true)). +answer('urn:example:complies'('urn:example:alice368', true)). +answer('urn:example:complies'('urn:example:alice369', true)). +answer('urn:example:complies'('urn:example:alice370', true)). +answer('urn:example:complies'('urn:example:alice371', true)). +answer('urn:example:complies'('urn:example:alice372', true)). +answer('urn:example:complies'('urn:example:alice373', true)). +answer('urn:example:complies'('urn:example:alice374', true)). +answer('urn:example:complies'('urn:example:alice375', true)). +answer('urn:example:complies'('urn:example:alice376', true)). +answer('urn:example:complies'('urn:example:alice377', true)). +answer('urn:example:complies'('urn:example:alice378', true)). +answer('urn:example:complies'('urn:example:alice379', true)). +answer('urn:example:complies'('urn:example:alice380', true)). +answer('urn:example:complies'('urn:example:alice381', true)). +answer('urn:example:complies'('urn:example:alice382', true)). +answer('urn:example:complies'('urn:example:alice383', true)). +answer('urn:example:complies'('urn:example:alice384', true)). +answer('urn:example:complies'('urn:example:alice385', true)). +answer('urn:example:complies'('urn:example:alice386', true)). +answer('urn:example:complies'('urn:example:alice387', true)). +answer('urn:example:complies'('urn:example:alice388', true)). +answer('urn:example:complies'('urn:example:alice389', true)). +answer('urn:example:complies'('urn:example:alice390', true)). +answer('urn:example:complies'('urn:example:alice391', true)). +answer('urn:example:complies'('urn:example:alice392', true)). +answer('urn:example:complies'('urn:example:alice393', true)). +answer('urn:example:complies'('urn:example:alice394', true)). +answer('urn:example:complies'('urn:example:alice395', true)). +answer('urn:example:complies'('urn:example:alice396', true)). +answer('urn:example:complies'('urn:example:alice397', true)). +answer('urn:example:complies'('urn:example:alice398', true)). +answer('urn:example:complies'('urn:example:alice399', true)). +answer('urn:example:complies'('urn:example:alice400', true)). +answer('urn:example:complies'('urn:example:alice401', true)). +answer('urn:example:complies'('urn:example:alice402', true)). +answer('urn:example:complies'('urn:example:alice403', true)). +answer('urn:example:complies'('urn:example:alice404', true)). +answer('urn:example:complies'('urn:example:alice405', true)). +answer('urn:example:complies'('urn:example:alice406', true)). +answer('urn:example:complies'('urn:example:alice407', true)). +answer('urn:example:complies'('urn:example:alice408', true)). +answer('urn:example:complies'('urn:example:alice409', true)). +answer('urn:example:complies'('urn:example:alice410', true)). +answer('urn:example:complies'('urn:example:alice411', true)). +answer('urn:example:complies'('urn:example:alice412', true)). +answer('urn:example:complies'('urn:example:alice413', true)). +answer('urn:example:complies'('urn:example:alice414', true)). +answer('urn:example:complies'('urn:example:alice415', true)). +answer('urn:example:complies'('urn:example:alice416', true)). +answer('urn:example:complies'('urn:example:alice417', true)). +answer('urn:example:complies'('urn:example:alice418', true)). +answer('urn:example:complies'('urn:example:alice419', true)). +answer('urn:example:complies'('urn:example:alice420', true)). +answer('urn:example:complies'('urn:example:alice421', true)). +answer('urn:example:complies'('urn:example:alice422', true)). +answer('urn:example:complies'('urn:example:alice423', true)). +answer('urn:example:complies'('urn:example:alice424', true)). +answer('urn:example:complies'('urn:example:alice425', true)). +answer('urn:example:complies'('urn:example:alice426', true)). +answer('urn:example:complies'('urn:example:alice427', true)). +answer('urn:example:complies'('urn:example:alice428', true)). +answer('urn:example:complies'('urn:example:alice429', true)). +answer('urn:example:complies'('urn:example:alice430', true)). +answer('urn:example:complies'('urn:example:alice431', true)). +answer('urn:example:complies'('urn:example:alice432', true)). +answer('urn:example:complies'('urn:example:alice433', true)). +answer('urn:example:complies'('urn:example:alice434', true)). +answer('urn:example:complies'('urn:example:alice435', true)). +answer('urn:example:complies'('urn:example:alice436', true)). +answer('urn:example:complies'('urn:example:alice437', true)). +answer('urn:example:complies'('urn:example:alice438', true)). +answer('urn:example:complies'('urn:example:alice439', true)). +answer('urn:example:complies'('urn:example:alice440', true)). +answer('urn:example:complies'('urn:example:alice441', true)). +answer('urn:example:complies'('urn:example:alice442', true)). +answer('urn:example:complies'('urn:example:alice443', true)). +answer('urn:example:complies'('urn:example:alice444', true)). +answer('urn:example:complies'('urn:example:alice445', true)). +answer('urn:example:complies'('urn:example:alice446', true)). +answer('urn:example:complies'('urn:example:alice447', true)). +answer('urn:example:complies'('urn:example:alice448', true)). +answer('urn:example:complies'('urn:example:alice449', true)). +answer('urn:example:complies'('urn:example:alice450', true)). +answer('urn:example:complies'('urn:example:alice451', true)). +answer('urn:example:complies'('urn:example:alice452', true)). +answer('urn:example:complies'('urn:example:alice453', true)). +answer('urn:example:complies'('urn:example:alice454', true)). +answer('urn:example:complies'('urn:example:alice455', true)). +answer('urn:example:complies'('urn:example:alice456', true)). +answer('urn:example:complies'('urn:example:alice457', true)). +answer('urn:example:complies'('urn:example:alice458', true)). +answer('urn:example:complies'('urn:example:alice459', true)). +answer('urn:example:complies'('urn:example:alice460', true)). +answer('urn:example:complies'('urn:example:alice461', true)). +answer('urn:example:complies'('urn:example:alice462', true)). +answer('urn:example:complies'('urn:example:alice463', true)). +answer('urn:example:complies'('urn:example:alice464', true)). +answer('urn:example:complies'('urn:example:alice465', true)). +answer('urn:example:complies'('urn:example:alice466', true)). +answer('urn:example:complies'('urn:example:alice467', true)). +answer('urn:example:complies'('urn:example:alice468', true)). +answer('urn:example:complies'('urn:example:alice469', true)). +answer('urn:example:complies'('urn:example:alice470', true)). +answer('urn:example:complies'('urn:example:alice471', true)). +answer('urn:example:complies'('urn:example:alice472', true)). +answer('urn:example:complies'('urn:example:alice473', true)). +answer('urn:example:complies'('urn:example:alice474', true)). +answer('urn:example:complies'('urn:example:alice475', true)). +answer('urn:example:complies'('urn:example:alice476', true)). +answer('urn:example:complies'('urn:example:alice477', true)). +answer('urn:example:complies'('urn:example:alice478', true)). +answer('urn:example:complies'('urn:example:alice479', true)). +answer('urn:example:complies'('urn:example:alice480', true)). +answer('urn:example:complies'('urn:example:alice481', true)). +answer('urn:example:complies'('urn:example:alice482', true)). +answer('urn:example:complies'('urn:example:alice483', true)). +answer('urn:example:complies'('urn:example:alice484', true)). +answer('urn:example:complies'('urn:example:alice485', true)). +answer('urn:example:complies'('urn:example:alice486', true)). +answer('urn:example:complies'('urn:example:alice487', true)). +answer('urn:example:complies'('urn:example:alice488', true)). +answer('urn:example:complies'('urn:example:alice489', true)). +answer('urn:example:complies'('urn:example:alice490', true)). +answer('urn:example:complies'('urn:example:alice491', true)). +answer('urn:example:complies'('urn:example:alice492', true)). +answer('urn:example:complies'('urn:example:alice493', true)). +answer('urn:example:complies'('urn:example:alice494', true)). +answer('urn:example:complies'('urn:example:alice495', true)). +answer('urn:example:complies'('urn:example:alice496', true)). +answer('urn:example:complies'('urn:example:alice497', true)). +answer('urn:example:complies'('urn:example:alice498', true)). +answer('urn:example:complies'('urn:example:alice499', true)). +answer('urn:example:complies'('urn:example:alice500', true)). +answer('urn:example:complies'('urn:example:alice501', true)). +answer('urn:example:complies'('urn:example:alice502', true)). +answer('urn:example:complies'('urn:example:alice503', true)). +answer('urn:example:complies'('urn:example:alice504', true)). +answer('urn:example:complies'('urn:example:alice505', true)). +answer('urn:example:complies'('urn:example:alice506', true)). +answer('urn:example:complies'('urn:example:alice507', true)). +answer('urn:example:complies'('urn:example:alice508', true)). +answer('urn:example:complies'('urn:example:alice509', true)). +answer('urn:example:complies'('urn:example:alice510', true)). +answer('urn:example:complies'('urn:example:alice511', true)). +answer('urn:example:complies'('urn:example:alice512', true)). +answer('urn:example:complies'('urn:example:alice513', true)). +answer('urn:example:complies'('urn:example:alice514', true)). +answer('urn:example:complies'('urn:example:alice515', true)). +answer('urn:example:complies'('urn:example:alice516', true)). +answer('urn:example:complies'('urn:example:alice517', true)). +answer('urn:example:complies'('urn:example:alice518', true)). +answer('urn:example:complies'('urn:example:alice519', true)). +answer('urn:example:complies'('urn:example:alice520', true)). +answer('urn:example:complies'('urn:example:alice521', true)). +answer('urn:example:complies'('urn:example:alice522', true)). +answer('urn:example:complies'('urn:example:alice523', true)). +answer('urn:example:complies'('urn:example:alice524', true)). +answer('urn:example:complies'('urn:example:alice525', true)). +answer('urn:example:complies'('urn:example:alice526', true)). +answer('urn:example:complies'('urn:example:alice527', true)). +answer('urn:example:complies'('urn:example:alice528', true)). +answer('urn:example:complies'('urn:example:alice529', true)). +answer('urn:example:complies'('urn:example:alice530', true)). +answer('urn:example:complies'('urn:example:alice531', true)). +answer('urn:example:complies'('urn:example:alice532', true)). +answer('urn:example:complies'('urn:example:alice533', true)). +answer('urn:example:complies'('urn:example:alice534', true)). +answer('urn:example:complies'('urn:example:alice535', true)). +answer('urn:example:complies'('urn:example:alice536', true)). +answer('urn:example:complies'('urn:example:alice537', true)). +answer('urn:example:complies'('urn:example:alice538', true)). +answer('urn:example:complies'('urn:example:alice539', true)). +answer('urn:example:complies'('urn:example:alice540', true)). +answer('urn:example:complies'('urn:example:alice541', true)). +answer('urn:example:complies'('urn:example:alice542', true)). +answer('urn:example:complies'('urn:example:alice543', true)). +answer('urn:example:complies'('urn:example:alice544', true)). +answer('urn:example:complies'('urn:example:alice545', true)). +answer('urn:example:complies'('urn:example:alice546', true)). +answer('urn:example:complies'('urn:example:alice547', true)). +answer('urn:example:complies'('urn:example:alice548', true)). +answer('urn:example:complies'('urn:example:alice549', true)). +answer('urn:example:complies'('urn:example:alice550', true)). +answer('urn:example:complies'('urn:example:alice551', true)). +answer('urn:example:complies'('urn:example:alice552', true)). +answer('urn:example:complies'('urn:example:alice553', true)). +answer('urn:example:complies'('urn:example:alice554', true)). +answer('urn:example:complies'('urn:example:alice555', true)). +answer('urn:example:complies'('urn:example:alice556', true)). +answer('urn:example:complies'('urn:example:alice557', true)). +answer('urn:example:complies'('urn:example:alice558', true)). +answer('urn:example:complies'('urn:example:alice559', true)). +answer('urn:example:complies'('urn:example:alice560', true)). +answer('urn:example:complies'('urn:example:alice561', true)). +answer('urn:example:complies'('urn:example:alice562', true)). +answer('urn:example:complies'('urn:example:alice563', true)). +answer('urn:example:complies'('urn:example:alice564', true)). +answer('urn:example:complies'('urn:example:alice565', true)). +answer('urn:example:complies'('urn:example:alice566', true)). +answer('urn:example:complies'('urn:example:alice567', true)). +answer('urn:example:complies'('urn:example:alice568', true)). +answer('urn:example:complies'('urn:example:alice569', true)). +answer('urn:example:complies'('urn:example:alice570', true)). +answer('urn:example:complies'('urn:example:alice571', true)). +answer('urn:example:complies'('urn:example:alice572', true)). +answer('urn:example:complies'('urn:example:alice573', true)). +answer('urn:example:complies'('urn:example:alice574', true)). +answer('urn:example:complies'('urn:example:alice575', true)). +answer('urn:example:complies'('urn:example:alice576', true)). +answer('urn:example:complies'('urn:example:alice577', true)). +answer('urn:example:complies'('urn:example:alice578', true)). +answer('urn:example:complies'('urn:example:alice579', true)). +answer('urn:example:complies'('urn:example:alice580', true)). +answer('urn:example:complies'('urn:example:alice581', true)). +answer('urn:example:complies'('urn:example:alice582', true)). +answer('urn:example:complies'('urn:example:alice583', true)). +answer('urn:example:complies'('urn:example:alice584', true)). +answer('urn:example:complies'('urn:example:alice585', true)). +answer('urn:example:complies'('urn:example:alice586', true)). +answer('urn:example:complies'('urn:example:alice587', true)). +answer('urn:example:complies'('urn:example:alice588', true)). +answer('urn:example:complies'('urn:example:alice589', true)). +answer('urn:example:complies'('urn:example:alice590', true)). +answer('urn:example:complies'('urn:example:alice591', true)). +answer('urn:example:complies'('urn:example:alice592', true)). +answer('urn:example:complies'('urn:example:alice593', true)). +answer('urn:example:complies'('urn:example:alice594', true)). +answer('urn:example:complies'('urn:example:alice595', true)). +answer('urn:example:complies'('urn:example:alice596', true)). +answer('urn:example:complies'('urn:example:alice597', true)). +answer('urn:example:complies'('urn:example:alice598', true)). +answer('urn:example:complies'('urn:example:alice599', true)). +answer('urn:example:complies'('urn:example:alice600', true)). +answer('urn:example:complies'('urn:example:alice601', true)). +answer('urn:example:complies'('urn:example:alice602', true)). +answer('urn:example:complies'('urn:example:alice603', true)). +answer('urn:example:complies'('urn:example:alice604', true)). +answer('urn:example:complies'('urn:example:alice605', true)). +answer('urn:example:complies'('urn:example:alice606', true)). +answer('urn:example:complies'('urn:example:alice607', true)). +answer('urn:example:complies'('urn:example:alice608', true)). +answer('urn:example:complies'('urn:example:alice609', true)). +answer('urn:example:complies'('urn:example:alice610', true)). +answer('urn:example:complies'('urn:example:alice611', true)). +answer('urn:example:complies'('urn:example:alice612', true)). +answer('urn:example:complies'('urn:example:alice613', true)). +answer('urn:example:complies'('urn:example:alice614', true)). +answer('urn:example:complies'('urn:example:alice615', true)). +answer('urn:example:complies'('urn:example:alice616', true)). +answer('urn:example:complies'('urn:example:alice617', true)). +answer('urn:example:complies'('urn:example:alice618', true)). +answer('urn:example:complies'('urn:example:alice619', true)). +answer('urn:example:complies'('urn:example:alice620', true)). +answer('urn:example:complies'('urn:example:alice621', true)). +answer('urn:example:complies'('urn:example:alice622', true)). +answer('urn:example:complies'('urn:example:alice623', true)). +answer('urn:example:complies'('urn:example:alice624', true)). +answer('urn:example:complies'('urn:example:alice625', true)). +answer('urn:example:complies'('urn:example:alice626', true)). +answer('urn:example:complies'('urn:example:alice627', true)). +answer('urn:example:complies'('urn:example:alice628', true)). +answer('urn:example:complies'('urn:example:alice629', true)). +answer('urn:example:complies'('urn:example:alice630', true)). +answer('urn:example:complies'('urn:example:alice631', true)). +answer('urn:example:complies'('urn:example:alice632', true)). +answer('urn:example:complies'('urn:example:alice633', true)). +answer('urn:example:complies'('urn:example:alice634', true)). +answer('urn:example:complies'('urn:example:alice635', true)). +answer('urn:example:complies'('urn:example:alice636', true)). +answer('urn:example:complies'('urn:example:alice637', true)). +answer('urn:example:complies'('urn:example:alice638', true)). +answer('urn:example:complies'('urn:example:alice639', true)). +answer('urn:example:complies'('urn:example:alice640', true)). +answer('urn:example:complies'('urn:example:alice641', true)). +answer('urn:example:complies'('urn:example:alice642', true)). +answer('urn:example:complies'('urn:example:alice643', true)). +answer('urn:example:complies'('urn:example:alice644', true)). +answer('urn:example:complies'('urn:example:alice645', true)). +answer('urn:example:complies'('urn:example:alice646', true)). +answer('urn:example:complies'('urn:example:alice647', true)). +answer('urn:example:complies'('urn:example:alice648', true)). +answer('urn:example:complies'('urn:example:alice649', true)). +answer('urn:example:complies'('urn:example:alice650', true)). +answer('urn:example:complies'('urn:example:alice651', true)). +answer('urn:example:complies'('urn:example:alice652', true)). +answer('urn:example:complies'('urn:example:alice653', true)). +answer('urn:example:complies'('urn:example:alice654', true)). +answer('urn:example:complies'('urn:example:alice655', true)). +answer('urn:example:complies'('urn:example:alice656', true)). +answer('urn:example:complies'('urn:example:alice657', true)). +answer('urn:example:complies'('urn:example:alice658', true)). +answer('urn:example:complies'('urn:example:alice659', true)). +answer('urn:example:complies'('urn:example:alice660', true)). +answer('urn:example:complies'('urn:example:alice661', true)). +answer('urn:example:complies'('urn:example:alice662', true)). +answer('urn:example:complies'('urn:example:alice663', true)). +answer('urn:example:complies'('urn:example:alice664', true)). +answer('urn:example:complies'('urn:example:alice665', true)). +answer('urn:example:complies'('urn:example:alice666', true)). +answer('urn:example:complies'('urn:example:alice667', true)). +answer('urn:example:complies'('urn:example:alice668', true)). +answer('urn:example:complies'('urn:example:alice669', true)). +answer('urn:example:complies'('urn:example:alice670', true)). +answer('urn:example:complies'('urn:example:alice671', true)). +answer('urn:example:complies'('urn:example:alice672', true)). +answer('urn:example:complies'('urn:example:alice673', true)). +answer('urn:example:complies'('urn:example:alice674', true)). +answer('urn:example:complies'('urn:example:alice675', true)). +answer('urn:example:complies'('urn:example:alice676', true)). +answer('urn:example:complies'('urn:example:alice677', true)). +answer('urn:example:complies'('urn:example:alice678', true)). +answer('urn:example:complies'('urn:example:alice679', true)). +answer('urn:example:complies'('urn:example:alice680', true)). +answer('urn:example:complies'('urn:example:alice681', true)). +answer('urn:example:complies'('urn:example:alice682', true)). +answer('urn:example:complies'('urn:example:alice683', true)). +answer('urn:example:complies'('urn:example:alice684', true)). +answer('urn:example:complies'('urn:example:alice685', true)). +answer('urn:example:complies'('urn:example:alice686', true)). +answer('urn:example:complies'('urn:example:alice687', true)). +answer('urn:example:complies'('urn:example:alice688', true)). +answer('urn:example:complies'('urn:example:alice689', true)). +answer('urn:example:complies'('urn:example:alice690', true)). +answer('urn:example:complies'('urn:example:alice691', true)). +answer('urn:example:complies'('urn:example:alice692', true)). +answer('urn:example:complies'('urn:example:alice693', true)). +answer('urn:example:complies'('urn:example:alice694', true)). +answer('urn:example:complies'('urn:example:alice695', true)). +answer('urn:example:complies'('urn:example:alice696', true)). +answer('urn:example:complies'('urn:example:alice697', true)). +answer('urn:example:complies'('urn:example:alice698', true)). +answer('urn:example:complies'('urn:example:alice699', true)). +answer('urn:example:complies'('urn:example:alice700', true)). +answer('urn:example:complies'('urn:example:alice701', true)). +answer('urn:example:complies'('urn:example:alice702', true)). +answer('urn:example:complies'('urn:example:alice703', true)). +answer('urn:example:complies'('urn:example:alice704', true)). +answer('urn:example:complies'('urn:example:alice705', true)). +answer('urn:example:complies'('urn:example:alice706', true)). +answer('urn:example:complies'('urn:example:alice707', true)). +answer('urn:example:complies'('urn:example:alice708', true)). +answer('urn:example:complies'('urn:example:alice709', true)). +answer('urn:example:complies'('urn:example:alice710', true)). +answer('urn:example:complies'('urn:example:alice711', true)). +answer('urn:example:complies'('urn:example:alice712', true)). +answer('urn:example:complies'('urn:example:alice713', true)). +answer('urn:example:complies'('urn:example:alice714', true)). +answer('urn:example:complies'('urn:example:alice715', true)). +answer('urn:example:complies'('urn:example:alice716', true)). +answer('urn:example:complies'('urn:example:alice717', true)). +answer('urn:example:complies'('urn:example:alice718', true)). +answer('urn:example:complies'('urn:example:alice719', true)). +answer('urn:example:complies'('urn:example:alice720', true)). +answer('urn:example:complies'('urn:example:alice721', true)). +answer('urn:example:complies'('urn:example:alice722', true)). +answer('urn:example:complies'('urn:example:alice723', true)). +answer('urn:example:complies'('urn:example:alice724', true)). +answer('urn:example:complies'('urn:example:alice725', true)). +answer('urn:example:complies'('urn:example:alice726', true)). +answer('urn:example:complies'('urn:example:alice727', true)). +answer('urn:example:complies'('urn:example:alice728', true)). +answer('urn:example:complies'('urn:example:alice729', true)). +answer('urn:example:complies'('urn:example:alice730', true)). +answer('urn:example:complies'('urn:example:alice731', true)). +answer('urn:example:complies'('urn:example:alice732', true)). +answer('urn:example:complies'('urn:example:alice733', true)). +answer('urn:example:complies'('urn:example:alice734', true)). +answer('urn:example:complies'('urn:example:alice735', true)). +answer('urn:example:complies'('urn:example:alice736', true)). +answer('urn:example:complies'('urn:example:alice737', true)). +answer('urn:example:complies'('urn:example:alice738', true)). +answer('urn:example:complies'('urn:example:alice739', true)). +answer('urn:example:complies'('urn:example:alice740', true)). +answer('urn:example:complies'('urn:example:alice741', true)). +answer('urn:example:complies'('urn:example:alice742', true)). +answer('urn:example:complies'('urn:example:alice743', true)). +answer('urn:example:complies'('urn:example:alice744', true)). +answer('urn:example:complies'('urn:example:alice745', true)). +answer('urn:example:complies'('urn:example:alice746', true)). +answer('urn:example:complies'('urn:example:alice747', true)). +answer('urn:example:complies'('urn:example:alice748', true)). +answer('urn:example:complies'('urn:example:alice749', true)). +answer('urn:example:complies'('urn:example:alice750', true)). +answer('urn:example:complies'('urn:example:alice751', true)). +answer('urn:example:complies'('urn:example:alice752', true)). +answer('urn:example:complies'('urn:example:alice753', true)). +answer('urn:example:complies'('urn:example:alice754', true)). +answer('urn:example:complies'('urn:example:alice755', true)). +answer('urn:example:complies'('urn:example:alice756', true)). +answer('urn:example:complies'('urn:example:alice757', true)). +answer('urn:example:complies'('urn:example:alice758', true)). +answer('urn:example:complies'('urn:example:alice759', true)). +answer('urn:example:complies'('urn:example:alice760', true)). +answer('urn:example:complies'('urn:example:alice761', true)). +answer('urn:example:complies'('urn:example:alice762', true)). +answer('urn:example:complies'('urn:example:alice763', true)). +answer('urn:example:complies'('urn:example:alice764', true)). +answer('urn:example:complies'('urn:example:alice765', true)). +answer('urn:example:complies'('urn:example:alice766', true)). +answer('urn:example:complies'('urn:example:alice767', true)). +answer('urn:example:complies'('urn:example:alice768', true)). +answer('urn:example:complies'('urn:example:alice769', true)). +answer('urn:example:complies'('urn:example:alice770', true)). +answer('urn:example:complies'('urn:example:alice771', true)). +answer('urn:example:complies'('urn:example:alice772', true)). +answer('urn:example:complies'('urn:example:alice773', true)). +answer('urn:example:complies'('urn:example:alice774', true)). +answer('urn:example:complies'('urn:example:alice775', true)). +answer('urn:example:complies'('urn:example:alice776', true)). +answer('urn:example:complies'('urn:example:alice777', true)). +answer('urn:example:complies'('urn:example:alice778', true)). +answer('urn:example:complies'('urn:example:alice779', true)). +answer('urn:example:complies'('urn:example:alice780', true)). +answer('urn:example:complies'('urn:example:alice781', true)). +answer('urn:example:complies'('urn:example:alice782', true)). +answer('urn:example:complies'('urn:example:alice783', true)). +answer('urn:example:complies'('urn:example:alice784', true)). +answer('urn:example:complies'('urn:example:alice785', true)). +answer('urn:example:complies'('urn:example:alice786', true)). +answer('urn:example:complies'('urn:example:alice787', true)). +answer('urn:example:complies'('urn:example:alice788', true)). +answer('urn:example:complies'('urn:example:alice789', true)). +answer('urn:example:complies'('urn:example:alice790', true)). +answer('urn:example:complies'('urn:example:alice791', true)). +answer('urn:example:complies'('urn:example:alice792', true)). +answer('urn:example:complies'('urn:example:alice793', true)). +answer('urn:example:complies'('urn:example:alice794', true)). +answer('urn:example:complies'('urn:example:alice795', true)). +answer('urn:example:complies'('urn:example:alice796', true)). +answer('urn:example:complies'('urn:example:alice797', true)). +answer('urn:example:complies'('urn:example:alice798', true)). +answer('urn:example:complies'('urn:example:alice799', true)). +answer('urn:example:complies'('urn:example:alice800', true)). +answer('urn:example:complies'('urn:example:alice801', true)). +answer('urn:example:complies'('urn:example:alice802', true)). +answer('urn:example:complies'('urn:example:alice803', true)). +answer('urn:example:complies'('urn:example:alice804', true)). +answer('urn:example:complies'('urn:example:alice805', true)). +answer('urn:example:complies'('urn:example:alice806', true)). +answer('urn:example:complies'('urn:example:alice807', true)). +answer('urn:example:complies'('urn:example:alice808', true)). +answer('urn:example:complies'('urn:example:alice809', true)). +answer('urn:example:complies'('urn:example:alice810', true)). +answer('urn:example:complies'('urn:example:alice811', true)). +answer('urn:example:complies'('urn:example:alice812', true)). +answer('urn:example:complies'('urn:example:alice813', true)). +answer('urn:example:complies'('urn:example:alice814', true)). +answer('urn:example:complies'('urn:example:alice815', true)). +answer('urn:example:complies'('urn:example:alice816', true)). +answer('urn:example:complies'('urn:example:alice817', true)). +answer('urn:example:complies'('urn:example:alice818', true)). +answer('urn:example:complies'('urn:example:alice819', true)). +answer('urn:example:complies'('urn:example:alice820', true)). +answer('urn:example:complies'('urn:example:alice821', true)). +answer('urn:example:complies'('urn:example:alice822', true)). +answer('urn:example:complies'('urn:example:alice823', true)). +answer('urn:example:complies'('urn:example:alice824', true)). +answer('urn:example:complies'('urn:example:alice825', true)). +answer('urn:example:complies'('urn:example:alice826', true)). +answer('urn:example:complies'('urn:example:alice827', true)). +answer('urn:example:complies'('urn:example:alice828', true)). +answer('urn:example:complies'('urn:example:alice829', true)). +answer('urn:example:complies'('urn:example:alice830', true)). +answer('urn:example:complies'('urn:example:alice831', true)). +answer('urn:example:complies'('urn:example:alice832', true)). +answer('urn:example:complies'('urn:example:alice833', true)). +answer('urn:example:complies'('urn:example:alice834', true)). +answer('urn:example:complies'('urn:example:alice835', true)). +answer('urn:example:complies'('urn:example:alice836', true)). +answer('urn:example:complies'('urn:example:alice837', true)). +answer('urn:example:complies'('urn:example:alice838', true)). +answer('urn:example:complies'('urn:example:alice839', true)). +answer('urn:example:complies'('urn:example:alice840', true)). +answer('urn:example:complies'('urn:example:alice841', true)). +answer('urn:example:complies'('urn:example:alice842', true)). +answer('urn:example:complies'('urn:example:alice843', true)). +answer('urn:example:complies'('urn:example:alice844', true)). +answer('urn:example:complies'('urn:example:alice845', true)). +answer('urn:example:complies'('urn:example:alice846', true)). +answer('urn:example:complies'('urn:example:alice847', true)). +answer('urn:example:complies'('urn:example:alice848', true)). +answer('urn:example:complies'('urn:example:alice849', true)). +answer('urn:example:complies'('urn:example:alice850', true)). +answer('urn:example:complies'('urn:example:alice851', true)). +answer('urn:example:complies'('urn:example:alice852', true)). +answer('urn:example:complies'('urn:example:alice853', true)). +answer('urn:example:complies'('urn:example:alice854', true)). +answer('urn:example:complies'('urn:example:alice855', true)). +answer('urn:example:complies'('urn:example:alice856', true)). +answer('urn:example:complies'('urn:example:alice857', true)). +answer('urn:example:complies'('urn:example:alice858', true)). +answer('urn:example:complies'('urn:example:alice859', true)). +answer('urn:example:complies'('urn:example:alice860', true)). +answer('urn:example:complies'('urn:example:alice861', true)). +answer('urn:example:complies'('urn:example:alice862', true)). +answer('urn:example:complies'('urn:example:alice863', true)). +answer('urn:example:complies'('urn:example:alice864', true)). +answer('urn:example:complies'('urn:example:alice865', true)). +answer('urn:example:complies'('urn:example:alice866', true)). +answer('urn:example:complies'('urn:example:alice867', true)). +answer('urn:example:complies'('urn:example:alice868', true)). +answer('urn:example:complies'('urn:example:alice869', true)). +answer('urn:example:complies'('urn:example:alice870', true)). +answer('urn:example:complies'('urn:example:alice871', true)). +answer('urn:example:complies'('urn:example:alice872', true)). +answer('urn:example:complies'('urn:example:alice873', true)). +answer('urn:example:complies'('urn:example:alice874', true)). +answer('urn:example:complies'('urn:example:alice875', true)). +answer('urn:example:complies'('urn:example:alice876', true)). +answer('urn:example:complies'('urn:example:alice877', true)). +answer('urn:example:complies'('urn:example:alice878', true)). +answer('urn:example:complies'('urn:example:alice879', true)). +answer('urn:example:complies'('urn:example:alice880', true)). +answer('urn:example:complies'('urn:example:alice881', true)). +answer('urn:example:complies'('urn:example:alice882', true)). +answer('urn:example:complies'('urn:example:alice883', true)). +answer('urn:example:complies'('urn:example:alice884', true)). +answer('urn:example:complies'('urn:example:alice885', true)). +answer('urn:example:complies'('urn:example:alice886', true)). +answer('urn:example:complies'('urn:example:alice887', true)). +answer('urn:example:complies'('urn:example:alice888', true)). +answer('urn:example:complies'('urn:example:alice889', true)). +answer('urn:example:complies'('urn:example:alice890', true)). +answer('urn:example:complies'('urn:example:alice891', true)). +answer('urn:example:complies'('urn:example:alice892', true)). +answer('urn:example:complies'('urn:example:alice893', true)). +answer('urn:example:complies'('urn:example:alice894', true)). +answer('urn:example:complies'('urn:example:alice895', true)). +answer('urn:example:complies'('urn:example:alice896', true)). +answer('urn:example:complies'('urn:example:alice897', true)). +answer('urn:example:complies'('urn:example:alice898', true)). +answer('urn:example:complies'('urn:example:alice899', true)). +answer('urn:example:complies'('urn:example:alice900', true)). +answer('urn:example:complies'('urn:example:alice901', true)). +answer('urn:example:complies'('urn:example:alice902', true)). +answer('urn:example:complies'('urn:example:alice903', true)). +answer('urn:example:complies'('urn:example:alice904', true)). +answer('urn:example:complies'('urn:example:alice905', true)). +answer('urn:example:complies'('urn:example:alice906', true)). +answer('urn:example:complies'('urn:example:alice907', true)). +answer('urn:example:complies'('urn:example:alice908', true)). +answer('urn:example:complies'('urn:example:alice909', true)). +answer('urn:example:complies'('urn:example:alice910', true)). +answer('urn:example:complies'('urn:example:alice911', true)). +answer('urn:example:complies'('urn:example:alice912', true)). +answer('urn:example:complies'('urn:example:alice913', true)). +answer('urn:example:complies'('urn:example:alice914', true)). +answer('urn:example:complies'('urn:example:alice915', true)). +answer('urn:example:complies'('urn:example:alice916', true)). +answer('urn:example:complies'('urn:example:alice917', true)). +answer('urn:example:complies'('urn:example:alice918', true)). +answer('urn:example:complies'('urn:example:alice919', true)). +answer('urn:example:complies'('urn:example:alice920', true)). +answer('urn:example:complies'('urn:example:alice921', true)). +answer('urn:example:complies'('urn:example:alice922', true)). +answer('urn:example:complies'('urn:example:alice923', true)). +answer('urn:example:complies'('urn:example:alice924', true)). +answer('urn:example:complies'('urn:example:alice925', true)). +answer('urn:example:complies'('urn:example:alice926', true)). +answer('urn:example:complies'('urn:example:alice927', true)). +answer('urn:example:complies'('urn:example:alice928', true)). +answer('urn:example:complies'('urn:example:alice929', true)). +answer('urn:example:complies'('urn:example:alice930', true)). +answer('urn:example:complies'('urn:example:alice931', true)). +answer('urn:example:complies'('urn:example:alice932', true)). +answer('urn:example:complies'('urn:example:alice933', true)). +answer('urn:example:complies'('urn:example:alice934', true)). +answer('urn:example:complies'('urn:example:alice935', true)). +answer('urn:example:complies'('urn:example:alice936', true)). +answer('urn:example:complies'('urn:example:alice937', true)). +answer('urn:example:complies'('urn:example:alice938', true)). +answer('urn:example:complies'('urn:example:alice939', true)). +answer('urn:example:complies'('urn:example:alice940', true)). +answer('urn:example:complies'('urn:example:alice941', true)). +answer('urn:example:complies'('urn:example:alice942', true)). +answer('urn:example:complies'('urn:example:alice943', true)). +answer('urn:example:complies'('urn:example:alice944', true)). +answer('urn:example:complies'('urn:example:alice945', true)). +answer('urn:example:complies'('urn:example:alice946', true)). +answer('urn:example:complies'('urn:example:alice947', true)). +answer('urn:example:complies'('urn:example:alice948', true)). +answer('urn:example:complies'('urn:example:alice949', true)). +answer('urn:example:complies'('urn:example:alice950', true)). +answer('urn:example:complies'('urn:example:alice951', true)). +answer('urn:example:complies'('urn:example:alice952', true)). +answer('urn:example:complies'('urn:example:alice953', true)). +answer('urn:example:complies'('urn:example:alice954', true)). +answer('urn:example:complies'('urn:example:alice955', true)). +answer('urn:example:complies'('urn:example:alice956', true)). +answer('urn:example:complies'('urn:example:alice957', true)). +answer('urn:example:complies'('urn:example:alice958', true)). +answer('urn:example:complies'('urn:example:alice959', true)). +answer('urn:example:complies'('urn:example:alice960', true)). +answer('urn:example:complies'('urn:example:alice961', true)). +answer('urn:example:complies'('urn:example:alice962', true)). +answer('urn:example:complies'('urn:example:alice963', true)). +answer('urn:example:complies'('urn:example:alice964', true)). +answer('urn:example:complies'('urn:example:alice965', true)). +answer('urn:example:complies'('urn:example:alice966', true)). +answer('urn:example:complies'('urn:example:alice967', true)). +answer('urn:example:complies'('urn:example:alice968', true)). +answer('urn:example:complies'('urn:example:alice969', true)). +answer('urn:example:complies'('urn:example:alice970', true)). +answer('urn:example:complies'('urn:example:alice971', true)). +answer('urn:example:complies'('urn:example:alice972', true)). +answer('urn:example:complies'('urn:example:alice973', true)). +answer('urn:example:complies'('urn:example:alice974', true)). +answer('urn:example:complies'('urn:example:alice975', true)). +answer('urn:example:complies'('urn:example:alice976', true)). +answer('urn:example:complies'('urn:example:alice977', true)). +answer('urn:example:complies'('urn:example:alice978', true)). +answer('urn:example:complies'('urn:example:alice979', true)). +answer('urn:example:complies'('urn:example:alice980', true)). +answer('urn:example:complies'('urn:example:alice981', true)). +answer('urn:example:complies'('urn:example:alice982', true)). +answer('urn:example:complies'('urn:example:alice983', true)). +answer('urn:example:complies'('urn:example:alice984', true)). +answer('urn:example:complies'('urn:example:alice985', true)). +answer('urn:example:complies'('urn:example:alice986', true)). +answer('urn:example:complies'('urn:example:alice987', true)). +answer('urn:example:complies'('urn:example:alice988', true)). +answer('urn:example:complies'('urn:example:alice989', true)). +answer('urn:example:complies'('urn:example:alice990', true)). +answer('urn:example:complies'('urn:example:alice991', true)). +answer('urn:example:complies'('urn:example:alice992', true)). +answer('urn:example:complies'('urn:example:alice993', true)). +answer('urn:example:complies'('urn:example:alice994', true)). +answer('urn:example:complies'('urn:example:alice995', true)). +answer('urn:example:complies'('urn:example:alice996', true)). +answer('urn:example:complies'('urn:example:alice997', true)). +answer('urn:example:complies'('urn:example:alice998', true)). +answer('urn:example:complies'('urn:example:alice999', true)). +answer('urn:example:complies'('urn:example:alice1000', true)). +answer('urn:example:complies'('urn:example:alice1001', true)). +answer('urn:example:complies'('urn:example:alice1002', true)). +answer('urn:example:complies'('urn:example:alice1003', true)). +answer('urn:example:complies'('urn:example:alice1004', true)). +answer('urn:example:complies'('urn:example:alice1005', true)). +answer('urn:example:complies'('urn:example:alice1006', true)). +answer('urn:example:complies'('urn:example:alice1007', true)). +answer('urn:example:complies'('urn:example:alice1008', true)). +answer('urn:example:complies'('urn:example:alice1009', true)). +answer('urn:example:complies'('urn:example:alice1010', true)). +answer('urn:example:complies'('urn:example:alice1011', true)). +answer('urn:example:complies'('urn:example:alice1012', true)). +answer('urn:example:complies'('urn:example:alice1013', true)). +answer('urn:example:complies'('urn:example:alice1014', true)). +answer('urn:example:complies'('urn:example:alice1015', true)). +answer('urn:example:complies'('urn:example:alice1016', true)). +answer('urn:example:complies'('urn:example:alice1017', true)). +answer('urn:example:complies'('urn:example:alice1018', true)). +answer('urn:example:complies'('urn:example:alice1019', true)). +answer('urn:example:complies'('urn:example:alice1020', true)). +answer('urn:example:complies'('urn:example:alice1021', true)). +answer('urn:example:complies'('urn:example:alice1022', true)). +answer('urn:example:complies'('urn:example:alice1023', true)). +answer('urn:example:complies'('urn:example:alice1024', true)). +answer('urn:example:complies'('urn:example:alice1025', true)). +answer('urn:example:complies'('urn:example:alice1026', true)). +answer('urn:example:complies'('urn:example:alice1027', true)). +answer('urn:example:complies'('urn:example:alice1028', true)). +answer('urn:example:complies'('urn:example:alice1029', true)). +answer('urn:example:complies'('urn:example:alice1030', true)). +answer('urn:example:complies'('urn:example:alice1031', true)). +answer('urn:example:complies'('urn:example:alice1032', true)). +answer('urn:example:complies'('urn:example:alice1033', true)). +answer('urn:example:complies'('urn:example:alice1034', true)). +answer('urn:example:complies'('urn:example:alice1035', true)). +answer('urn:example:complies'('urn:example:alice1036', true)). +answer('urn:example:complies'('urn:example:alice1037', true)). +answer('urn:example:complies'('urn:example:alice1038', true)). +answer('urn:example:complies'('urn:example:alice1039', true)). +answer('urn:example:complies'('urn:example:alice1040', true)). +answer('urn:example:complies'('urn:example:alice1041', true)). +answer('urn:example:complies'('urn:example:alice1042', true)). +answer('urn:example:complies'('urn:example:alice1043', true)). +answer('urn:example:complies'('urn:example:alice1044', true)). +answer('urn:example:complies'('urn:example:alice1045', true)). +answer('urn:example:complies'('urn:example:alice1046', true)). +answer('urn:example:complies'('urn:example:alice1047', true)). +answer('urn:example:complies'('urn:example:alice1048', true)). +answer('urn:example:complies'('urn:example:alice1049', true)). +answer('urn:example:complies'('urn:example:alice1050', true)). +answer('urn:example:complies'('urn:example:alice1051', true)). +answer('urn:example:complies'('urn:example:alice1052', true)). +answer('urn:example:complies'('urn:example:alice1053', true)). +answer('urn:example:complies'('urn:example:alice1054', true)). +answer('urn:example:complies'('urn:example:alice1055', true)). +answer('urn:example:complies'('urn:example:alice1056', true)). +answer('urn:example:complies'('urn:example:alice1057', true)). +answer('urn:example:complies'('urn:example:alice1058', true)). +answer('urn:example:complies'('urn:example:alice1059', true)). +answer('urn:example:complies'('urn:example:alice1060', true)). +answer('urn:example:complies'('urn:example:alice1061', true)). +answer('urn:example:complies'('urn:example:alice1062', true)). +answer('urn:example:complies'('urn:example:alice1063', true)). +answer('urn:example:complies'('urn:example:alice1064', true)). +answer('urn:example:complies'('urn:example:alice1065', true)). +answer('urn:example:complies'('urn:example:alice1066', true)). +answer('urn:example:complies'('urn:example:alice1067', true)). +answer('urn:example:complies'('urn:example:alice1068', true)). +answer('urn:example:complies'('urn:example:alice1069', true)). +answer('urn:example:complies'('urn:example:alice1070', true)). +answer('urn:example:complies'('urn:example:alice1071', true)). +answer('urn:example:complies'('urn:example:alice1072', true)). +answer('urn:example:complies'('urn:example:alice1073', true)). +answer('urn:example:complies'('urn:example:alice1074', true)). +answer('urn:example:complies'('urn:example:alice1075', true)). +answer('urn:example:complies'('urn:example:alice1076', true)). +answer('urn:example:complies'('urn:example:alice1077', true)). +answer('urn:example:complies'('urn:example:alice1078', true)). +answer('urn:example:complies'('urn:example:alice1079', true)). +answer('urn:example:complies'('urn:example:alice1080', true)). +answer('urn:example:complies'('urn:example:alice1081', true)). +answer('urn:example:complies'('urn:example:alice1082', true)). +answer('urn:example:complies'('urn:example:alice1083', true)). +answer('urn:example:complies'('urn:example:alice1084', true)). +answer('urn:example:complies'('urn:example:alice1085', true)). +answer('urn:example:complies'('urn:example:alice1086', true)). +answer('urn:example:complies'('urn:example:alice1087', true)). +answer('urn:example:complies'('urn:example:alice1088', true)). +answer('urn:example:complies'('urn:example:alice1089', true)). +answer('urn:example:complies'('urn:example:alice1090', true)). +answer('urn:example:complies'('urn:example:alice1091', true)). +answer('urn:example:complies'('urn:example:alice1092', true)). +answer('urn:example:complies'('urn:example:alice1093', true)). +answer('urn:example:complies'('urn:example:alice1094', true)). +answer('urn:example:complies'('urn:example:alice1095', true)). +answer('urn:example:complies'('urn:example:alice1096', true)). +answer('urn:example:complies'('urn:example:alice1097', true)). +answer('urn:example:complies'('urn:example:alice1098', true)). +answer('urn:example:complies'('urn:example:alice1099', true)). +answer('urn:example:complies'('urn:example:alice1100', true)). +answer('urn:example:complies'('urn:example:alice1101', true)). +answer('urn:example:complies'('urn:example:alice1102', true)). +answer('urn:example:complies'('urn:example:alice1103', true)). +answer('urn:example:complies'('urn:example:alice1104', true)). +answer('urn:example:complies'('urn:example:alice1105', true)). +answer('urn:example:complies'('urn:example:alice1106', true)). +answer('urn:example:complies'('urn:example:alice1107', true)). +answer('urn:example:complies'('urn:example:alice1108', true)). +answer('urn:example:complies'('urn:example:alice1109', true)). +answer('urn:example:complies'('urn:example:alice1110', true)). +answer('urn:example:complies'('urn:example:alice1111', true)). +answer('urn:example:complies'('urn:example:alice1112', true)). +answer('urn:example:complies'('urn:example:alice1113', true)). +answer('urn:example:complies'('urn:example:alice1114', true)). +answer('urn:example:complies'('urn:example:alice1115', true)). +answer('urn:example:complies'('urn:example:alice1116', true)). +answer('urn:example:complies'('urn:example:alice1117', true)). +answer('urn:example:complies'('urn:example:alice1118', true)). +answer('urn:example:complies'('urn:example:alice1119', true)). +answer('urn:example:complies'('urn:example:alice1120', true)). +answer('urn:example:complies'('urn:example:alice1121', true)). +answer('urn:example:complies'('urn:example:alice1122', true)). +answer('urn:example:complies'('urn:example:alice1123', true)). +answer('urn:example:complies'('urn:example:alice1124', true)). +answer('urn:example:complies'('urn:example:alice1125', true)). +answer('urn:example:complies'('urn:example:alice1126', true)). +answer('urn:example:complies'('urn:example:alice1127', true)). +answer('urn:example:complies'('urn:example:alice1128', true)). +answer('urn:example:complies'('urn:example:alice1129', true)). +answer('urn:example:complies'('urn:example:alice1130', true)). +answer('urn:example:complies'('urn:example:alice1131', true)). +answer('urn:example:complies'('urn:example:alice1132', true)). +answer('urn:example:complies'('urn:example:alice1133', true)). +answer('urn:example:complies'('urn:example:alice1134', true)). +answer('urn:example:complies'('urn:example:alice1135', true)). +answer('urn:example:complies'('urn:example:alice1136', true)). +answer('urn:example:complies'('urn:example:alice1137', true)). +answer('urn:example:complies'('urn:example:alice1138', true)). +answer('urn:example:complies'('urn:example:alice1139', true)). +answer('urn:example:complies'('urn:example:alice1140', true)). +answer('urn:example:complies'('urn:example:alice1141', true)). +answer('urn:example:complies'('urn:example:alice1142', true)). +answer('urn:example:complies'('urn:example:alice1143', true)). +answer('urn:example:complies'('urn:example:alice1144', true)). +answer('urn:example:complies'('urn:example:alice1145', true)). +answer('urn:example:complies'('urn:example:alice1146', true)). +answer('urn:example:complies'('urn:example:alice1147', true)). +answer('urn:example:complies'('urn:example:alice1148', true)). +answer('urn:example:complies'('urn:example:alice1149', true)). +answer('urn:example:complies'('urn:example:alice1150', true)). +answer('urn:example:complies'('urn:example:alice1151', true)). +answer('urn:example:complies'('urn:example:alice1152', true)). +answer('urn:example:complies'('urn:example:alice1153', true)). +answer('urn:example:complies'('urn:example:alice1154', true)). +answer('urn:example:complies'('urn:example:alice1155', true)). +answer('urn:example:complies'('urn:example:alice1156', true)). +answer('urn:example:complies'('urn:example:alice1157', true)). +answer('urn:example:complies'('urn:example:alice1158', true)). +answer('urn:example:complies'('urn:example:alice1159', true)). +answer('urn:example:complies'('urn:example:alice1160', true)). +answer('urn:example:complies'('urn:example:alice1161', true)). +answer('urn:example:complies'('urn:example:alice1162', true)). +answer('urn:example:complies'('urn:example:alice1163', true)). +answer('urn:example:complies'('urn:example:alice1164', true)). +answer('urn:example:complies'('urn:example:alice1165', true)). +answer('urn:example:complies'('urn:example:alice1166', true)). +answer('urn:example:complies'('urn:example:alice1167', true)). +answer('urn:example:complies'('urn:example:alice1168', true)). +answer('urn:example:complies'('urn:example:alice1169', true)). +answer('urn:example:complies'('urn:example:alice1170', true)). +answer('urn:example:complies'('urn:example:alice1171', true)). +answer('urn:example:complies'('urn:example:alice1172', true)). +answer('urn:example:complies'('urn:example:alice1173', true)). +answer('urn:example:complies'('urn:example:alice1174', true)). +answer('urn:example:complies'('urn:example:alice1175', true)). +answer('urn:example:complies'('urn:example:alice1176', true)). +answer('urn:example:complies'('urn:example:alice1177', true)). +answer('urn:example:complies'('urn:example:alice1178', true)). +answer('urn:example:complies'('urn:example:alice1179', true)). +answer('urn:example:complies'('urn:example:alice1180', true)). +answer('urn:example:complies'('urn:example:alice1181', true)). +answer('urn:example:complies'('urn:example:alice1182', true)). +answer('urn:example:complies'('urn:example:alice1183', true)). +answer('urn:example:complies'('urn:example:alice1184', true)). +answer('urn:example:complies'('urn:example:alice1185', true)). +answer('urn:example:complies'('urn:example:alice1186', true)). +answer('urn:example:complies'('urn:example:alice1187', true)). +answer('urn:example:complies'('urn:example:alice1188', true)). +answer('urn:example:complies'('urn:example:alice1189', true)). +answer('urn:example:complies'('urn:example:alice1190', true)). +answer('urn:example:complies'('urn:example:alice1191', true)). +answer('urn:example:complies'('urn:example:alice1192', true)). +answer('urn:example:complies'('urn:example:alice1193', true)). +answer('urn:example:complies'('urn:example:alice1194', true)). +answer('urn:example:complies'('urn:example:alice1195', true)). +answer('urn:example:complies'('urn:example:alice1196', true)). +answer('urn:example:complies'('urn:example:alice1197', true)). +answer('urn:example:complies'('urn:example:alice1198', true)). +answer('urn:example:complies'('urn:example:alice1199', true)). +answer('urn:example:complies'('urn:example:alice1200', true)). +answer('urn:example:complies'('urn:example:alice1201', true)). +answer('urn:example:complies'('urn:example:alice1202', true)). +answer('urn:example:complies'('urn:example:alice1203', true)). +answer('urn:example:complies'('urn:example:alice1204', true)). +answer('urn:example:complies'('urn:example:alice1205', true)). +answer('urn:example:complies'('urn:example:alice1206', true)). +answer('urn:example:complies'('urn:example:alice1207', true)). +answer('urn:example:complies'('urn:example:alice1208', true)). +answer('urn:example:complies'('urn:example:alice1209', true)). +answer('urn:example:complies'('urn:example:alice1210', true)). +answer('urn:example:complies'('urn:example:alice1211', true)). +answer('urn:example:complies'('urn:example:alice1212', true)). +answer('urn:example:complies'('urn:example:alice1213', true)). +answer('urn:example:complies'('urn:example:alice1214', true)). +answer('urn:example:complies'('urn:example:alice1215', true)). +answer('urn:example:complies'('urn:example:alice1216', true)). +answer('urn:example:complies'('urn:example:alice1217', true)). +answer('urn:example:complies'('urn:example:alice1218', true)). +answer('urn:example:complies'('urn:example:alice1219', true)). +answer('urn:example:complies'('urn:example:alice1220', true)). +answer('urn:example:complies'('urn:example:alice1221', true)). +answer('urn:example:complies'('urn:example:alice1222', true)). +answer('urn:example:complies'('urn:example:alice1223', true)). +answer('urn:example:complies'('urn:example:alice1224', true)). +answer('urn:example:complies'('urn:example:alice1225', true)). +answer('urn:example:complies'('urn:example:alice1226', true)). +answer('urn:example:complies'('urn:example:alice1227', true)). +answer('urn:example:complies'('urn:example:alice1228', true)). +answer('urn:example:complies'('urn:example:alice1229', true)). +answer('urn:example:complies'('urn:example:alice1230', true)). +answer('urn:example:complies'('urn:example:alice1231', true)). +answer('urn:example:complies'('urn:example:alice1232', true)). +answer('urn:example:complies'('urn:example:alice1233', true)). +answer('urn:example:complies'('urn:example:alice1234', true)). +answer('urn:example:complies'('urn:example:alice1235', true)). +answer('urn:example:complies'('urn:example:alice1236', true)). +answer('urn:example:complies'('urn:example:alice1237', true)). +answer('urn:example:complies'('urn:example:alice1238', true)). +answer('urn:example:complies'('urn:example:alice1239', true)). +answer('urn:example:complies'('urn:example:alice1240', true)). +answer('urn:example:complies'('urn:example:alice1241', true)). +answer('urn:example:complies'('urn:example:alice1242', true)). +answer('urn:example:complies'('urn:example:alice1243', true)). +answer('urn:example:complies'('urn:example:alice1244', true)). +answer('urn:example:complies'('urn:example:alice1245', true)). +answer('urn:example:complies'('urn:example:alice1246', true)). +answer('urn:example:complies'('urn:example:alice1247', true)). +answer('urn:example:complies'('urn:example:alice1248', true)). +answer('urn:example:complies'('urn:example:alice1249', true)). +answer('urn:example:complies'('urn:example:alice1250', true)). +answer('urn:example:complies'('urn:example:alice1251', true)). +answer('urn:example:complies'('urn:example:alice1252', true)). +answer('urn:example:complies'('urn:example:alice1253', true)). +answer('urn:example:complies'('urn:example:alice1254', true)). +answer('urn:example:complies'('urn:example:alice1255', true)). +answer('urn:example:complies'('urn:example:alice1256', true)). +answer('urn:example:complies'('urn:example:alice1257', true)). +answer('urn:example:complies'('urn:example:alice1258', true)). +answer('urn:example:complies'('urn:example:alice1259', true)). +answer('urn:example:complies'('urn:example:alice1260', true)). +answer('urn:example:complies'('urn:example:alice1261', true)). +answer('urn:example:complies'('urn:example:alice1262', true)). +answer('urn:example:complies'('urn:example:alice1263', true)). +answer('urn:example:complies'('urn:example:alice1264', true)). +answer('urn:example:complies'('urn:example:alice1265', true)). +answer('urn:example:complies'('urn:example:alice1266', true)). +answer('urn:example:complies'('urn:example:alice1267', true)). +answer('urn:example:complies'('urn:example:alice1268', true)). +answer('urn:example:complies'('urn:example:alice1269', true)). +answer('urn:example:complies'('urn:example:alice1270', true)). +answer('urn:example:complies'('urn:example:alice1271', true)). +answer('urn:example:complies'('urn:example:alice1272', true)). +answer('urn:example:complies'('urn:example:alice1273', true)). +answer('urn:example:complies'('urn:example:alice1274', true)). +answer('urn:example:complies'('urn:example:alice1275', true)). +answer('urn:example:complies'('urn:example:alice1276', true)). +answer('urn:example:complies'('urn:example:alice1277', true)). +answer('urn:example:complies'('urn:example:alice1278', true)). +answer('urn:example:complies'('urn:example:alice1279', true)). +answer('urn:example:complies'('urn:example:alice1280', true)). +answer('urn:example:complies'('urn:example:alice1281', true)). +answer('urn:example:complies'('urn:example:alice1282', true)). +answer('urn:example:complies'('urn:example:alice1283', true)). +answer('urn:example:complies'('urn:example:alice1284', true)). +answer('urn:example:complies'('urn:example:alice1285', true)). +answer('urn:example:complies'('urn:example:alice1286', true)). +answer('urn:example:complies'('urn:example:alice1287', true)). +answer('urn:example:complies'('urn:example:alice1288', true)). +answer('urn:example:complies'('urn:example:alice1289', true)). +answer('urn:example:complies'('urn:example:alice1290', true)). +answer('urn:example:complies'('urn:example:alice1291', true)). +answer('urn:example:complies'('urn:example:alice1292', true)). +answer('urn:example:complies'('urn:example:alice1293', true)). +answer('urn:example:complies'('urn:example:alice1294', true)). +answer('urn:example:complies'('urn:example:alice1295', true)). +answer('urn:example:complies'('urn:example:alice1296', true)). +answer('urn:example:complies'('urn:example:alice1297', true)). +answer('urn:example:complies'('urn:example:alice1298', true)). +answer('urn:example:complies'('urn:example:alice1299', true)). +answer('urn:example:complies'('urn:example:alice1300', true)). +answer('urn:example:complies'('urn:example:alice1301', true)). +answer('urn:example:complies'('urn:example:alice1302', true)). +answer('urn:example:complies'('urn:example:alice1303', true)). +answer('urn:example:complies'('urn:example:alice1304', true)). +answer('urn:example:complies'('urn:example:alice1305', true)). +answer('urn:example:complies'('urn:example:alice1306', true)). +answer('urn:example:complies'('urn:example:alice1307', true)). +answer('urn:example:complies'('urn:example:alice1308', true)). +answer('urn:example:complies'('urn:example:alice1309', true)). +answer('urn:example:complies'('urn:example:alice1310', true)). +answer('urn:example:complies'('urn:example:alice1311', true)). +answer('urn:example:complies'('urn:example:alice1312', true)). +answer('urn:example:complies'('urn:example:alice1313', true)). +answer('urn:example:complies'('urn:example:alice1314', true)). +answer('urn:example:complies'('urn:example:alice1315', true)). +answer('urn:example:complies'('urn:example:alice1316', true)). +answer('urn:example:complies'('urn:example:alice1317', true)). +answer('urn:example:complies'('urn:example:alice1318', true)). +answer('urn:example:complies'('urn:example:alice1319', true)). +answer('urn:example:complies'('urn:example:alice1320', true)). +answer('urn:example:complies'('urn:example:alice1321', true)). +answer('urn:example:complies'('urn:example:alice1322', true)). +answer('urn:example:complies'('urn:example:alice1323', true)). +answer('urn:example:complies'('urn:example:alice1324', true)). +answer('urn:example:complies'('urn:example:alice1325', true)). +answer('urn:example:complies'('urn:example:alice1326', true)). +answer('urn:example:complies'('urn:example:alice1327', true)). +answer('urn:example:complies'('urn:example:alice1328', true)). +answer('urn:example:complies'('urn:example:alice1329', true)). +answer('urn:example:complies'('urn:example:alice1330', true)). +answer('urn:example:complies'('urn:example:alice1331', true)). +answer('urn:example:complies'('urn:example:alice1332', true)). +answer('urn:example:complies'('urn:example:alice1333', true)). +answer('urn:example:complies'('urn:example:alice1334', true)). +answer('urn:example:complies'('urn:example:alice1335', true)). +answer('urn:example:complies'('urn:example:alice1336', true)). +answer('urn:example:complies'('urn:example:alice1337', true)). +answer('urn:example:complies'('urn:example:alice1338', true)). +answer('urn:example:complies'('urn:example:alice1339', true)). +answer('urn:example:complies'('urn:example:alice1340', true)). +answer('urn:example:complies'('urn:example:alice1341', true)). +answer('urn:example:complies'('urn:example:alice1342', true)). +answer('urn:example:complies'('urn:example:alice1343', true)). +answer('urn:example:complies'('urn:example:alice1344', true)). +answer('urn:example:complies'('urn:example:alice1345', true)). +answer('urn:example:complies'('urn:example:alice1346', true)). +answer('urn:example:complies'('urn:example:alice1347', true)). +answer('urn:example:complies'('urn:example:alice1348', true)). +answer('urn:example:complies'('urn:example:alice1349', true)). +answer('urn:example:complies'('urn:example:alice1350', true)). +answer('urn:example:complies'('urn:example:alice1351', true)). +answer('urn:example:complies'('urn:example:alice1352', true)). +answer('urn:example:complies'('urn:example:alice1353', true)). +answer('urn:example:complies'('urn:example:alice1354', true)). +answer('urn:example:complies'('urn:example:alice1355', true)). +answer('urn:example:complies'('urn:example:alice1356', true)). +answer('urn:example:complies'('urn:example:alice1357', true)). +answer('urn:example:complies'('urn:example:alice1358', true)). +answer('urn:example:complies'('urn:example:alice1359', true)). +answer('urn:example:complies'('urn:example:alice1360', true)). +answer('urn:example:complies'('urn:example:alice1361', true)). +answer('urn:example:complies'('urn:example:alice1362', true)). +answer('urn:example:complies'('urn:example:alice1363', true)). +answer('urn:example:complies'('urn:example:alice1364', true)). +answer('urn:example:complies'('urn:example:alice1365', true)). +answer('urn:example:complies'('urn:example:alice1366', true)). +answer('urn:example:complies'('urn:example:alice1367', true)). +answer('urn:example:complies'('urn:example:alice1368', true)). +answer('urn:example:complies'('urn:example:alice1369', true)). +answer('urn:example:complies'('urn:example:alice1370', true)). +answer('urn:example:complies'('urn:example:alice1371', true)). +answer('urn:example:complies'('urn:example:alice1372', true)). +answer('urn:example:complies'('urn:example:alice1373', true)). +answer('urn:example:complies'('urn:example:alice1374', true)). +answer('urn:example:complies'('urn:example:alice1375', true)). +answer('urn:example:complies'('urn:example:alice1376', true)). +answer('urn:example:complies'('urn:example:alice1377', true)). +answer('urn:example:complies'('urn:example:alice1378', true)). +answer('urn:example:complies'('urn:example:alice1379', true)). +answer('urn:example:complies'('urn:example:alice1380', true)). +answer('urn:example:complies'('urn:example:alice1381', true)). +answer('urn:example:complies'('urn:example:alice1382', true)). +answer('urn:example:complies'('urn:example:alice1383', true)). +answer('urn:example:complies'('urn:example:alice1384', true)). +answer('urn:example:complies'('urn:example:alice1385', true)). +answer('urn:example:complies'('urn:example:alice1386', true)). +answer('urn:example:complies'('urn:example:alice1387', true)). +answer('urn:example:complies'('urn:example:alice1388', true)). +answer('urn:example:complies'('urn:example:alice1389', true)). +answer('urn:example:complies'('urn:example:alice1390', true)). +answer('urn:example:complies'('urn:example:alice1391', true)). +answer('urn:example:complies'('urn:example:alice1392', true)). +answer('urn:example:complies'('urn:example:alice1393', true)). +answer('urn:example:complies'('urn:example:alice1394', true)). +answer('urn:example:complies'('urn:example:alice1395', true)). +answer('urn:example:complies'('urn:example:alice1396', true)). +answer('urn:example:complies'('urn:example:alice1397', true)). +answer('urn:example:complies'('urn:example:alice1398', true)). +answer('urn:example:complies'('urn:example:alice1399', true)). +answer('urn:example:complies'('urn:example:alice1400', true)). +answer('urn:example:complies'('urn:example:alice1401', true)). +answer('urn:example:complies'('urn:example:alice1402', true)). +answer('urn:example:complies'('urn:example:alice1403', true)). +answer('urn:example:complies'('urn:example:alice1404', true)). +answer('urn:example:complies'('urn:example:alice1405', true)). +answer('urn:example:complies'('urn:example:alice1406', true)). +answer('urn:example:complies'('urn:example:alice1407', true)). +answer('urn:example:complies'('urn:example:alice1408', true)). +answer('urn:example:complies'('urn:example:alice1409', true)). +answer('urn:example:complies'('urn:example:alice1410', true)). +answer('urn:example:complies'('urn:example:alice1411', true)). +answer('urn:example:complies'('urn:example:alice1412', true)). +answer('urn:example:complies'('urn:example:alice1413', true)). +answer('urn:example:complies'('urn:example:alice1414', true)). +answer('urn:example:complies'('urn:example:alice1415', true)). +answer('urn:example:complies'('urn:example:alice1416', true)). +answer('urn:example:complies'('urn:example:alice1417', true)). +answer('urn:example:complies'('urn:example:alice1418', true)). +answer('urn:example:complies'('urn:example:alice1419', true)). +answer('urn:example:complies'('urn:example:alice1420', true)). +answer('urn:example:complies'('urn:example:alice1421', true)). +answer('urn:example:complies'('urn:example:alice1422', true)). +answer('urn:example:complies'('urn:example:alice1423', true)). +answer('urn:example:complies'('urn:example:alice1424', true)). +answer('urn:example:complies'('urn:example:alice1425', true)). +answer('urn:example:complies'('urn:example:alice1426', true)). +answer('urn:example:complies'('urn:example:alice1427', true)). +answer('urn:example:complies'('urn:example:alice1428', true)). +answer('urn:example:complies'('urn:example:alice1429', true)). +answer('urn:example:complies'('urn:example:alice1430', true)). +answer('urn:example:complies'('urn:example:alice1431', true)). +answer('urn:example:complies'('urn:example:alice1432', true)). +answer('urn:example:complies'('urn:example:alice1433', true)). +answer('urn:example:complies'('urn:example:alice1434', true)). +answer('urn:example:complies'('urn:example:alice1435', true)). +answer('urn:example:complies'('urn:example:alice1436', true)). +answer('urn:example:complies'('urn:example:alice1437', true)). +answer('urn:example:complies'('urn:example:alice1438', true)). +answer('urn:example:complies'('urn:example:alice1439', true)). +answer('urn:example:complies'('urn:example:alice1440', true)). +answer('urn:example:complies'('urn:example:alice1441', true)). +answer('urn:example:complies'('urn:example:alice1442', true)). +answer('urn:example:complies'('urn:example:alice1443', true)). +answer('urn:example:complies'('urn:example:alice1444', true)). +answer('urn:example:complies'('urn:example:alice1445', true)). +answer('urn:example:complies'('urn:example:alice1446', true)). +answer('urn:example:complies'('urn:example:alice1447', true)). +answer('urn:example:complies'('urn:example:alice1448', true)). +answer('urn:example:complies'('urn:example:alice1449', true)). +answer('urn:example:complies'('urn:example:alice1450', true)). +answer('urn:example:complies'('urn:example:alice1451', true)). +answer('urn:example:complies'('urn:example:alice1452', true)). +answer('urn:example:complies'('urn:example:alice1453', true)). +answer('urn:example:complies'('urn:example:alice1454', true)). +answer('urn:example:complies'('urn:example:alice1455', true)). +answer('urn:example:complies'('urn:example:alice1456', true)). +answer('urn:example:complies'('urn:example:alice1457', true)). +answer('urn:example:complies'('urn:example:alice1458', true)). +answer('urn:example:complies'('urn:example:alice1459', true)). +answer('urn:example:complies'('urn:example:alice1460', true)). +answer('urn:example:complies'('urn:example:alice1461', true)). +answer('urn:example:complies'('urn:example:alice1462', true)). +answer('urn:example:complies'('urn:example:alice1463', true)). +answer('urn:example:complies'('urn:example:alice1464', true)). +answer('urn:example:complies'('urn:example:alice1465', true)). +answer('urn:example:complies'('urn:example:alice1466', true)). +answer('urn:example:complies'('urn:example:alice1467', true)). +answer('urn:example:complies'('urn:example:alice1468', true)). +answer('urn:example:complies'('urn:example:alice1469', true)). +answer('urn:example:complies'('urn:example:alice1470', true)). +answer('urn:example:complies'('urn:example:alice1471', true)). +answer('urn:example:complies'('urn:example:alice1472', true)). +answer('urn:example:complies'('urn:example:alice1473', true)). +answer('urn:example:complies'('urn:example:alice1474', true)). +answer('urn:example:complies'('urn:example:alice1475', true)). +answer('urn:example:complies'('urn:example:alice1476', true)). +answer('urn:example:complies'('urn:example:alice1477', true)). +answer('urn:example:complies'('urn:example:alice1478', true)). +answer('urn:example:complies'('urn:example:alice1479', true)). +answer('urn:example:complies'('urn:example:alice1480', true)). +answer('urn:example:complies'('urn:example:alice1481', true)). +answer('urn:example:complies'('urn:example:alice1482', true)). +answer('urn:example:complies'('urn:example:alice1483', true)). +answer('urn:example:complies'('urn:example:alice1484', true)). +answer('urn:example:complies'('urn:example:alice1485', true)). +answer('urn:example:complies'('urn:example:alice1486', true)). +answer('urn:example:complies'('urn:example:alice1487', true)). +answer('urn:example:complies'('urn:example:alice1488', true)). +answer('urn:example:complies'('urn:example:alice1489', true)). +answer('urn:example:complies'('urn:example:alice1490', true)). +answer('urn:example:complies'('urn:example:alice1491', true)). +answer('urn:example:complies'('urn:example:alice1492', true)). +answer('urn:example:complies'('urn:example:alice1493', true)). +answer('urn:example:complies'('urn:example:alice1494', true)). +answer('urn:example:complies'('urn:example:alice1495', true)). +answer('urn:example:complies'('urn:example:alice1496', true)). +answer('urn:example:complies'('urn:example:alice1497', true)). +answer('urn:example:complies'('urn:example:alice1498', true)). +answer('urn:example:complies'('urn:example:alice1499', true)). +answer('urn:example:complies'('urn:example:alice1500', true)). +answer('urn:example:complies'('urn:example:alice1501', true)). +answer('urn:example:complies'('urn:example:alice1502', true)). +answer('urn:example:complies'('urn:example:alice1503', true)). +answer('urn:example:complies'('urn:example:alice1504', true)). +answer('urn:example:complies'('urn:example:alice1505', true)). +answer('urn:example:complies'('urn:example:alice1506', true)). +answer('urn:example:complies'('urn:example:alice1507', true)). +answer('urn:example:complies'('urn:example:alice1508', true)). +answer('urn:example:complies'('urn:example:alice1509', true)). +answer('urn:example:complies'('urn:example:alice1510', true)). +answer('urn:example:complies'('urn:example:alice1511', true)). +answer('urn:example:complies'('urn:example:alice1512', true)). +answer('urn:example:complies'('urn:example:alice1513', true)). +answer('urn:example:complies'('urn:example:alice1514', true)). +answer('urn:example:complies'('urn:example:alice1515', true)). +answer('urn:example:complies'('urn:example:alice1516', true)). +answer('urn:example:complies'('urn:example:alice1517', true)). +answer('urn:example:complies'('urn:example:alice1518', true)). +answer('urn:example:complies'('urn:example:alice1519', true)). +answer('urn:example:complies'('urn:example:alice1520', true)). +answer('urn:example:complies'('urn:example:alice1521', true)). +answer('urn:example:complies'('urn:example:alice1522', true)). +answer('urn:example:complies'('urn:example:alice1523', true)). +answer('urn:example:complies'('urn:example:alice1524', true)). +answer('urn:example:complies'('urn:example:alice1525', true)). +answer('urn:example:complies'('urn:example:alice1526', true)). +answer('urn:example:complies'('urn:example:alice1527', true)). +answer('urn:example:complies'('urn:example:alice1528', true)). +answer('urn:example:complies'('urn:example:alice1529', true)). +answer('urn:example:complies'('urn:example:alice1530', true)). +answer('urn:example:complies'('urn:example:alice1531', true)). +answer('urn:example:complies'('urn:example:alice1532', true)). +answer('urn:example:complies'('urn:example:alice1533', true)). +answer('urn:example:complies'('urn:example:alice1534', true)). +answer('urn:example:complies'('urn:example:alice1535', true)). +answer('urn:example:complies'('urn:example:alice1536', true)). +answer('urn:example:complies'('urn:example:alice1537', true)). +answer('urn:example:complies'('urn:example:alice1538', true)). +answer('urn:example:complies'('urn:example:alice1539', true)). +answer('urn:example:complies'('urn:example:alice1540', true)). +answer('urn:example:complies'('urn:example:alice1541', true)). +answer('urn:example:complies'('urn:example:alice1542', true)). +answer('urn:example:complies'('urn:example:alice1543', true)). +answer('urn:example:complies'('urn:example:alice1544', true)). +answer('urn:example:complies'('urn:example:alice1545', true)). +answer('urn:example:complies'('urn:example:alice1546', true)). +answer('urn:example:complies'('urn:example:alice1547', true)). +answer('urn:example:complies'('urn:example:alice1548', true)). +answer('urn:example:complies'('urn:example:alice1549', true)). +answer('urn:example:complies'('urn:example:alice1550', true)). +answer('urn:example:complies'('urn:example:alice1551', true)). +answer('urn:example:complies'('urn:example:alice1552', true)). +answer('urn:example:complies'('urn:example:alice1553', true)). +answer('urn:example:complies'('urn:example:alice1554', true)). +answer('urn:example:complies'('urn:example:alice1555', true)). +answer('urn:example:complies'('urn:example:alice1556', true)). +answer('urn:example:complies'('urn:example:alice1557', true)). +answer('urn:example:complies'('urn:example:alice1558', true)). +answer('urn:example:complies'('urn:example:alice1559', true)). +answer('urn:example:complies'('urn:example:alice1560', true)). +answer('urn:example:complies'('urn:example:alice1561', true)). +answer('urn:example:complies'('urn:example:alice1562', true)). +answer('urn:example:complies'('urn:example:alice1563', true)). +answer('urn:example:complies'('urn:example:alice1564', true)). +answer('urn:example:complies'('urn:example:alice1565', true)). +answer('urn:example:complies'('urn:example:alice1566', true)). +answer('urn:example:complies'('urn:example:alice1567', true)). +answer('urn:example:complies'('urn:example:alice1568', true)). +answer('urn:example:complies'('urn:example:alice1569', true)). +answer('urn:example:complies'('urn:example:alice1570', true)). +answer('urn:example:complies'('urn:example:alice1571', true)). +answer('urn:example:complies'('urn:example:alice1572', true)). +answer('urn:example:complies'('urn:example:alice1573', true)). +answer('urn:example:complies'('urn:example:alice1574', true)). +answer('urn:example:complies'('urn:example:alice1575', true)). +answer('urn:example:complies'('urn:example:alice1576', true)). +answer('urn:example:complies'('urn:example:alice1577', true)). +answer('urn:example:complies'('urn:example:alice1578', true)). +answer('urn:example:complies'('urn:example:alice1579', true)). +answer('urn:example:complies'('urn:example:alice1580', true)). +answer('urn:example:complies'('urn:example:alice1581', true)). +answer('urn:example:complies'('urn:example:alice1582', true)). +answer('urn:example:complies'('urn:example:alice1583', true)). +answer('urn:example:complies'('urn:example:alice1584', true)). +answer('urn:example:complies'('urn:example:alice1585', true)). +answer('urn:example:complies'('urn:example:alice1586', true)). +answer('urn:example:complies'('urn:example:alice1587', true)). +answer('urn:example:complies'('urn:example:alice1588', true)). +answer('urn:example:complies'('urn:example:alice1589', true)). +answer('urn:example:complies'('urn:example:alice1590', true)). +answer('urn:example:complies'('urn:example:alice1591', true)). +answer('urn:example:complies'('urn:example:alice1592', true)). +answer('urn:example:complies'('urn:example:alice1593', true)). +answer('urn:example:complies'('urn:example:alice1594', true)). +answer('urn:example:complies'('urn:example:alice1595', true)). +answer('urn:example:complies'('urn:example:alice1596', true)). +answer('urn:example:complies'('urn:example:alice1597', true)). +answer('urn:example:complies'('urn:example:alice1598', true)). +answer('urn:example:complies'('urn:example:alice1599', true)). +answer('urn:example:complies'('urn:example:alice1600', true)). +answer('urn:example:complies'('urn:example:alice1601', true)). +answer('urn:example:complies'('urn:example:alice1602', true)). +answer('urn:example:complies'('urn:example:alice1603', true)). +answer('urn:example:complies'('urn:example:alice1604', true)). +answer('urn:example:complies'('urn:example:alice1605', true)). +answer('urn:example:complies'('urn:example:alice1606', true)). +answer('urn:example:complies'('urn:example:alice1607', true)). +answer('urn:example:complies'('urn:example:alice1608', true)). +answer('urn:example:complies'('urn:example:alice1609', true)). +answer('urn:example:complies'('urn:example:alice1610', true)). +answer('urn:example:complies'('urn:example:alice1611', true)). +answer('urn:example:complies'('urn:example:alice1612', true)). +answer('urn:example:complies'('urn:example:alice1613', true)). +answer('urn:example:complies'('urn:example:alice1614', true)). +answer('urn:example:complies'('urn:example:alice1615', true)). +answer('urn:example:complies'('urn:example:alice1616', true)). +answer('urn:example:complies'('urn:example:alice1617', true)). +answer('urn:example:complies'('urn:example:alice1618', true)). +answer('urn:example:complies'('urn:example:alice1619', true)). +answer('urn:example:complies'('urn:example:alice1620', true)). +answer('urn:example:complies'('urn:example:alice1621', true)). +answer('urn:example:complies'('urn:example:alice1622', true)). +answer('urn:example:complies'('urn:example:alice1623', true)). +answer('urn:example:complies'('urn:example:alice1624', true)). +answer('urn:example:complies'('urn:example:alice1625', true)). +answer('urn:example:complies'('urn:example:alice1626', true)). +answer('urn:example:complies'('urn:example:alice1627', true)). +answer('urn:example:complies'('urn:example:alice1628', true)). +answer('urn:example:complies'('urn:example:alice1629', true)). +answer('urn:example:complies'('urn:example:alice1630', true)). +answer('urn:example:complies'('urn:example:alice1631', true)). +answer('urn:example:complies'('urn:example:alice1632', true)). +answer('urn:example:complies'('urn:example:alice1633', true)). +answer('urn:example:complies'('urn:example:alice1634', true)). +answer('urn:example:complies'('urn:example:alice1635', true)). +answer('urn:example:complies'('urn:example:alice1636', true)). +answer('urn:example:complies'('urn:example:alice1637', true)). +answer('urn:example:complies'('urn:example:alice1638', true)). +answer('urn:example:complies'('urn:example:alice1639', true)). +answer('urn:example:complies'('urn:example:alice1640', true)). +answer('urn:example:complies'('urn:example:alice1641', true)). +answer('urn:example:complies'('urn:example:alice1642', true)). +answer('urn:example:complies'('urn:example:alice1643', true)). +answer('urn:example:complies'('urn:example:alice1644', true)). +answer('urn:example:complies'('urn:example:alice1645', true)). +answer('urn:example:complies'('urn:example:alice1646', true)). +answer('urn:example:complies'('urn:example:alice1647', true)). +answer('urn:example:complies'('urn:example:alice1648', true)). +answer('urn:example:complies'('urn:example:alice1649', true)). +answer('urn:example:complies'('urn:example:alice1650', true)). +answer('urn:example:complies'('urn:example:alice1651', true)). +answer('urn:example:complies'('urn:example:alice1652', true)). +answer('urn:example:complies'('urn:example:alice1653', true)). +answer('urn:example:complies'('urn:example:alice1654', true)). +answer('urn:example:complies'('urn:example:alice1655', true)). +answer('urn:example:complies'('urn:example:alice1656', true)). +answer('urn:example:complies'('urn:example:alice1657', true)). +answer('urn:example:complies'('urn:example:alice1658', true)). +answer('urn:example:complies'('urn:example:alice1659', true)). +answer('urn:example:complies'('urn:example:alice1660', true)). +answer('urn:example:complies'('urn:example:alice1661', true)). +answer('urn:example:complies'('urn:example:alice1662', true)). +answer('urn:example:complies'('urn:example:alice1663', true)). +answer('urn:example:complies'('urn:example:alice1664', true)). +answer('urn:example:complies'('urn:example:alice1665', true)). +answer('urn:example:complies'('urn:example:alice1666', true)). +answer('urn:example:complies'('urn:example:alice1667', true)). +answer('urn:example:complies'('urn:example:alice1668', true)). +answer('urn:example:complies'('urn:example:alice1669', true)). +answer('urn:example:complies'('urn:example:alice1670', true)). +answer('urn:example:complies'('urn:example:alice1671', true)). +answer('urn:example:complies'('urn:example:alice1672', true)). +answer('urn:example:complies'('urn:example:alice1673', true)). +answer('urn:example:complies'('urn:example:alice1674', true)). +answer('urn:example:complies'('urn:example:alice1675', true)). +answer('urn:example:complies'('urn:example:alice1676', true)). +answer('urn:example:complies'('urn:example:alice1677', true)). +answer('urn:example:complies'('urn:example:alice1678', true)). +answer('urn:example:complies'('urn:example:alice1679', true)). +answer('urn:example:complies'('urn:example:alice1680', true)). +answer('urn:example:complies'('urn:example:alice1681', true)). +answer('urn:example:complies'('urn:example:alice1682', true)). +answer('urn:example:complies'('urn:example:alice1683', true)). +answer('urn:example:complies'('urn:example:alice1684', true)). +answer('urn:example:complies'('urn:example:alice1685', true)). +answer('urn:example:complies'('urn:example:alice1686', true)). +answer('urn:example:complies'('urn:example:alice1687', true)). +answer('urn:example:complies'('urn:example:alice1688', true)). +answer('urn:example:complies'('urn:example:alice1689', true)). +answer('urn:example:complies'('urn:example:alice1690', true)). +answer('urn:example:complies'('urn:example:alice1691', true)). +answer('urn:example:complies'('urn:example:alice1692', true)). +answer('urn:example:complies'('urn:example:alice1693', true)). +answer('urn:example:complies'('urn:example:alice1694', true)). +answer('urn:example:complies'('urn:example:alice1695', true)). +answer('urn:example:complies'('urn:example:alice1696', true)). +answer('urn:example:complies'('urn:example:alice1697', true)). +answer('urn:example:complies'('urn:example:alice1698', true)). +answer('urn:example:complies'('urn:example:alice1699', true)). +answer('urn:example:complies'('urn:example:alice1700', true)). +answer('urn:example:complies'('urn:example:alice1701', true)). +answer('urn:example:complies'('urn:example:alice1702', true)). +answer('urn:example:complies'('urn:example:alice1703', true)). +answer('urn:example:complies'('urn:example:alice1704', true)). +answer('urn:example:complies'('urn:example:alice1705', true)). +answer('urn:example:complies'('urn:example:alice1706', true)). +answer('urn:example:complies'('urn:example:alice1707', true)). +answer('urn:example:complies'('urn:example:alice1708', true)). +answer('urn:example:complies'('urn:example:alice1709', true)). +answer('urn:example:complies'('urn:example:alice1710', true)). +answer('urn:example:complies'('urn:example:alice1711', true)). +answer('urn:example:complies'('urn:example:alice1712', true)). +answer('urn:example:complies'('urn:example:alice1713', true)). +answer('urn:example:complies'('urn:example:alice1714', true)). +answer('urn:example:complies'('urn:example:alice1715', true)). +answer('urn:example:complies'('urn:example:alice1716', true)). +answer('urn:example:complies'('urn:example:alice1717', true)). +answer('urn:example:complies'('urn:example:alice1718', true)). +answer('urn:example:complies'('urn:example:alice1719', true)). +answer('urn:example:complies'('urn:example:alice1720', true)). +answer('urn:example:complies'('urn:example:alice1721', true)). +answer('urn:example:complies'('urn:example:alice1722', true)). +answer('urn:example:complies'('urn:example:alice1723', true)). +answer('urn:example:complies'('urn:example:alice1724', true)). +answer('urn:example:complies'('urn:example:alice1725', true)). +answer('urn:example:complies'('urn:example:alice1726', true)). +answer('urn:example:complies'('urn:example:alice1727', true)). +answer('urn:example:complies'('urn:example:alice1728', true)). +answer('urn:example:complies'('urn:example:alice1729', true)). +answer('urn:example:complies'('urn:example:alice1730', true)). +answer('urn:example:complies'('urn:example:alice1731', true)). +answer('urn:example:complies'('urn:example:alice1732', true)). +answer('urn:example:complies'('urn:example:alice1733', true)). +answer('urn:example:complies'('urn:example:alice1734', true)). +answer('urn:example:complies'('urn:example:alice1735', true)). +answer('urn:example:complies'('urn:example:alice1736', true)). +answer('urn:example:complies'('urn:example:alice1737', true)). +answer('urn:example:complies'('urn:example:alice1738', true)). +answer('urn:example:complies'('urn:example:alice1739', true)). +answer('urn:example:complies'('urn:example:alice1740', true)). +answer('urn:example:complies'('urn:example:alice1741', true)). +answer('urn:example:complies'('urn:example:alice1742', true)). +answer('urn:example:complies'('urn:example:alice1743', true)). +answer('urn:example:complies'('urn:example:alice1744', true)). +answer('urn:example:complies'('urn:example:alice1745', true)). +answer('urn:example:complies'('urn:example:alice1746', true)). +answer('urn:example:complies'('urn:example:alice1747', true)). +answer('urn:example:complies'('urn:example:alice1748', true)). +answer('urn:example:complies'('urn:example:alice1749', true)). +answer('urn:example:complies'('urn:example:alice1750', true)). +answer('urn:example:complies'('urn:example:alice1751', true)). +answer('urn:example:complies'('urn:example:alice1752', true)). +answer('urn:example:complies'('urn:example:alice1753', true)). +answer('urn:example:complies'('urn:example:alice1754', true)). +answer('urn:example:complies'('urn:example:alice1755', true)). +answer('urn:example:complies'('urn:example:alice1756', true)). +answer('urn:example:complies'('urn:example:alice1757', true)). +answer('urn:example:complies'('urn:example:alice1758', true)). +answer('urn:example:complies'('urn:example:alice1759', true)). +answer('urn:example:complies'('urn:example:alice1760', true)). +answer('urn:example:complies'('urn:example:alice1761', true)). +answer('urn:example:complies'('urn:example:alice1762', true)). +answer('urn:example:complies'('urn:example:alice1763', true)). +answer('urn:example:complies'('urn:example:alice1764', true)). +answer('urn:example:complies'('urn:example:alice1765', true)). +answer('urn:example:complies'('urn:example:alice1766', true)). +answer('urn:example:complies'('urn:example:alice1767', true)). +answer('urn:example:complies'('urn:example:alice1768', true)). +answer('urn:example:complies'('urn:example:alice1769', true)). +answer('urn:example:complies'('urn:example:alice1770', true)). +answer('urn:example:complies'('urn:example:alice1771', true)). +answer('urn:example:complies'('urn:example:alice1772', true)). +answer('urn:example:complies'('urn:example:alice1773', true)). +answer('urn:example:complies'('urn:example:alice1774', true)). +answer('urn:example:complies'('urn:example:alice1775', true)). +answer('urn:example:complies'('urn:example:alice1776', true)). +answer('urn:example:complies'('urn:example:alice1777', true)). +answer('urn:example:complies'('urn:example:alice1778', true)). +answer('urn:example:complies'('urn:example:alice1779', true)). +answer('urn:example:complies'('urn:example:alice1780', true)). +answer('urn:example:complies'('urn:example:alice1781', true)). +answer('urn:example:complies'('urn:example:alice1782', true)). +answer('urn:example:complies'('urn:example:alice1783', true)). +answer('urn:example:complies'('urn:example:alice1784', true)). +answer('urn:example:complies'('urn:example:alice1785', true)). +answer('urn:example:complies'('urn:example:alice1786', true)). +answer('urn:example:complies'('urn:example:alice1787', true)). +answer('urn:example:complies'('urn:example:alice1788', true)). +answer('urn:example:complies'('urn:example:alice1789', true)). +answer('urn:example:complies'('urn:example:alice1790', true)). +answer('urn:example:complies'('urn:example:alice1791', true)). +answer('urn:example:complies'('urn:example:alice1792', true)). +answer('urn:example:complies'('urn:example:alice1793', true)). +answer('urn:example:complies'('urn:example:alice1794', true)). +answer('urn:example:complies'('urn:example:alice1795', true)). +answer('urn:example:complies'('urn:example:alice1796', true)). +answer('urn:example:complies'('urn:example:alice1797', true)). +answer('urn:example:complies'('urn:example:alice1798', true)). +answer('urn:example:complies'('urn:example:alice1799', true)). +answer('urn:example:complies'('urn:example:alice1800', true)). +answer('urn:example:complies'('urn:example:alice1801', true)). +answer('urn:example:complies'('urn:example:alice1802', true)). +answer('urn:example:complies'('urn:example:alice1803', true)). +answer('urn:example:complies'('urn:example:alice1804', true)). +answer('urn:example:complies'('urn:example:alice1805', true)). +answer('urn:example:complies'('urn:example:alice1806', true)). +answer('urn:example:complies'('urn:example:alice1807', true)). +answer('urn:example:complies'('urn:example:alice1808', true)). +answer('urn:example:complies'('urn:example:alice1809', true)). +answer('urn:example:complies'('urn:example:alice1810', true)). +answer('urn:example:complies'('urn:example:alice1811', true)). +answer('urn:example:complies'('urn:example:alice1812', true)). +answer('urn:example:complies'('urn:example:alice1813', true)). +answer('urn:example:complies'('urn:example:alice1814', true)). +answer('urn:example:complies'('urn:example:alice1815', true)). +answer('urn:example:complies'('urn:example:alice1816', true)). +answer('urn:example:complies'('urn:example:alice1817', true)). +answer('urn:example:complies'('urn:example:alice1818', true)). +answer('urn:example:complies'('urn:example:alice1819', true)). +answer('urn:example:complies'('urn:example:alice1820', true)). +answer('urn:example:complies'('urn:example:alice1821', true)). +answer('urn:example:complies'('urn:example:alice1822', true)). +answer('urn:example:complies'('urn:example:alice1823', true)). +answer('urn:example:complies'('urn:example:alice1824', true)). +answer('urn:example:complies'('urn:example:alice1825', true)). +answer('urn:example:complies'('urn:example:alice1826', true)). +answer('urn:example:complies'('urn:example:alice1827', true)). +answer('urn:example:complies'('urn:example:alice1828', true)). +answer('urn:example:complies'('urn:example:alice1829', true)). +answer('urn:example:complies'('urn:example:alice1830', true)). +answer('urn:example:complies'('urn:example:alice1831', true)). +answer('urn:example:complies'('urn:example:alice1832', true)). +answer('urn:example:complies'('urn:example:alice1833', true)). +answer('urn:example:complies'('urn:example:alice1834', true)). +answer('urn:example:complies'('urn:example:alice1835', true)). +answer('urn:example:complies'('urn:example:alice1836', true)). +answer('urn:example:complies'('urn:example:alice1837', true)). +answer('urn:example:complies'('urn:example:alice1838', true)). +answer('urn:example:complies'('urn:example:alice1839', true)). +answer('urn:example:complies'('urn:example:alice1840', true)). +answer('urn:example:complies'('urn:example:alice1841', true)). +answer('urn:example:complies'('urn:example:alice1842', true)). +answer('urn:example:complies'('urn:example:alice1843', true)). +answer('urn:example:complies'('urn:example:alice1844', true)). +answer('urn:example:complies'('urn:example:alice1845', true)). +answer('urn:example:complies'('urn:example:alice1846', true)). +answer('urn:example:complies'('urn:example:alice1847', true)). +answer('urn:example:complies'('urn:example:alice1848', true)). +answer('urn:example:complies'('urn:example:alice1849', true)). +answer('urn:example:complies'('urn:example:alice1850', true)). +answer('urn:example:complies'('urn:example:alice1851', true)). +answer('urn:example:complies'('urn:example:alice1852', true)). +answer('urn:example:complies'('urn:example:alice1853', true)). +answer('urn:example:complies'('urn:example:alice1854', true)). +answer('urn:example:complies'('urn:example:alice1855', true)). +answer('urn:example:complies'('urn:example:alice1856', true)). +answer('urn:example:complies'('urn:example:alice1857', true)). +answer('urn:example:complies'('urn:example:alice1858', true)). +answer('urn:example:complies'('urn:example:alice1859', true)). +answer('urn:example:complies'('urn:example:alice1860', true)). +answer('urn:example:complies'('urn:example:alice1861', true)). +answer('urn:example:complies'('urn:example:alice1862', true)). +answer('urn:example:complies'('urn:example:alice1863', true)). +answer('urn:example:complies'('urn:example:alice1864', true)). +answer('urn:example:complies'('urn:example:alice1865', true)). +answer('urn:example:complies'('urn:example:alice1866', true)). +answer('urn:example:complies'('urn:example:alice1867', true)). +answer('urn:example:complies'('urn:example:alice1868', true)). +answer('urn:example:complies'('urn:example:alice1869', true)). +answer('urn:example:complies'('urn:example:alice1870', true)). +answer('urn:example:complies'('urn:example:alice1871', true)). +answer('urn:example:complies'('urn:example:alice1872', true)). +answer('urn:example:complies'('urn:example:alice1873', true)). +answer('urn:example:complies'('urn:example:alice1874', true)). +answer('urn:example:complies'('urn:example:alice1875', true)). +answer('urn:example:complies'('urn:example:alice1876', true)). +answer('urn:example:complies'('urn:example:alice1877', true)). +answer('urn:example:complies'('urn:example:alice1878', true)). +answer('urn:example:complies'('urn:example:alice1879', true)). +answer('urn:example:complies'('urn:example:alice1880', true)). +answer('urn:example:complies'('urn:example:alice1881', true)). +answer('urn:example:complies'('urn:example:alice1882', true)). +answer('urn:example:complies'('urn:example:alice1883', true)). +answer('urn:example:complies'('urn:example:alice1884', true)). +answer('urn:example:complies'('urn:example:alice1885', true)). +answer('urn:example:complies'('urn:example:alice1886', true)). +answer('urn:example:complies'('urn:example:alice1887', true)). +answer('urn:example:complies'('urn:example:alice1888', true)). +answer('urn:example:complies'('urn:example:alice1889', true)). +answer('urn:example:complies'('urn:example:alice1890', true)). +answer('urn:example:complies'('urn:example:alice1891', true)). +answer('urn:example:complies'('urn:example:alice1892', true)). +answer('urn:example:complies'('urn:example:alice1893', true)). +answer('urn:example:complies'('urn:example:alice1894', true)). +answer('urn:example:complies'('urn:example:alice1895', true)). +answer('urn:example:complies'('urn:example:alice1896', true)). +answer('urn:example:complies'('urn:example:alice1897', true)). +answer('urn:example:complies'('urn:example:alice1898', true)). +answer('urn:example:complies'('urn:example:alice1899', true)). +answer('urn:example:complies'('urn:example:alice1900', true)). +answer('urn:example:complies'('urn:example:alice1901', true)). +answer('urn:example:complies'('urn:example:alice1902', true)). +answer('urn:example:complies'('urn:example:alice1903', true)). +answer('urn:example:complies'('urn:example:alice1904', true)). +answer('urn:example:complies'('urn:example:alice1905', true)). +answer('urn:example:complies'('urn:example:alice1906', true)). +answer('urn:example:complies'('urn:example:alice1907', true)). +answer('urn:example:complies'('urn:example:alice1908', true)). +answer('urn:example:complies'('urn:example:alice1909', true)). +answer('urn:example:complies'('urn:example:alice1910', true)). +answer('urn:example:complies'('urn:example:alice1911', true)). +answer('urn:example:complies'('urn:example:alice1912', true)). +answer('urn:example:complies'('urn:example:alice1913', true)). +answer('urn:example:complies'('urn:example:alice1914', true)). +answer('urn:example:complies'('urn:example:alice1915', true)). +answer('urn:example:complies'('urn:example:alice1916', true)). +answer('urn:example:complies'('urn:example:alice1917', true)). +answer('urn:example:complies'('urn:example:alice1918', true)). +answer('urn:example:complies'('urn:example:alice1919', true)). +answer('urn:example:complies'('urn:example:alice1920', true)). +answer('urn:example:complies'('urn:example:alice1921', true)). +answer('urn:example:complies'('urn:example:alice1922', true)). +answer('urn:example:complies'('urn:example:alice1923', true)). +answer('urn:example:complies'('urn:example:alice1924', true)). +answer('urn:example:complies'('urn:example:alice1925', true)). +answer('urn:example:complies'('urn:example:alice1926', true)). +answer('urn:example:complies'('urn:example:alice1927', true)). +answer('urn:example:complies'('urn:example:alice1928', true)). +answer('urn:example:complies'('urn:example:alice1929', true)). +answer('urn:example:complies'('urn:example:alice1930', true)). +answer('urn:example:complies'('urn:example:alice1931', true)). +answer('urn:example:complies'('urn:example:alice1932', true)). +answer('urn:example:complies'('urn:example:alice1933', true)). +answer('urn:example:complies'('urn:example:alice1934', true)). +answer('urn:example:complies'('urn:example:alice1935', true)). +answer('urn:example:complies'('urn:example:alice1936', true)). +answer('urn:example:complies'('urn:example:alice1937', true)). +answer('urn:example:complies'('urn:example:alice1938', true)). +answer('urn:example:complies'('urn:example:alice1939', true)). +answer('urn:example:complies'('urn:example:alice1940', true)). +answer('urn:example:complies'('urn:example:alice1941', true)). +answer('urn:example:complies'('urn:example:alice1942', true)). +answer('urn:example:complies'('urn:example:alice1943', true)). +answer('urn:example:complies'('urn:example:alice1944', true)). +answer('urn:example:complies'('urn:example:alice1945', true)). +answer('urn:example:complies'('urn:example:alice1946', true)). +answer('urn:example:complies'('urn:example:alice1947', true)). +answer('urn:example:complies'('urn:example:alice1948', true)). +answer('urn:example:complies'('urn:example:alice1949', true)). +answer('urn:example:complies'('urn:example:alice1950', true)). +answer('urn:example:complies'('urn:example:alice1951', true)). +answer('urn:example:complies'('urn:example:alice1952', true)). +answer('urn:example:complies'('urn:example:alice1953', true)). +answer('urn:example:complies'('urn:example:alice1954', true)). +answer('urn:example:complies'('urn:example:alice1955', true)). +answer('urn:example:complies'('urn:example:alice1956', true)). +answer('urn:example:complies'('urn:example:alice1957', true)). +answer('urn:example:complies'('urn:example:alice1958', true)). +answer('urn:example:complies'('urn:example:alice1959', true)). +answer('urn:example:complies'('urn:example:alice1960', true)). +answer('urn:example:complies'('urn:example:alice1961', true)). +answer('urn:example:complies'('urn:example:alice1962', true)). +answer('urn:example:complies'('urn:example:alice1963', true)). +answer('urn:example:complies'('urn:example:alice1964', true)). +answer('urn:example:complies'('urn:example:alice1965', true)). +answer('urn:example:complies'('urn:example:alice1966', true)). +answer('urn:example:complies'('urn:example:alice1967', true)). +answer('urn:example:complies'('urn:example:alice1968', true)). +answer('urn:example:complies'('urn:example:alice1969', true)). +answer('urn:example:complies'('urn:example:alice1970', true)). +answer('urn:example:complies'('urn:example:alice1971', true)). +answer('urn:example:complies'('urn:example:alice1972', true)). +answer('urn:example:complies'('urn:example:alice1973', true)). +answer('urn:example:complies'('urn:example:alice1974', true)). +answer('urn:example:complies'('urn:example:alice1975', true)). +answer('urn:example:complies'('urn:example:alice1976', true)). +answer('urn:example:complies'('urn:example:alice1977', true)). +answer('urn:example:complies'('urn:example:alice1978', true)). +answer('urn:example:complies'('urn:example:alice1979', true)). +answer('urn:example:complies'('urn:example:alice1980', true)). +answer('urn:example:complies'('urn:example:alice1981', true)). +answer('urn:example:complies'('urn:example:alice1982', true)). +answer('urn:example:complies'('urn:example:alice1983', true)). +answer('urn:example:complies'('urn:example:alice1984', true)). +answer('urn:example:complies'('urn:example:alice1985', true)). +answer('urn:example:complies'('urn:example:alice1986', true)). +answer('urn:example:complies'('urn:example:alice1987', true)). +answer('urn:example:complies'('urn:example:alice1988', true)). +answer('urn:example:complies'('urn:example:alice1989', true)). +answer('urn:example:complies'('urn:example:alice1990', true)). +answer('urn:example:complies'('urn:example:alice1991', true)). +answer('urn:example:complies'('urn:example:alice1992', true)). +answer('urn:example:complies'('urn:example:alice1993', true)). +answer('urn:example:complies'('urn:example:alice1994', true)). +answer('urn:example:complies'('urn:example:alice1995', true)). +answer('urn:example:complies'('urn:example:alice1996', true)). +answer('urn:example:complies'('urn:example:alice1997', true)). +answer('urn:example:complies'('urn:example:alice1998', true)). +answer('urn:example:complies'('urn:example:alice1999', true)). +answer('urn:example:complies'('urn:example:alice2000', true)). +answer('urn:example:complies'('urn:example:alice2001', true)). +answer('urn:example:complies'('urn:example:alice2002', true)). +answer('urn:example:complies'('urn:example:alice2003', true)). +answer('urn:example:complies'('urn:example:alice2004', true)). +answer('urn:example:complies'('urn:example:alice2005', true)). +answer('urn:example:complies'('urn:example:alice2006', true)). +answer('urn:example:complies'('urn:example:alice2007', true)). +answer('urn:example:complies'('urn:example:alice2008', true)). +answer('urn:example:complies'('urn:example:alice2009', true)). +answer('urn:example:complies'('urn:example:alice2010', true)). +answer('urn:example:complies'('urn:example:alice2011', true)). +answer('urn:example:complies'('urn:example:alice2012', true)). +answer('urn:example:complies'('urn:example:alice2013', true)). +answer('urn:example:complies'('urn:example:alice2014', true)). +answer('urn:example:complies'('urn:example:alice2015', true)). +answer('urn:example:complies'('urn:example:alice2016', true)). +answer('urn:example:complies'('urn:example:alice2017', true)). +answer('urn:example:complies'('urn:example:alice2018', true)). +answer('urn:example:complies'('urn:example:alice2019', true)). +answer('urn:example:complies'('urn:example:alice2020', true)). +answer('urn:example:complies'('urn:example:alice2021', true)). +answer('urn:example:complies'('urn:example:alice2022', true)). +answer('urn:example:complies'('urn:example:alice2023', true)). +answer('urn:example:complies'('urn:example:alice2024', true)). +answer('urn:example:complies'('urn:example:alice2025', true)). +answer('urn:example:complies'('urn:example:alice2026', true)). +answer('urn:example:complies'('urn:example:alice2027', true)). +answer('urn:example:complies'('urn:example:alice2028', true)). +answer('urn:example:complies'('urn:example:alice2029', true)). +answer('urn:example:complies'('urn:example:alice2030', true)). +answer('urn:example:complies'('urn:example:alice2031', true)). +answer('urn:example:complies'('urn:example:alice2032', true)). +answer('urn:example:complies'('urn:example:alice2033', true)). +answer('urn:example:complies'('urn:example:alice2034', true)). +answer('urn:example:complies'('urn:example:alice2035', true)). +answer('urn:example:complies'('urn:example:alice2036', true)). +answer('urn:example:complies'('urn:example:alice2037', true)). +answer('urn:example:complies'('urn:example:alice2038', true)). +answer('urn:example:complies'('urn:example:alice2039', true)). +answer('urn:example:complies'('urn:example:alice2040', true)). +answer('urn:example:complies'('urn:example:alice2041', true)). +answer('urn:example:complies'('urn:example:alice2042', true)). +answer('urn:example:complies'('urn:example:alice2043', true)). +answer('urn:example:complies'('urn:example:alice2044', true)). +answer('urn:example:complies'('urn:example:alice2045', true)). +answer('urn:example:complies'('urn:example:alice2046', true)). +answer('urn:example:complies'('urn:example:alice2047', true)). +answer('urn:example:complies'('urn:example:alice2048', true)). +answer('urn:example:complies'('urn:example:alice2049', true)). +answer('urn:example:complies'('urn:example:alice2050', true)). +answer('urn:example:complies'('urn:example:alice2051', true)). +answer('urn:example:complies'('urn:example:alice2052', true)). +answer('urn:example:complies'('urn:example:alice2053', true)). +answer('urn:example:complies'('urn:example:alice2054', true)). +answer('urn:example:complies'('urn:example:alice2055', true)). +answer('urn:example:complies'('urn:example:alice2056', true)). +answer('urn:example:complies'('urn:example:alice2057', true)). +answer('urn:example:complies'('urn:example:alice2058', true)). +answer('urn:example:complies'('urn:example:alice2059', true)). +answer('urn:example:complies'('urn:example:alice2060', true)). +answer('urn:example:complies'('urn:example:alice2061', true)). +answer('urn:example:complies'('urn:example:alice2062', true)). +answer('urn:example:complies'('urn:example:alice2063', true)). +answer('urn:example:complies'('urn:example:alice2064', true)). +answer('urn:example:complies'('urn:example:alice2065', true)). +answer('urn:example:complies'('urn:example:alice2066', true)). +answer('urn:example:complies'('urn:example:alice2067', true)). +answer('urn:example:complies'('urn:example:alice2068', true)). +answer('urn:example:complies'('urn:example:alice2069', true)). +answer('urn:example:complies'('urn:example:alice2070', true)). +answer('urn:example:complies'('urn:example:alice2071', true)). +answer('urn:example:complies'('urn:example:alice2072', true)). +answer('urn:example:complies'('urn:example:alice2073', true)). +answer('urn:example:complies'('urn:example:alice2074', true)). +answer('urn:example:complies'('urn:example:alice2075', true)). +answer('urn:example:complies'('urn:example:alice2076', true)). +answer('urn:example:complies'('urn:example:alice2077', true)). +answer('urn:example:complies'('urn:example:alice2078', true)). +answer('urn:example:complies'('urn:example:alice2079', true)). +answer('urn:example:complies'('urn:example:alice2080', true)). +answer('urn:example:complies'('urn:example:alice2081', true)). +answer('urn:example:complies'('urn:example:alice2082', true)). +answer('urn:example:complies'('urn:example:alice2083', true)). +answer('urn:example:complies'('urn:example:alice2084', true)). +answer('urn:example:complies'('urn:example:alice2085', true)). +answer('urn:example:complies'('urn:example:alice2086', true)). +answer('urn:example:complies'('urn:example:alice2087', true)). +answer('urn:example:complies'('urn:example:alice2088', true)). +answer('urn:example:complies'('urn:example:alice2089', true)). +answer('urn:example:complies'('urn:example:alice2090', true)). +answer('urn:example:complies'('urn:example:alice2091', true)). +answer('urn:example:complies'('urn:example:alice2092', true)). +answer('urn:example:complies'('urn:example:alice2093', true)). +answer('urn:example:complies'('urn:example:alice2094', true)). +answer('urn:example:complies'('urn:example:alice2095', true)). +answer('urn:example:complies'('urn:example:alice2096', true)). +answer('urn:example:complies'('urn:example:alice2097', true)). +answer('urn:example:complies'('urn:example:alice2098', true)). +answer('urn:example:complies'('urn:example:alice2099', true)). +answer('urn:example:complies'('urn:example:alice2100', true)). +answer('urn:example:complies'('urn:example:alice2101', true)). +answer('urn:example:complies'('urn:example:alice2102', true)). +answer('urn:example:complies'('urn:example:alice2103', true)). +answer('urn:example:complies'('urn:example:alice2104', true)). +answer('urn:example:complies'('urn:example:alice2105', true)). +answer('urn:example:complies'('urn:example:alice2106', true)). +answer('urn:example:complies'('urn:example:alice2107', true)). +answer('urn:example:complies'('urn:example:alice2108', true)). +answer('urn:example:complies'('urn:example:alice2109', true)). +answer('urn:example:complies'('urn:example:alice2110', true)). +answer('urn:example:complies'('urn:example:alice2111', true)). +answer('urn:example:complies'('urn:example:alice2112', true)). +answer('urn:example:complies'('urn:example:alice2113', true)). +answer('urn:example:complies'('urn:example:alice2114', true)). +answer('urn:example:complies'('urn:example:alice2115', true)). +answer('urn:example:complies'('urn:example:alice2116', true)). +answer('urn:example:complies'('urn:example:alice2117', true)). +answer('urn:example:complies'('urn:example:alice2118', true)). +answer('urn:example:complies'('urn:example:alice2119', true)). +answer('urn:example:complies'('urn:example:alice2120', true)). +answer('urn:example:complies'('urn:example:alice2121', true)). +answer('urn:example:complies'('urn:example:alice2122', true)). +answer('urn:example:complies'('urn:example:alice2123', true)). +answer('urn:example:complies'('urn:example:alice2124', true)). +answer('urn:example:complies'('urn:example:alice2125', true)). +answer('urn:example:complies'('urn:example:alice2126', true)). +answer('urn:example:complies'('urn:example:alice2127', true)). +answer('urn:example:complies'('urn:example:alice2128', true)). +answer('urn:example:complies'('urn:example:alice2129', true)). +answer('urn:example:complies'('urn:example:alice2130', true)). +answer('urn:example:complies'('urn:example:alice2131', true)). +answer('urn:example:complies'('urn:example:alice2132', true)). +answer('urn:example:complies'('urn:example:alice2133', true)). +answer('urn:example:complies'('urn:example:alice2134', true)). +answer('urn:example:complies'('urn:example:alice2135', true)). +answer('urn:example:complies'('urn:example:alice2136', true)). +answer('urn:example:complies'('urn:example:alice2137', true)). +answer('urn:example:complies'('urn:example:alice2138', true)). +answer('urn:example:complies'('urn:example:alice2139', true)). +answer('urn:example:complies'('urn:example:alice2140', true)). +answer('urn:example:complies'('urn:example:alice2141', true)). +answer('urn:example:complies'('urn:example:alice2142', true)). +answer('urn:example:complies'('urn:example:alice2143', true)). +answer('urn:example:complies'('urn:example:alice2144', true)). +answer('urn:example:complies'('urn:example:alice2145', true)). +answer('urn:example:complies'('urn:example:alice2146', true)). +answer('urn:example:complies'('urn:example:alice2147', true)). +answer('urn:example:complies'('urn:example:alice2148', true)). +answer('urn:example:complies'('urn:example:alice2149', true)). +answer('urn:example:complies'('urn:example:alice2150', true)). +answer('urn:example:complies'('urn:example:alice2151', true)). +answer('urn:example:complies'('urn:example:alice2152', true)). +answer('urn:example:complies'('urn:example:alice2153', true)). +answer('urn:example:complies'('urn:example:alice2154', true)). +answer('urn:example:complies'('urn:example:alice2155', true)). +answer('urn:example:complies'('urn:example:alice2156', true)). +answer('urn:example:complies'('urn:example:alice2157', true)). +answer('urn:example:complies'('urn:example:alice2158', true)). +answer('urn:example:complies'('urn:example:alice2159', true)). +answer('urn:example:complies'('urn:example:alice2160', true)). +answer('urn:example:complies'('urn:example:alice2161', true)). +answer('urn:example:complies'('urn:example:alice2162', true)). +answer('urn:example:complies'('urn:example:alice2163', true)). +answer('urn:example:complies'('urn:example:alice2164', true)). +answer('urn:example:complies'('urn:example:alice2165', true)). +answer('urn:example:complies'('urn:example:alice2166', true)). +answer('urn:example:complies'('urn:example:alice2167', true)). +answer('urn:example:complies'('urn:example:alice2168', true)). +answer('urn:example:complies'('urn:example:alice2169', true)). +answer('urn:example:complies'('urn:example:alice2170', true)). +answer('urn:example:complies'('urn:example:alice2171', true)). +answer('urn:example:complies'('urn:example:alice2172', true)). +answer('urn:example:complies'('urn:example:alice2173', true)). +answer('urn:example:complies'('urn:example:alice2174', true)). +answer('urn:example:complies'('urn:example:alice2175', true)). +answer('urn:example:complies'('urn:example:alice2176', true)). +answer('urn:example:complies'('urn:example:alice2177', true)). +answer('urn:example:complies'('urn:example:alice2178', true)). +answer('urn:example:complies'('urn:example:alice2179', true)). +answer('urn:example:complies'('urn:example:alice2180', true)). +answer('urn:example:complies'('urn:example:alice2181', true)). +answer('urn:example:complies'('urn:example:alice2182', true)). +answer('urn:example:complies'('urn:example:alice2183', true)). +answer('urn:example:complies'('urn:example:alice2184', true)). +answer('urn:example:complies'('urn:example:alice2185', true)). +answer('urn:example:complies'('urn:example:alice2186', true)). +answer('urn:example:complies'('urn:example:alice2187', true)). +answer('urn:example:complies'('urn:example:alice2188', true)). +answer('urn:example:complies'('urn:example:alice2189', true)). +answer('urn:example:complies'('urn:example:alice2190', true)). +answer('urn:example:complies'('urn:example:alice2191', true)). +answer('urn:example:complies'('urn:example:alice2192', true)). +answer('urn:example:complies'('urn:example:alice2193', true)). +answer('urn:example:complies'('urn:example:alice2194', true)). +answer('urn:example:complies'('urn:example:alice2195', true)). +answer('urn:example:complies'('urn:example:alice2196', true)). +answer('urn:example:complies'('urn:example:alice2197', true)). +answer('urn:example:complies'('urn:example:alice2198', true)). +answer('urn:example:complies'('urn:example:alice2199', true)). +answer('urn:example:complies'('urn:example:alice2200', true)). +answer('urn:example:complies'('urn:example:alice2201', true)). +answer('urn:example:complies'('urn:example:alice2202', true)). +answer('urn:example:complies'('urn:example:alice2203', true)). +answer('urn:example:complies'('urn:example:alice2204', true)). +answer('urn:example:complies'('urn:example:alice2205', true)). +answer('urn:example:complies'('urn:example:alice2206', true)). +answer('urn:example:complies'('urn:example:alice2207', true)). +answer('urn:example:complies'('urn:example:alice2208', true)). +answer('urn:example:complies'('urn:example:alice2209', true)). +answer('urn:example:complies'('urn:example:alice2210', true)). +answer('urn:example:complies'('urn:example:alice2211', true)). +answer('urn:example:complies'('urn:example:alice2212', true)). +answer('urn:example:complies'('urn:example:alice2213', true)). +answer('urn:example:complies'('urn:example:alice2214', true)). +answer('urn:example:complies'('urn:example:alice2215', true)). +answer('urn:example:complies'('urn:example:alice2216', true)). +answer('urn:example:complies'('urn:example:alice2217', true)). +answer('urn:example:complies'('urn:example:alice2218', true)). +answer('urn:example:complies'('urn:example:alice2219', true)). +answer('urn:example:complies'('urn:example:alice2220', true)). +answer('urn:example:complies'('urn:example:alice2221', true)). +answer('urn:example:complies'('urn:example:alice2222', true)). +answer('urn:example:complies'('urn:example:alice2223', true)). +answer('urn:example:complies'('urn:example:alice2224', true)). +answer('urn:example:complies'('urn:example:alice2225', true)). +answer('urn:example:complies'('urn:example:alice2226', true)). +answer('urn:example:complies'('urn:example:alice2227', true)). +answer('urn:example:complies'('urn:example:alice2228', true)). +answer('urn:example:complies'('urn:example:alice2229', true)). +answer('urn:example:complies'('urn:example:alice2230', true)). +answer('urn:example:complies'('urn:example:alice2231', true)). +answer('urn:example:complies'('urn:example:alice2232', true)). +answer('urn:example:complies'('urn:example:alice2233', true)). +answer('urn:example:complies'('urn:example:alice2234', true)). +answer('urn:example:complies'('urn:example:alice2235', true)). +answer('urn:example:complies'('urn:example:alice2236', true)). +answer('urn:example:complies'('urn:example:alice2237', true)). +answer('urn:example:complies'('urn:example:alice2238', true)). +answer('urn:example:complies'('urn:example:alice2239', true)). +answer('urn:example:complies'('urn:example:alice2240', true)). +answer('urn:example:complies'('urn:example:alice2241', true)). +answer('urn:example:complies'('urn:example:alice2242', true)). +answer('urn:example:complies'('urn:example:alice2243', true)). +answer('urn:example:complies'('urn:example:alice2244', true)). +answer('urn:example:complies'('urn:example:alice2245', true)). +answer('urn:example:complies'('urn:example:alice2246', true)). +answer('urn:example:complies'('urn:example:alice2247', true)). +answer('urn:example:complies'('urn:example:alice2248', true)). +answer('urn:example:complies'('urn:example:alice2249', true)). +answer('urn:example:complies'('urn:example:alice2250', true)). +answer('urn:example:complies'('urn:example:alice2251', true)). +answer('urn:example:complies'('urn:example:alice2252', true)). +answer('urn:example:complies'('urn:example:alice2253', true)). +answer('urn:example:complies'('urn:example:alice2254', true)). +answer('urn:example:complies'('urn:example:alice2255', true)). +answer('urn:example:complies'('urn:example:alice2256', true)). +answer('urn:example:complies'('urn:example:alice2257', true)). +answer('urn:example:complies'('urn:example:alice2258', true)). +answer('urn:example:complies'('urn:example:alice2259', true)). +answer('urn:example:complies'('urn:example:alice2260', true)). +answer('urn:example:complies'('urn:example:alice2261', true)). +answer('urn:example:complies'('urn:example:alice2262', true)). +answer('urn:example:complies'('urn:example:alice2263', true)). +answer('urn:example:complies'('urn:example:alice2264', true)). +answer('urn:example:complies'('urn:example:alice2265', true)). +answer('urn:example:complies'('urn:example:alice2266', true)). +answer('urn:example:complies'('urn:example:alice2267', true)). +answer('urn:example:complies'('urn:example:alice2268', true)). +answer('urn:example:complies'('urn:example:alice2269', true)). +answer('urn:example:complies'('urn:example:alice2270', true)). +answer('urn:example:complies'('urn:example:alice2271', true)). +answer('urn:example:complies'('urn:example:alice2272', true)). +answer('urn:example:complies'('urn:example:alice2273', true)). +answer('urn:example:complies'('urn:example:alice2274', true)). +answer('urn:example:complies'('urn:example:alice2275', true)). +answer('urn:example:complies'('urn:example:alice2276', true)). +answer('urn:example:complies'('urn:example:alice2277', true)). +answer('urn:example:complies'('urn:example:alice2278', true)). +answer('urn:example:complies'('urn:example:alice2279', true)). +answer('urn:example:complies'('urn:example:alice2280', true)). +answer('urn:example:complies'('urn:example:alice2281', true)). +answer('urn:example:complies'('urn:example:alice2282', true)). +answer('urn:example:complies'('urn:example:alice2283', true)). +answer('urn:example:complies'('urn:example:alice2284', true)). +answer('urn:example:complies'('urn:example:alice2285', true)). +answer('urn:example:complies'('urn:example:alice2286', true)). +answer('urn:example:complies'('urn:example:alice2287', true)). +answer('urn:example:complies'('urn:example:alice2288', true)). +answer('urn:example:complies'('urn:example:alice2289', true)). +answer('urn:example:complies'('urn:example:alice2290', true)). +answer('urn:example:complies'('urn:example:alice2291', true)). +answer('urn:example:complies'('urn:example:alice2292', true)). +answer('urn:example:complies'('urn:example:alice2293', true)). +answer('urn:example:complies'('urn:example:alice2294', true)). +answer('urn:example:complies'('urn:example:alice2295', true)). +answer('urn:example:complies'('urn:example:alice2296', true)). +answer('urn:example:complies'('urn:example:alice2297', true)). +answer('urn:example:complies'('urn:example:alice2298', true)). +answer('urn:example:complies'('urn:example:alice2299', true)). +answer('urn:example:complies'('urn:example:alice2300', true)). +answer('urn:example:complies'('urn:example:alice2301', true)). +answer('urn:example:complies'('urn:example:alice2302', true)). +answer('urn:example:complies'('urn:example:alice2303', true)). +answer('urn:example:complies'('urn:example:alice2304', true)). +answer('urn:example:complies'('urn:example:alice2305', true)). +answer('urn:example:complies'('urn:example:alice2306', true)). +answer('urn:example:complies'('urn:example:alice2307', true)). +answer('urn:example:complies'('urn:example:alice2308', true)). +answer('urn:example:complies'('urn:example:alice2309', true)). +answer('urn:example:complies'('urn:example:alice2310', true)). +answer('urn:example:complies'('urn:example:alice2311', true)). +answer('urn:example:complies'('urn:example:alice2312', true)). +answer('urn:example:complies'('urn:example:alice2313', true)). +answer('urn:example:complies'('urn:example:alice2314', true)). +answer('urn:example:complies'('urn:example:alice2315', true)). +answer('urn:example:complies'('urn:example:alice2316', true)). +answer('urn:example:complies'('urn:example:alice2317', true)). +answer('urn:example:complies'('urn:example:alice2318', true)). +answer('urn:example:complies'('urn:example:alice2319', true)). +answer('urn:example:complies'('urn:example:alice2320', true)). +answer('urn:example:complies'('urn:example:alice2321', true)). +answer('urn:example:complies'('urn:example:alice2322', true)). +answer('urn:example:complies'('urn:example:alice2323', true)). +answer('urn:example:complies'('urn:example:alice2324', true)). +answer('urn:example:complies'('urn:example:alice2325', true)). +answer('urn:example:complies'('urn:example:alice2326', true)). +answer('urn:example:complies'('urn:example:alice2327', true)). +answer('urn:example:complies'('urn:example:alice2328', true)). +answer('urn:example:complies'('urn:example:alice2329', true)). +answer('urn:example:complies'('urn:example:alice2330', true)). +answer('urn:example:complies'('urn:example:alice2331', true)). +answer('urn:example:complies'('urn:example:alice2332', true)). +answer('urn:example:complies'('urn:example:alice2333', true)). +answer('urn:example:complies'('urn:example:alice2334', true)). +answer('urn:example:complies'('urn:example:alice2335', true)). +answer('urn:example:complies'('urn:example:alice2336', true)). +answer('urn:example:complies'('urn:example:alice2337', true)). +answer('urn:example:complies'('urn:example:alice2338', true)). +answer('urn:example:complies'('urn:example:alice2339', true)). +answer('urn:example:complies'('urn:example:alice2340', true)). +answer('urn:example:complies'('urn:example:alice2341', true)). +answer('urn:example:complies'('urn:example:alice2342', true)). +answer('urn:example:complies'('urn:example:alice2343', true)). +answer('urn:example:complies'('urn:example:alice2344', true)). +answer('urn:example:complies'('urn:example:alice2345', true)). +answer('urn:example:complies'('urn:example:alice2346', true)). +answer('urn:example:complies'('urn:example:alice2347', true)). +answer('urn:example:complies'('urn:example:alice2348', true)). +answer('urn:example:complies'('urn:example:alice2349', true)). +answer('urn:example:complies'('urn:example:alice2350', true)). +answer('urn:example:complies'('urn:example:alice2351', true)). +answer('urn:example:complies'('urn:example:alice2352', true)). +answer('urn:example:complies'('urn:example:alice2353', true)). +answer('urn:example:complies'('urn:example:alice2354', true)). +answer('urn:example:complies'('urn:example:alice2355', true)). +answer('urn:example:complies'('urn:example:alice2356', true)). +answer('urn:example:complies'('urn:example:alice2357', true)). +answer('urn:example:complies'('urn:example:alice2358', true)). +answer('urn:example:complies'('urn:example:alice2359', true)). +answer('urn:example:complies'('urn:example:alice2360', true)). +answer('urn:example:complies'('urn:example:alice2361', true)). +answer('urn:example:complies'('urn:example:alice2362', true)). +answer('urn:example:complies'('urn:example:alice2363', true)). +answer('urn:example:complies'('urn:example:alice2364', true)). +answer('urn:example:complies'('urn:example:alice2365', true)). +answer('urn:example:complies'('urn:example:alice2366', true)). +answer('urn:example:complies'('urn:example:alice2367', true)). +answer('urn:example:complies'('urn:example:alice2368', true)). +answer('urn:example:complies'('urn:example:alice2369', true)). +answer('urn:example:complies'('urn:example:alice2370', true)). +answer('urn:example:complies'('urn:example:alice2371', true)). +answer('urn:example:complies'('urn:example:alice2372', true)). +answer('urn:example:complies'('urn:example:alice2373', true)). +answer('urn:example:complies'('urn:example:alice2374', true)). +answer('urn:example:complies'('urn:example:alice2375', true)). +answer('urn:example:complies'('urn:example:alice2376', true)). +answer('urn:example:complies'('urn:example:alice2377', true)). +answer('urn:example:complies'('urn:example:alice2378', true)). +answer('urn:example:complies'('urn:example:alice2379', true)). +answer('urn:example:complies'('urn:example:alice2380', true)). +answer('urn:example:complies'('urn:example:alice2381', true)). +answer('urn:example:complies'('urn:example:alice2382', true)). +answer('urn:example:complies'('urn:example:alice2383', true)). +answer('urn:example:complies'('urn:example:alice2384', true)). +answer('urn:example:complies'('urn:example:alice2385', true)). +answer('urn:example:complies'('urn:example:alice2386', true)). +answer('urn:example:complies'('urn:example:alice2387', true)). +answer('urn:example:complies'('urn:example:alice2388', true)). +answer('urn:example:complies'('urn:example:alice2389', true)). +answer('urn:example:complies'('urn:example:alice2390', true)). +answer('urn:example:complies'('urn:example:alice2391', true)). +answer('urn:example:complies'('urn:example:alice2392', true)). +answer('urn:example:complies'('urn:example:alice2393', true)). +answer('urn:example:complies'('urn:example:alice2394', true)). +answer('urn:example:complies'('urn:example:alice2395', true)). +answer('urn:example:complies'('urn:example:alice2396', true)). +answer('urn:example:complies'('urn:example:alice2397', true)). +answer('urn:example:complies'('urn:example:alice2398', true)). +answer('urn:example:complies'('urn:example:alice2399', true)). +answer('urn:example:complies'('urn:example:alice2400', true)). +answer('urn:example:complies'('urn:example:alice2401', true)). +answer('urn:example:complies'('urn:example:alice2402', true)). +answer('urn:example:complies'('urn:example:alice2403', true)). +answer('urn:example:complies'('urn:example:alice2404', true)). +answer('urn:example:complies'('urn:example:alice2405', true)). +answer('urn:example:complies'('urn:example:alice2406', true)). +answer('urn:example:complies'('urn:example:alice2407', true)). +answer('urn:example:complies'('urn:example:alice2408', true)). +answer('urn:example:complies'('urn:example:alice2409', true)). +answer('urn:example:complies'('urn:example:alice2410', true)). +answer('urn:example:complies'('urn:example:alice2411', true)). +answer('urn:example:complies'('urn:example:alice2412', true)). +answer('urn:example:complies'('urn:example:alice2413', true)). +answer('urn:example:complies'('urn:example:alice2414', true)). +answer('urn:example:complies'('urn:example:alice2415', true)). +answer('urn:example:complies'('urn:example:alice2416', true)). +answer('urn:example:complies'('urn:example:alice2417', true)). +answer('urn:example:complies'('urn:example:alice2418', true)). +answer('urn:example:complies'('urn:example:alice2419', true)). +answer('urn:example:complies'('urn:example:alice2420', true)). +answer('urn:example:complies'('urn:example:alice2421', true)). +answer('urn:example:complies'('urn:example:alice2422', true)). +answer('urn:example:complies'('urn:example:alice2423', true)). +answer('urn:example:complies'('urn:example:alice2424', true)). +answer('urn:example:complies'('urn:example:alice2425', true)). +answer('urn:example:complies'('urn:example:alice2426', true)). +answer('urn:example:complies'('urn:example:alice2427', true)). +answer('urn:example:complies'('urn:example:alice2428', true)). +answer('urn:example:complies'('urn:example:alice2429', true)). +answer('urn:example:complies'('urn:example:alice2430', true)). +answer('urn:example:complies'('urn:example:alice2431', true)). +answer('urn:example:complies'('urn:example:alice2432', true)). +answer('urn:example:complies'('urn:example:alice2433', true)). +answer('urn:example:complies'('urn:example:alice2434', true)). +answer('urn:example:complies'('urn:example:alice2435', true)). +answer('urn:example:complies'('urn:example:alice2436', true)). +answer('urn:example:complies'('urn:example:alice2437', true)). +answer('urn:example:complies'('urn:example:alice2438', true)). +answer('urn:example:complies'('urn:example:alice2439', true)). +answer('urn:example:complies'('urn:example:alice2440', true)). +answer('urn:example:complies'('urn:example:alice2441', true)). +answer('urn:example:complies'('urn:example:alice2442', true)). +answer('urn:example:complies'('urn:example:alice2443', true)). +answer('urn:example:complies'('urn:example:alice2444', true)). +answer('urn:example:complies'('urn:example:alice2445', true)). +answer('urn:example:complies'('urn:example:alice2446', true)). +answer('urn:example:complies'('urn:example:alice2447', true)). +answer('urn:example:complies'('urn:example:alice2448', true)). +answer('urn:example:complies'('urn:example:alice2449', true)). +answer('urn:example:complies'('urn:example:alice2450', true)). +answer('urn:example:complies'('urn:example:alice2451', true)). +answer('urn:example:complies'('urn:example:alice2452', true)). +answer('urn:example:complies'('urn:example:alice2453', true)). +answer('urn:example:complies'('urn:example:alice2454', true)). +answer('urn:example:complies'('urn:example:alice2455', true)). +answer('urn:example:complies'('urn:example:alice2456', true)). +answer('urn:example:complies'('urn:example:alice2457', true)). +answer('urn:example:complies'('urn:example:alice2458', true)). +answer('urn:example:complies'('urn:example:alice2459', true)). +answer('urn:example:complies'('urn:example:alice2460', true)). +answer('urn:example:complies'('urn:example:alice2461', true)). +answer('urn:example:complies'('urn:example:alice2462', true)). +answer('urn:example:complies'('urn:example:alice2463', true)). +answer('urn:example:complies'('urn:example:alice2464', true)). +answer('urn:example:complies'('urn:example:alice2465', true)). +answer('urn:example:complies'('urn:example:alice2466', true)). +answer('urn:example:complies'('urn:example:alice2467', true)). +answer('urn:example:complies'('urn:example:alice2468', true)). +answer('urn:example:complies'('urn:example:alice2469', true)). +answer('urn:example:complies'('urn:example:alice2470', true)). +answer('urn:example:complies'('urn:example:alice2471', true)). +answer('urn:example:complies'('urn:example:alice2472', true)). +answer('urn:example:complies'('urn:example:alice2473', true)). +answer('urn:example:complies'('urn:example:alice2474', true)). +answer('urn:example:complies'('urn:example:alice2475', true)). +answer('urn:example:complies'('urn:example:alice2476', true)). +answer('urn:example:complies'('urn:example:alice2477', true)). +answer('urn:example:complies'('urn:example:alice2478', true)). +answer('urn:example:complies'('urn:example:alice2479', true)). +answer('urn:example:complies'('urn:example:alice2480', true)). +answer('urn:example:complies'('urn:example:alice2481', true)). +answer('urn:example:complies'('urn:example:alice2482', true)). +answer('urn:example:complies'('urn:example:alice2483', true)). +answer('urn:example:complies'('urn:example:alice2484', true)). +answer('urn:example:complies'('urn:example:alice2485', true)). +answer('urn:example:complies'('urn:example:alice2486', true)). +answer('urn:example:complies'('urn:example:alice2487', true)). +answer('urn:example:complies'('urn:example:alice2488', true)). +answer('urn:example:complies'('urn:example:alice2489', true)). +answer('urn:example:complies'('urn:example:alice2490', true)). +answer('urn:example:complies'('urn:example:alice2491', true)). +answer('urn:example:complies'('urn:example:alice2492', true)). +answer('urn:example:complies'('urn:example:alice2493', true)). +answer('urn:example:complies'('urn:example:alice2494', true)). +answer('urn:example:complies'('urn:example:alice2495', true)). +answer('urn:example:complies'('urn:example:alice2496', true)). +answer('urn:example:complies'('urn:example:alice2497', true)). +answer('urn:example:complies'('urn:example:alice2498', true)). +answer('urn:example:complies'('urn:example:alice2499', true)). +answer('urn:example:complies'('urn:example:alice2500', true)). +answer('urn:example:complies'('urn:example:alice2501', true)). +answer('urn:example:complies'('urn:example:alice2502', true)). +answer('urn:example:complies'('urn:example:alice2503', true)). +answer('urn:example:complies'('urn:example:alice2504', true)). +answer('urn:example:complies'('urn:example:alice2505', true)). +answer('urn:example:complies'('urn:example:alice2506', true)). +answer('urn:example:complies'('urn:example:alice2507', true)). +answer('urn:example:complies'('urn:example:alice2508', true)). +answer('urn:example:complies'('urn:example:alice2509', true)). +answer('urn:example:complies'('urn:example:alice2510', true)). +answer('urn:example:complies'('urn:example:alice2511', true)). +answer('urn:example:complies'('urn:example:alice2512', true)). +answer('urn:example:complies'('urn:example:alice2513', true)). +answer('urn:example:complies'('urn:example:alice2514', true)). +answer('urn:example:complies'('urn:example:alice2515', true)). +answer('urn:example:complies'('urn:example:alice2516', true)). +answer('urn:example:complies'('urn:example:alice2517', true)). +answer('urn:example:complies'('urn:example:alice2518', true)). +answer('urn:example:complies'('urn:example:alice2519', true)). +answer('urn:example:complies'('urn:example:alice2520', true)). +answer('urn:example:complies'('urn:example:alice2521', true)). +answer('urn:example:complies'('urn:example:alice2522', true)). +answer('urn:example:complies'('urn:example:alice2523', true)). +answer('urn:example:complies'('urn:example:alice2524', true)). +answer('urn:example:complies'('urn:example:alice2525', true)). +answer('urn:example:complies'('urn:example:alice2526', true)). +answer('urn:example:complies'('urn:example:alice2527', true)). +answer('urn:example:complies'('urn:example:alice2528', true)). +answer('urn:example:complies'('urn:example:alice2529', true)). +answer('urn:example:complies'('urn:example:alice2530', true)). +answer('urn:example:complies'('urn:example:alice2531', true)). +answer('urn:example:complies'('urn:example:alice2532', true)). +answer('urn:example:complies'('urn:example:alice2533', true)). +answer('urn:example:complies'('urn:example:alice2534', true)). +answer('urn:example:complies'('urn:example:alice2535', true)). +answer('urn:example:complies'('urn:example:alice2536', true)). +answer('urn:example:complies'('urn:example:alice2537', true)). +answer('urn:example:complies'('urn:example:alice2538', true)). +answer('urn:example:complies'('urn:example:alice2539', true)). +answer('urn:example:complies'('urn:example:alice2540', true)). +answer('urn:example:complies'('urn:example:alice2541', true)). +answer('urn:example:complies'('urn:example:alice2542', true)). +answer('urn:example:complies'('urn:example:alice2543', true)). +answer('urn:example:complies'('urn:example:alice2544', true)). +answer('urn:example:complies'('urn:example:alice2545', true)). +answer('urn:example:complies'('urn:example:alice2546', true)). +answer('urn:example:complies'('urn:example:alice2547', true)). +answer('urn:example:complies'('urn:example:alice2548', true)). +answer('urn:example:complies'('urn:example:alice2549', true)). +answer('urn:example:complies'('urn:example:alice2550', true)). +answer('urn:example:complies'('urn:example:alice2551', true)). +answer('urn:example:complies'('urn:example:alice2552', true)). +answer('urn:example:complies'('urn:example:alice2553', true)). +answer('urn:example:complies'('urn:example:alice2554', true)). +answer('urn:example:complies'('urn:example:alice2555', true)). +answer('urn:example:complies'('urn:example:alice2556', true)). +answer('urn:example:complies'('urn:example:alice2557', true)). +answer('urn:example:complies'('urn:example:alice2558', true)). +answer('urn:example:complies'('urn:example:alice2559', true)). +answer('urn:example:complies'('urn:example:alice2560', true)). +answer('urn:example:complies'('urn:example:alice2561', true)). +answer('urn:example:complies'('urn:example:alice2562', true)). +answer('urn:example:complies'('urn:example:alice2563', true)). +answer('urn:example:complies'('urn:example:alice2564', true)). +answer('urn:example:complies'('urn:example:alice2565', true)). +answer('urn:example:complies'('urn:example:alice2566', true)). +answer('urn:example:complies'('urn:example:alice2567', true)). +answer('urn:example:complies'('urn:example:alice2568', true)). +answer('urn:example:complies'('urn:example:alice2569', true)). +answer('urn:example:complies'('urn:example:alice2570', true)). +answer('urn:example:complies'('urn:example:alice2571', true)). +answer('urn:example:complies'('urn:example:alice2572', true)). +answer('urn:example:complies'('urn:example:alice2573', true)). +answer('urn:example:complies'('urn:example:alice2574', true)). +answer('urn:example:complies'('urn:example:alice2575', true)). +answer('urn:example:complies'('urn:example:alice2576', true)). +answer('urn:example:complies'('urn:example:alice2577', true)). +answer('urn:example:complies'('urn:example:alice2578', true)). +answer('urn:example:complies'('urn:example:alice2579', true)). +answer('urn:example:complies'('urn:example:alice2580', true)). +answer('urn:example:complies'('urn:example:alice2581', true)). +answer('urn:example:complies'('urn:example:alice2582', true)). +answer('urn:example:complies'('urn:example:alice2583', true)). +answer('urn:example:complies'('urn:example:alice2584', true)). +answer('urn:example:complies'('urn:example:alice2585', true)). +answer('urn:example:complies'('urn:example:alice2586', true)). +answer('urn:example:complies'('urn:example:alice2587', true)). +answer('urn:example:complies'('urn:example:alice2588', true)). +answer('urn:example:complies'('urn:example:alice2589', true)). +answer('urn:example:complies'('urn:example:alice2590', true)). +answer('urn:example:complies'('urn:example:alice2591', true)). +answer('urn:example:complies'('urn:example:alice2592', true)). +answer('urn:example:complies'('urn:example:alice2593', true)). +answer('urn:example:complies'('urn:example:alice2594', true)). +answer('urn:example:complies'('urn:example:alice2595', true)). +answer('urn:example:complies'('urn:example:alice2596', true)). +answer('urn:example:complies'('urn:example:alice2597', true)). +answer('urn:example:complies'('urn:example:alice2598', true)). +answer('urn:example:complies'('urn:example:alice2599', true)). +answer('urn:example:complies'('urn:example:alice2600', true)). +answer('urn:example:complies'('urn:example:alice2601', true)). +answer('urn:example:complies'('urn:example:alice2602', true)). +answer('urn:example:complies'('urn:example:alice2603', true)). +answer('urn:example:complies'('urn:example:alice2604', true)). +answer('urn:example:complies'('urn:example:alice2605', true)). +answer('urn:example:complies'('urn:example:alice2606', true)). +answer('urn:example:complies'('urn:example:alice2607', true)). +answer('urn:example:complies'('urn:example:alice2608', true)). +answer('urn:example:complies'('urn:example:alice2609', true)). +answer('urn:example:complies'('urn:example:alice2610', true)). +answer('urn:example:complies'('urn:example:alice2611', true)). +answer('urn:example:complies'('urn:example:alice2612', true)). +answer('urn:example:complies'('urn:example:alice2613', true)). +answer('urn:example:complies'('urn:example:alice2614', true)). +answer('urn:example:complies'('urn:example:alice2615', true)). +answer('urn:example:complies'('urn:example:alice2616', true)). +answer('urn:example:complies'('urn:example:alice2617', true)). +answer('urn:example:complies'('urn:example:alice2618', true)). +answer('urn:example:complies'('urn:example:alice2619', true)). +answer('urn:example:complies'('urn:example:alice2620', true)). +answer('urn:example:complies'('urn:example:alice2621', true)). +answer('urn:example:complies'('urn:example:alice2622', true)). +answer('urn:example:complies'('urn:example:alice2623', true)). +answer('urn:example:complies'('urn:example:alice2624', true)). +answer('urn:example:complies'('urn:example:alice2625', true)). +answer('urn:example:complies'('urn:example:alice2626', true)). +answer('urn:example:complies'('urn:example:alice2627', true)). +answer('urn:example:complies'('urn:example:alice2628', true)). +answer('urn:example:complies'('urn:example:alice2629', true)). +answer('urn:example:complies'('urn:example:alice2630', true)). +answer('urn:example:complies'('urn:example:alice2631', true)). +answer('urn:example:complies'('urn:example:alice2632', true)). +answer('urn:example:complies'('urn:example:alice2633', true)). +answer('urn:example:complies'('urn:example:alice2634', true)). +answer('urn:example:complies'('urn:example:alice2635', true)). +answer('urn:example:complies'('urn:example:alice2636', true)). +answer('urn:example:complies'('urn:example:alice2637', true)). +answer('urn:example:complies'('urn:example:alice2638', true)). +answer('urn:example:complies'('urn:example:alice2639', true)). +answer('urn:example:complies'('urn:example:alice2640', true)). +answer('urn:example:complies'('urn:example:alice2641', true)). +answer('urn:example:complies'('urn:example:alice2642', true)). +answer('urn:example:complies'('urn:example:alice2643', true)). +answer('urn:example:complies'('urn:example:alice2644', true)). +answer('urn:example:complies'('urn:example:alice2645', true)). +answer('urn:example:complies'('urn:example:alice2646', true)). +answer('urn:example:complies'('urn:example:alice2647', true)). +answer('urn:example:complies'('urn:example:alice2648', true)). +answer('urn:example:complies'('urn:example:alice2649', true)). +answer('urn:example:complies'('urn:example:alice2650', true)). +answer('urn:example:complies'('urn:example:alice2651', true)). +answer('urn:example:complies'('urn:example:alice2652', true)). +answer('urn:example:complies'('urn:example:alice2653', true)). +answer('urn:example:complies'('urn:example:alice2654', true)). +answer('urn:example:complies'('urn:example:alice2655', true)). +answer('urn:example:complies'('urn:example:alice2656', true)). +answer('urn:example:complies'('urn:example:alice2657', true)). +answer('urn:example:complies'('urn:example:alice2658', true)). +answer('urn:example:complies'('urn:example:alice2659', true)). +answer('urn:example:complies'('urn:example:alice2660', true)). +answer('urn:example:complies'('urn:example:alice2661', true)). +answer('urn:example:complies'('urn:example:alice2662', true)). +answer('urn:example:complies'('urn:example:alice2663', true)). +answer('urn:example:complies'('urn:example:alice2664', true)). +answer('urn:example:complies'('urn:example:alice2665', true)). +answer('urn:example:complies'('urn:example:alice2666', true)). +answer('urn:example:complies'('urn:example:alice2667', true)). +answer('urn:example:complies'('urn:example:alice2668', true)). +answer('urn:example:complies'('urn:example:alice2669', true)). +answer('urn:example:complies'('urn:example:alice2670', true)). +answer('urn:example:complies'('urn:example:alice2671', true)). +answer('urn:example:complies'('urn:example:alice2672', true)). +answer('urn:example:complies'('urn:example:alice2673', true)). +answer('urn:example:complies'('urn:example:alice2674', true)). +answer('urn:example:complies'('urn:example:alice2675', true)). +answer('urn:example:complies'('urn:example:alice2676', true)). +answer('urn:example:complies'('urn:example:alice2677', true)). +answer('urn:example:complies'('urn:example:alice2678', true)). +answer('urn:example:complies'('urn:example:alice2679', true)). +answer('urn:example:complies'('urn:example:alice2680', true)). +answer('urn:example:complies'('urn:example:alice2681', true)). +answer('urn:example:complies'('urn:example:alice2682', true)). +answer('urn:example:complies'('urn:example:alice2683', true)). +answer('urn:example:complies'('urn:example:alice2684', true)). +answer('urn:example:complies'('urn:example:alice2685', true)). +answer('urn:example:complies'('urn:example:alice2686', true)). +answer('urn:example:complies'('urn:example:alice2687', true)). +answer('urn:example:complies'('urn:example:alice2688', true)). +answer('urn:example:complies'('urn:example:alice2689', true)). +answer('urn:example:complies'('urn:example:alice2690', true)). +answer('urn:example:complies'('urn:example:alice2691', true)). +answer('urn:example:complies'('urn:example:alice2692', true)). +answer('urn:example:complies'('urn:example:alice2693', true)). +answer('urn:example:complies'('urn:example:alice2694', true)). +answer('urn:example:complies'('urn:example:alice2695', true)). +answer('urn:example:complies'('urn:example:alice2696', true)). +answer('urn:example:complies'('urn:example:alice2697', true)). +answer('urn:example:complies'('urn:example:alice2698', true)). +answer('urn:example:complies'('urn:example:alice2699', true)). +answer('urn:example:complies'('urn:example:alice2700', true)). +answer('urn:example:complies'('urn:example:alice2701', true)). +answer('urn:example:complies'('urn:example:alice2702', true)). +answer('urn:example:complies'('urn:example:alice2703', true)). +answer('urn:example:complies'('urn:example:alice2704', true)). +answer('urn:example:complies'('urn:example:alice2705', true)). +answer('urn:example:complies'('urn:example:alice2706', true)). +answer('urn:example:complies'('urn:example:alice2707', true)). +answer('urn:example:complies'('urn:example:alice2708', true)). +answer('urn:example:complies'('urn:example:alice2709', true)). +answer('urn:example:complies'('urn:example:alice2710', true)). +answer('urn:example:complies'('urn:example:alice2711', true)). +answer('urn:example:complies'('urn:example:alice2712', true)). +answer('urn:example:complies'('urn:example:alice2713', true)). +answer('urn:example:complies'('urn:example:alice2714', true)). +answer('urn:example:complies'('urn:example:alice2715', true)). +answer('urn:example:complies'('urn:example:alice2716', true)). +answer('urn:example:complies'('urn:example:alice2717', true)). +answer('urn:example:complies'('urn:example:alice2718', true)). +answer('urn:example:complies'('urn:example:alice2719', true)). +answer('urn:example:complies'('urn:example:alice2720', true)). +answer('urn:example:complies'('urn:example:alice2721', true)). +answer('urn:example:complies'('urn:example:alice2722', true)). +answer('urn:example:complies'('urn:example:alice2723', true)). +answer('urn:example:complies'('urn:example:alice2724', true)). +answer('urn:example:complies'('urn:example:alice2725', true)). +answer('urn:example:complies'('urn:example:alice2726', true)). +answer('urn:example:complies'('urn:example:alice2727', true)). +answer('urn:example:complies'('urn:example:alice2728', true)). +answer('urn:example:complies'('urn:example:alice2729', true)). +answer('urn:example:complies'('urn:example:alice2730', true)). +answer('urn:example:complies'('urn:example:alice2731', true)). +answer('urn:example:complies'('urn:example:alice2732', true)). +answer('urn:example:complies'('urn:example:alice2733', true)). +answer('urn:example:complies'('urn:example:alice2734', true)). +answer('urn:example:complies'('urn:example:alice2735', true)). +answer('urn:example:complies'('urn:example:alice2736', true)). +answer('urn:example:complies'('urn:example:alice2737', true)). +answer('urn:example:complies'('urn:example:alice2738', true)). +answer('urn:example:complies'('urn:example:alice2739', true)). +answer('urn:example:complies'('urn:example:alice2740', true)). +answer('urn:example:complies'('urn:example:alice2741', true)). +answer('urn:example:complies'('urn:example:alice2742', true)). +answer('urn:example:complies'('urn:example:alice2743', true)). +answer('urn:example:complies'('urn:example:alice2744', true)). +answer('urn:example:complies'('urn:example:alice2745', true)). +answer('urn:example:complies'('urn:example:alice2746', true)). +answer('urn:example:complies'('urn:example:alice2747', true)). +answer('urn:example:complies'('urn:example:alice2748', true)). +answer('urn:example:complies'('urn:example:alice2749', true)). +answer('urn:example:complies'('urn:example:alice2750', true)). +answer('urn:example:complies'('urn:example:alice2751', true)). +answer('urn:example:complies'('urn:example:alice2752', true)). +answer('urn:example:complies'('urn:example:alice2753', true)). +answer('urn:example:complies'('urn:example:alice2754', true)). +answer('urn:example:complies'('urn:example:alice2755', true)). +answer('urn:example:complies'('urn:example:alice2756', true)). +answer('urn:example:complies'('urn:example:alice2757', true)). +answer('urn:example:complies'('urn:example:alice2758', true)). +answer('urn:example:complies'('urn:example:alice2759', true)). +answer('urn:example:complies'('urn:example:alice2760', true)). +answer('urn:example:complies'('urn:example:alice2761', true)). +answer('urn:example:complies'('urn:example:alice2762', true)). +answer('urn:example:complies'('urn:example:alice2763', true)). +answer('urn:example:complies'('urn:example:alice2764', true)). +answer('urn:example:complies'('urn:example:alice2765', true)). +answer('urn:example:complies'('urn:example:alice2766', true)). +answer('urn:example:complies'('urn:example:alice2767', true)). +answer('urn:example:complies'('urn:example:alice2768', true)). +answer('urn:example:complies'('urn:example:alice2769', true)). +answer('urn:example:complies'('urn:example:alice2770', true)). +answer('urn:example:complies'('urn:example:alice2771', true)). +answer('urn:example:complies'('urn:example:alice2772', true)). +answer('urn:example:complies'('urn:example:alice2773', true)). +answer('urn:example:complies'('urn:example:alice2774', true)). +answer('urn:example:complies'('urn:example:alice2775', true)). +answer('urn:example:complies'('urn:example:alice2776', true)). +answer('urn:example:complies'('urn:example:alice2777', true)). +answer('urn:example:complies'('urn:example:alice2778', true)). +answer('urn:example:complies'('urn:example:alice2779', true)). +answer('urn:example:complies'('urn:example:alice2780', true)). +answer('urn:example:complies'('urn:example:alice2781', true)). +answer('urn:example:complies'('urn:example:alice2782', true)). +answer('urn:example:complies'('urn:example:alice2783', true)). +answer('urn:example:complies'('urn:example:alice2784', true)). +answer('urn:example:complies'('urn:example:alice2785', true)). +answer('urn:example:complies'('urn:example:alice2786', true)). +answer('urn:example:complies'('urn:example:alice2787', true)). +answer('urn:example:complies'('urn:example:alice2788', true)). +answer('urn:example:complies'('urn:example:alice2789', true)). +answer('urn:example:complies'('urn:example:alice2790', true)). +answer('urn:example:complies'('urn:example:alice2791', true)). +answer('urn:example:complies'('urn:example:alice2792', true)). +answer('urn:example:complies'('urn:example:alice2793', true)). +answer('urn:example:complies'('urn:example:alice2794', true)). +answer('urn:example:complies'('urn:example:alice2795', true)). +answer('urn:example:complies'('urn:example:alice2796', true)). +answer('urn:example:complies'('urn:example:alice2797', true)). +answer('urn:example:complies'('urn:example:alice2798', true)). +answer('urn:example:complies'('urn:example:alice2799', true)). +answer('urn:example:complies'('urn:example:alice2800', true)). +answer('urn:example:complies'('urn:example:alice2801', true)). +answer('urn:example:complies'('urn:example:alice2802', true)). +answer('urn:example:complies'('urn:example:alice2803', true)). +answer('urn:example:complies'('urn:example:alice2804', true)). +answer('urn:example:complies'('urn:example:alice2805', true)). +answer('urn:example:complies'('urn:example:alice2806', true)). +answer('urn:example:complies'('urn:example:alice2807', true)). +answer('urn:example:complies'('urn:example:alice2808', true)). +answer('urn:example:complies'('urn:example:alice2809', true)). +answer('urn:example:complies'('urn:example:alice2810', true)). +answer('urn:example:complies'('urn:example:alice2811', true)). +answer('urn:example:complies'('urn:example:alice2812', true)). +answer('urn:example:complies'('urn:example:alice2813', true)). +answer('urn:example:complies'('urn:example:alice2814', true)). +answer('urn:example:complies'('urn:example:alice2815', true)). +answer('urn:example:complies'('urn:example:alice2816', true)). +answer('urn:example:complies'('urn:example:alice2817', true)). +answer('urn:example:complies'('urn:example:alice2818', true)). +answer('urn:example:complies'('urn:example:alice2819', true)). +answer('urn:example:complies'('urn:example:alice2820', true)). +answer('urn:example:complies'('urn:example:alice2821', true)). +answer('urn:example:complies'('urn:example:alice2822', true)). +answer('urn:example:complies'('urn:example:alice2823', true)). +answer('urn:example:complies'('urn:example:alice2824', true)). +answer('urn:example:complies'('urn:example:alice2825', true)). +answer('urn:example:complies'('urn:example:alice2826', true)). +answer('urn:example:complies'('urn:example:alice2827', true)). +answer('urn:example:complies'('urn:example:alice2828', true)). +answer('urn:example:complies'('urn:example:alice2829', true)). +answer('urn:example:complies'('urn:example:alice2830', true)). +answer('urn:example:complies'('urn:example:alice2831', true)). +answer('urn:example:complies'('urn:example:alice2832', true)). +answer('urn:example:complies'('urn:example:alice2833', true)). +answer('urn:example:complies'('urn:example:alice2834', true)). +answer('urn:example:complies'('urn:example:alice2835', true)). +answer('urn:example:complies'('urn:example:alice2836', true)). +answer('urn:example:complies'('urn:example:alice2837', true)). +answer('urn:example:complies'('urn:example:alice2838', true)). +answer('urn:example:complies'('urn:example:alice2839', true)). +answer('urn:example:complies'('urn:example:alice2840', true)). +answer('urn:example:complies'('urn:example:alice2841', true)). +answer('urn:example:complies'('urn:example:alice2842', true)). +answer('urn:example:complies'('urn:example:alice2843', true)). +answer('urn:example:complies'('urn:example:alice2844', true)). +answer('urn:example:complies'('urn:example:alice2845', true)). +answer('urn:example:complies'('urn:example:alice2846', true)). +answer('urn:example:complies'('urn:example:alice2847', true)). +answer('urn:example:complies'('urn:example:alice2848', true)). +answer('urn:example:complies'('urn:example:alice2849', true)). +answer('urn:example:complies'('urn:example:alice2850', true)). +answer('urn:example:complies'('urn:example:alice2851', true)). +answer('urn:example:complies'('urn:example:alice2852', true)). +answer('urn:example:complies'('urn:example:alice2853', true)). +answer('urn:example:complies'('urn:example:alice2854', true)). +answer('urn:example:complies'('urn:example:alice2855', true)). +answer('urn:example:complies'('urn:example:alice2856', true)). +answer('urn:example:complies'('urn:example:alice2857', true)). +answer('urn:example:complies'('urn:example:alice2858', true)). +answer('urn:example:complies'('urn:example:alice2859', true)). +answer('urn:example:complies'('urn:example:alice2860', true)). +answer('urn:example:complies'('urn:example:alice2861', true)). +answer('urn:example:complies'('urn:example:alice2862', true)). +answer('urn:example:complies'('urn:example:alice2863', true)). +answer('urn:example:complies'('urn:example:alice2864', true)). +answer('urn:example:complies'('urn:example:alice2865', true)). +answer('urn:example:complies'('urn:example:alice2866', true)). +answer('urn:example:complies'('urn:example:alice2867', true)). +answer('urn:example:complies'('urn:example:alice2868', true)). +answer('urn:example:complies'('urn:example:alice2869', true)). +answer('urn:example:complies'('urn:example:alice2870', true)). +answer('urn:example:complies'('urn:example:alice2871', true)). +answer('urn:example:complies'('urn:example:alice2872', true)). +answer('urn:example:complies'('urn:example:alice2873', true)). +answer('urn:example:complies'('urn:example:alice2874', true)). +answer('urn:example:complies'('urn:example:alice2875', true)). +answer('urn:example:complies'('urn:example:alice2876', true)). +answer('urn:example:complies'('urn:example:alice2877', true)). +answer('urn:example:complies'('urn:example:alice2878', true)). +answer('urn:example:complies'('urn:example:alice2879', true)). +answer('urn:example:complies'('urn:example:alice2880', true)). +answer('urn:example:complies'('urn:example:alice2881', true)). +answer('urn:example:complies'('urn:example:alice2882', true)). +answer('urn:example:complies'('urn:example:alice2883', true)). +answer('urn:example:complies'('urn:example:alice2884', true)). +answer('urn:example:complies'('urn:example:alice2885', true)). +answer('urn:example:complies'('urn:example:alice2886', true)). +answer('urn:example:complies'('urn:example:alice2887', true)). +answer('urn:example:complies'('urn:example:alice2888', true)). +answer('urn:example:complies'('urn:example:alice2889', true)). +answer('urn:example:complies'('urn:example:alice2890', true)). +answer('urn:example:complies'('urn:example:alice2891', true)). +answer('urn:example:complies'('urn:example:alice2892', true)). +answer('urn:example:complies'('urn:example:alice2893', true)). +answer('urn:example:complies'('urn:example:alice2894', true)). +answer('urn:example:complies'('urn:example:alice2895', true)). +answer('urn:example:complies'('urn:example:alice2896', true)). +answer('urn:example:complies'('urn:example:alice2897', true)). +answer('urn:example:complies'('urn:example:alice2898', true)). +answer('urn:example:complies'('urn:example:alice2899', true)). +answer('urn:example:complies'('urn:example:alice2900', true)). +answer('urn:example:complies'('urn:example:alice2901', true)). +answer('urn:example:complies'('urn:example:alice2902', true)). +answer('urn:example:complies'('urn:example:alice2903', true)). +answer('urn:example:complies'('urn:example:alice2904', true)). +answer('urn:example:complies'('urn:example:alice2905', true)). +answer('urn:example:complies'('urn:example:alice2906', true)). +answer('urn:example:complies'('urn:example:alice2907', true)). +answer('urn:example:complies'('urn:example:alice2908', true)). +answer('urn:example:complies'('urn:example:alice2909', true)). +answer('urn:example:complies'('urn:example:alice2910', true)). +answer('urn:example:complies'('urn:example:alice2911', true)). +answer('urn:example:complies'('urn:example:alice2912', true)). +answer('urn:example:complies'('urn:example:alice2913', true)). +answer('urn:example:complies'('urn:example:alice2914', true)). +answer('urn:example:complies'('urn:example:alice2915', true)). +answer('urn:example:complies'('urn:example:alice2916', true)). +answer('urn:example:complies'('urn:example:alice2917', true)). +answer('urn:example:complies'('urn:example:alice2918', true)). +answer('urn:example:complies'('urn:example:alice2919', true)). +answer('urn:example:complies'('urn:example:alice2920', true)). +answer('urn:example:complies'('urn:example:alice2921', true)). +answer('urn:example:complies'('urn:example:alice2922', true)). +answer('urn:example:complies'('urn:example:alice2923', true)). +answer('urn:example:complies'('urn:example:alice2924', true)). +answer('urn:example:complies'('urn:example:alice2925', true)). +answer('urn:example:complies'('urn:example:alice2926', true)). +answer('urn:example:complies'('urn:example:alice2927', true)). +answer('urn:example:complies'('urn:example:alice2928', true)). +answer('urn:example:complies'('urn:example:alice2929', true)). +answer('urn:example:complies'('urn:example:alice2930', true)). +answer('urn:example:complies'('urn:example:alice2931', true)). +answer('urn:example:complies'('urn:example:alice2932', true)). +answer('urn:example:complies'('urn:example:alice2933', true)). +answer('urn:example:complies'('urn:example:alice2934', true)). +answer('urn:example:complies'('urn:example:alice2935', true)). +answer('urn:example:complies'('urn:example:alice2936', true)). +answer('urn:example:complies'('urn:example:alice2937', true)). +answer('urn:example:complies'('urn:example:alice2938', true)). +answer('urn:example:complies'('urn:example:alice2939', true)). +answer('urn:example:complies'('urn:example:alice2940', true)). +answer('urn:example:complies'('urn:example:alice2941', true)). +answer('urn:example:complies'('urn:example:alice2942', true)). +answer('urn:example:complies'('urn:example:alice2943', true)). +answer('urn:example:complies'('urn:example:alice2944', true)). +answer('urn:example:complies'('urn:example:alice2945', true)). +answer('urn:example:complies'('urn:example:alice2946', true)). +answer('urn:example:complies'('urn:example:alice2947', true)). +answer('urn:example:complies'('urn:example:alice2948', true)). +answer('urn:example:complies'('urn:example:alice2949', true)). +answer('urn:example:complies'('urn:example:alice2950', true)). +answer('urn:example:complies'('urn:example:alice2951', true)). +answer('urn:example:complies'('urn:example:alice2952', true)). +answer('urn:example:complies'('urn:example:alice2953', true)). +answer('urn:example:complies'('urn:example:alice2954', true)). +answer('urn:example:complies'('urn:example:alice2955', true)). +answer('urn:example:complies'('urn:example:alice2956', true)). +answer('urn:example:complies'('urn:example:alice2957', true)). +answer('urn:example:complies'('urn:example:alice2958', true)). +answer('urn:example:complies'('urn:example:alice2959', true)). +answer('urn:example:complies'('urn:example:alice2960', true)). +answer('urn:example:complies'('urn:example:alice2961', true)). +answer('urn:example:complies'('urn:example:alice2962', true)). +answer('urn:example:complies'('urn:example:alice2963', true)). +answer('urn:example:complies'('urn:example:alice2964', true)). +answer('urn:example:complies'('urn:example:alice2965', true)). +answer('urn:example:complies'('urn:example:alice2966', true)). +answer('urn:example:complies'('urn:example:alice2967', true)). +answer('urn:example:complies'('urn:example:alice2968', true)). +answer('urn:example:complies'('urn:example:alice2969', true)). +answer('urn:example:complies'('urn:example:alice2970', true)). +answer('urn:example:complies'('urn:example:alice2971', true)). +answer('urn:example:complies'('urn:example:alice2972', true)). +answer('urn:example:complies'('urn:example:alice2973', true)). +answer('urn:example:complies'('urn:example:alice2974', true)). +answer('urn:example:complies'('urn:example:alice2975', true)). +answer('urn:example:complies'('urn:example:alice2976', true)). +answer('urn:example:complies'('urn:example:alice2977', true)). +answer('urn:example:complies'('urn:example:alice2978', true)). +answer('urn:example:complies'('urn:example:alice2979', true)). +answer('urn:example:complies'('urn:example:alice2980', true)). +answer('urn:example:complies'('urn:example:alice2981', true)). +answer('urn:example:complies'('urn:example:alice2982', true)). +answer('urn:example:complies'('urn:example:alice2983', true)). +answer('urn:example:complies'('urn:example:alice2984', true)). +answer('urn:example:complies'('urn:example:alice2985', true)). +answer('urn:example:complies'('urn:example:alice2986', true)). +answer('urn:example:complies'('urn:example:alice2987', true)). +answer('urn:example:complies'('urn:example:alice2988', true)). +answer('urn:example:complies'('urn:example:alice2989', true)). +answer('urn:example:complies'('urn:example:alice2990', true)). +answer('urn:example:complies'('urn:example:alice2991', true)). +answer('urn:example:complies'('urn:example:alice2992', true)). +answer('urn:example:complies'('urn:example:alice2993', true)). +answer('urn:example:complies'('urn:example:alice2994', true)). +answer('urn:example:complies'('urn:example:alice2995', true)). +answer('urn:example:complies'('urn:example:alice2996', true)). +answer('urn:example:complies'('urn:example:alice2997', true)). +answer('urn:example:complies'('urn:example:alice2998', true)). +answer('urn:example:complies'('urn:example:alice2999', true)). +answer('urn:example:complies'('urn:example:alice3000', true)). +answer('urn:example:complies'('urn:example:alice3001', true)). +answer('urn:example:complies'('urn:example:alice3002', true)). +answer('urn:example:complies'('urn:example:alice3003', true)). +answer('urn:example:complies'('urn:example:alice3004', true)). +answer('urn:example:complies'('urn:example:alice3005', true)). +answer('urn:example:complies'('urn:example:alice3006', true)). +answer('urn:example:complies'('urn:example:alice3007', true)). +answer('urn:example:complies'('urn:example:alice3008', true)). +answer('urn:example:complies'('urn:example:alice3009', true)). +answer('urn:example:complies'('urn:example:alice3010', true)). +answer('urn:example:complies'('urn:example:alice3011', true)). +answer('urn:example:complies'('urn:example:alice3012', true)). +answer('urn:example:complies'('urn:example:alice3013', true)). +answer('urn:example:complies'('urn:example:alice3014', true)). +answer('urn:example:complies'('urn:example:alice3015', true)). +answer('urn:example:complies'('urn:example:alice3016', true)). +answer('urn:example:complies'('urn:example:alice3017', true)). +answer('urn:example:complies'('urn:example:alice3018', true)). +answer('urn:example:complies'('urn:example:alice3019', true)). +answer('urn:example:complies'('urn:example:alice3020', true)). +answer('urn:example:complies'('urn:example:alice3021', true)). +answer('urn:example:complies'('urn:example:alice3022', true)). +answer('urn:example:complies'('urn:example:alice3023', true)). +answer('urn:example:complies'('urn:example:alice3024', true)). +answer('urn:example:complies'('urn:example:alice3025', true)). +answer('urn:example:complies'('urn:example:alice3026', true)). +answer('urn:example:complies'('urn:example:alice3027', true)). +answer('urn:example:complies'('urn:example:alice3028', true)). +answer('urn:example:complies'('urn:example:alice3029', true)). +answer('urn:example:complies'('urn:example:alice3030', true)). +answer('urn:example:complies'('urn:example:alice3031', true)). +answer('urn:example:complies'('urn:example:alice3032', true)). +answer('urn:example:complies'('urn:example:alice3033', true)). +answer('urn:example:complies'('urn:example:alice3034', true)). +answer('urn:example:complies'('urn:example:alice3035', true)). +answer('urn:example:complies'('urn:example:alice3036', true)). +answer('urn:example:complies'('urn:example:alice3037', true)). +answer('urn:example:complies'('urn:example:alice3038', true)). +answer('urn:example:complies'('urn:example:alice3039', true)). +answer('urn:example:complies'('urn:example:alice3040', true)). +answer('urn:example:complies'('urn:example:alice3041', true)). +answer('urn:example:complies'('urn:example:alice3042', true)). +answer('urn:example:complies'('urn:example:alice3043', true)). +answer('urn:example:complies'('urn:example:alice3044', true)). +answer('urn:example:complies'('urn:example:alice3045', true)). +answer('urn:example:complies'('urn:example:alice3046', true)). +answer('urn:example:complies'('urn:example:alice3047', true)). +answer('urn:example:complies'('urn:example:alice3048', true)). +answer('urn:example:complies'('urn:example:alice3049', true)). +answer('urn:example:complies'('urn:example:alice3050', true)). +answer('urn:example:complies'('urn:example:alice3051', true)). +answer('urn:example:complies'('urn:example:alice3052', true)). +answer('urn:example:complies'('urn:example:alice3053', true)). +answer('urn:example:complies'('urn:example:alice3054', true)). +answer('urn:example:complies'('urn:example:alice3055', true)). +answer('urn:example:complies'('urn:example:alice3056', true)). +answer('urn:example:complies'('urn:example:alice3057', true)). +answer('urn:example:complies'('urn:example:alice3058', true)). +answer('urn:example:complies'('urn:example:alice3059', true)). +answer('urn:example:complies'('urn:example:alice3060', true)). +answer('urn:example:complies'('urn:example:alice3061', true)). +answer('urn:example:complies'('urn:example:alice3062', true)). +answer('urn:example:complies'('urn:example:alice3063', true)). +answer('urn:example:complies'('urn:example:alice3064', true)). +answer('urn:example:complies'('urn:example:alice3065', true)). +answer('urn:example:complies'('urn:example:alice3066', true)). +answer('urn:example:complies'('urn:example:alice3067', true)). +answer('urn:example:complies'('urn:example:alice3068', true)). +answer('urn:example:complies'('urn:example:alice3069', true)). +answer('urn:example:complies'('urn:example:alice3070', true)). +answer('urn:example:complies'('urn:example:alice3071', true)). +answer('urn:example:complies'('urn:example:alice3072', true)). +answer('urn:example:complies'('urn:example:alice3073', true)). +answer('urn:example:complies'('urn:example:alice3074', true)). +answer('urn:example:complies'('urn:example:alice3075', true)). +answer('urn:example:complies'('urn:example:alice3076', true)). +answer('urn:example:complies'('urn:example:alice3077', true)). +answer('urn:example:complies'('urn:example:alice3078', true)). +answer('urn:example:complies'('urn:example:alice3079', true)). +answer('urn:example:complies'('urn:example:alice3080', true)). +answer('urn:example:complies'('urn:example:alice3081', true)). +answer('urn:example:complies'('urn:example:alice3082', true)). +answer('urn:example:complies'('urn:example:alice3083', true)). +answer('urn:example:complies'('urn:example:alice3084', true)). +answer('urn:example:complies'('urn:example:alice3085', true)). +answer('urn:example:complies'('urn:example:alice3086', true)). +answer('urn:example:complies'('urn:example:alice3087', true)). +answer('urn:example:complies'('urn:example:alice3088', true)). +answer('urn:example:complies'('urn:example:alice3089', true)). +answer('urn:example:complies'('urn:example:alice3090', true)). +answer('urn:example:complies'('urn:example:alice3091', true)). +answer('urn:example:complies'('urn:example:alice3092', true)). +answer('urn:example:complies'('urn:example:alice3093', true)). +answer('urn:example:complies'('urn:example:alice3094', true)). +answer('urn:example:complies'('urn:example:alice3095', true)). +answer('urn:example:complies'('urn:example:alice3096', true)). +answer('urn:example:complies'('urn:example:alice3097', true)). +answer('urn:example:complies'('urn:example:alice3098', true)). +answer('urn:example:complies'('urn:example:alice3099', true)). +answer('urn:example:complies'('urn:example:alice3100', true)). +answer('urn:example:complies'('urn:example:alice3101', true)). +answer('urn:example:complies'('urn:example:alice3102', true)). +answer('urn:example:complies'('urn:example:alice3103', true)). +answer('urn:example:complies'('urn:example:alice3104', true)). +answer('urn:example:complies'('urn:example:alice3105', true)). +answer('urn:example:complies'('urn:example:alice3106', true)). +answer('urn:example:complies'('urn:example:alice3107', true)). +answer('urn:example:complies'('urn:example:alice3108', true)). +answer('urn:example:complies'('urn:example:alice3109', true)). +answer('urn:example:complies'('urn:example:alice3110', true)). +answer('urn:example:complies'('urn:example:alice3111', true)). +answer('urn:example:complies'('urn:example:alice3112', true)). +answer('urn:example:complies'('urn:example:alice3113', true)). +answer('urn:example:complies'('urn:example:alice3114', true)). +answer('urn:example:complies'('urn:example:alice3115', true)). +answer('urn:example:complies'('urn:example:alice3116', true)). +answer('urn:example:complies'('urn:example:alice3117', true)). +answer('urn:example:complies'('urn:example:alice3118', true)). +answer('urn:example:complies'('urn:example:alice3119', true)). +answer('urn:example:complies'('urn:example:alice3120', true)). +answer('urn:example:complies'('urn:example:alice3121', true)). +answer('urn:example:complies'('urn:example:alice3122', true)). +answer('urn:example:complies'('urn:example:alice3123', true)). +answer('urn:example:complies'('urn:example:alice3124', true)). +answer('urn:example:complies'('urn:example:alice3125', true)). +answer('urn:example:complies'('urn:example:alice3126', true)). +answer('urn:example:complies'('urn:example:alice3127', true)). +answer('urn:example:complies'('urn:example:alice3128', true)). +answer('urn:example:complies'('urn:example:alice3129', true)). +answer('urn:example:complies'('urn:example:alice3130', true)). +answer('urn:example:complies'('urn:example:alice3131', true)). +answer('urn:example:complies'('urn:example:alice3132', true)). +answer('urn:example:complies'('urn:example:alice3133', true)). +answer('urn:example:complies'('urn:example:alice3134', true)). +answer('urn:example:complies'('urn:example:alice3135', true)). +answer('urn:example:complies'('urn:example:alice3136', true)). +answer('urn:example:complies'('urn:example:alice3137', true)). +answer('urn:example:complies'('urn:example:alice3138', true)). +answer('urn:example:complies'('urn:example:alice3139', true)). +answer('urn:example:complies'('urn:example:alice3140', true)). +answer('urn:example:complies'('urn:example:alice3141', true)). +answer('urn:example:complies'('urn:example:alice3142', true)). +answer('urn:example:complies'('urn:example:alice3143', true)). +answer('urn:example:complies'('urn:example:alice3144', true)). +answer('urn:example:complies'('urn:example:alice3145', true)). +answer('urn:example:complies'('urn:example:alice3146', true)). +answer('urn:example:complies'('urn:example:alice3147', true)). +answer('urn:example:complies'('urn:example:alice3148', true)). +answer('urn:example:complies'('urn:example:alice3149', true)). +answer('urn:example:complies'('urn:example:alice3150', true)). +answer('urn:example:complies'('urn:example:alice3151', true)). +answer('urn:example:complies'('urn:example:alice3152', true)). +answer('urn:example:complies'('urn:example:alice3153', true)). +answer('urn:example:complies'('urn:example:alice3154', true)). +answer('urn:example:complies'('urn:example:alice3155', true)). +answer('urn:example:complies'('urn:example:alice3156', true)). +answer('urn:example:complies'('urn:example:alice3157', true)). +answer('urn:example:complies'('urn:example:alice3158', true)). +answer('urn:example:complies'('urn:example:alice3159', true)). +answer('urn:example:complies'('urn:example:alice3160', true)). +answer('urn:example:complies'('urn:example:alice3161', true)). +answer('urn:example:complies'('urn:example:alice3162', true)). +answer('urn:example:complies'('urn:example:alice3163', true)). +answer('urn:example:complies'('urn:example:alice3164', true)). +answer('urn:example:complies'('urn:example:alice3165', true)). +answer('urn:example:complies'('urn:example:alice3166', true)). +answer('urn:example:complies'('urn:example:alice3167', true)). +answer('urn:example:complies'('urn:example:alice3168', true)). +answer('urn:example:complies'('urn:example:alice3169', true)). +answer('urn:example:complies'('urn:example:alice3170', true)). +answer('urn:example:complies'('urn:example:alice3171', true)). +answer('urn:example:complies'('urn:example:alice3172', true)). +answer('urn:example:complies'('urn:example:alice3173', true)). +answer('urn:example:complies'('urn:example:alice3174', true)). +answer('urn:example:complies'('urn:example:alice3175', true)). +answer('urn:example:complies'('urn:example:alice3176', true)). +answer('urn:example:complies'('urn:example:alice3177', true)). +answer('urn:example:complies'('urn:example:alice3178', true)). +answer('urn:example:complies'('urn:example:alice3179', true)). +answer('urn:example:complies'('urn:example:alice3180', true)). +answer('urn:example:complies'('urn:example:alice3181', true)). +answer('urn:example:complies'('urn:example:alice3182', true)). +answer('urn:example:complies'('urn:example:alice3183', true)). +answer('urn:example:complies'('urn:example:alice3184', true)). +answer('urn:example:complies'('urn:example:alice3185', true)). +answer('urn:example:complies'('urn:example:alice3186', true)). +answer('urn:example:complies'('urn:example:alice3187', true)). +answer('urn:example:complies'('urn:example:alice3188', true)). +answer('urn:example:complies'('urn:example:alice3189', true)). +answer('urn:example:complies'('urn:example:alice3190', true)). +answer('urn:example:complies'('urn:example:alice3191', true)). +answer('urn:example:complies'('urn:example:alice3192', true)). +answer('urn:example:complies'('urn:example:alice3193', true)). +answer('urn:example:complies'('urn:example:alice3194', true)). +answer('urn:example:complies'('urn:example:alice3195', true)). +answer('urn:example:complies'('urn:example:alice3196', true)). +answer('urn:example:complies'('urn:example:alice3197', true)). +answer('urn:example:complies'('urn:example:alice3198', true)). +answer('urn:example:complies'('urn:example:alice3199', true)). +answer('urn:example:complies'('urn:example:alice3200', true)). +answer('urn:example:complies'('urn:example:alice3201', true)). +answer('urn:example:complies'('urn:example:alice3202', true)). +answer('urn:example:complies'('urn:example:alice3203', true)). +answer('urn:example:complies'('urn:example:alice3204', true)). +answer('urn:example:complies'('urn:example:alice3205', true)). +answer('urn:example:complies'('urn:example:alice3206', true)). +answer('urn:example:complies'('urn:example:alice3207', true)). +answer('urn:example:complies'('urn:example:alice3208', true)). +answer('urn:example:complies'('urn:example:alice3209', true)). +answer('urn:example:complies'('urn:example:alice3210', true)). +answer('urn:example:complies'('urn:example:alice3211', true)). +answer('urn:example:complies'('urn:example:alice3212', true)). +answer('urn:example:complies'('urn:example:alice3213', true)). +answer('urn:example:complies'('urn:example:alice3214', true)). +answer('urn:example:complies'('urn:example:alice3215', true)). +answer('urn:example:complies'('urn:example:alice3216', true)). +answer('urn:example:complies'('urn:example:alice3217', true)). +answer('urn:example:complies'('urn:example:alice3218', true)). +answer('urn:example:complies'('urn:example:alice3219', true)). +answer('urn:example:complies'('urn:example:alice3220', true)). +answer('urn:example:complies'('urn:example:alice3221', true)). +answer('urn:example:complies'('urn:example:alice3222', true)). +answer('urn:example:complies'('urn:example:alice3223', true)). +answer('urn:example:complies'('urn:example:alice3224', true)). +answer('urn:example:complies'('urn:example:alice3225', true)). +answer('urn:example:complies'('urn:example:alice3226', true)). +answer('urn:example:complies'('urn:example:alice3227', true)). +answer('urn:example:complies'('urn:example:alice3228', true)). +answer('urn:example:complies'('urn:example:alice3229', true)). +answer('urn:example:complies'('urn:example:alice3230', true)). +answer('urn:example:complies'('urn:example:alice3231', true)). +answer('urn:example:complies'('urn:example:alice3232', true)). +answer('urn:example:complies'('urn:example:alice3233', true)). +answer('urn:example:complies'('urn:example:alice3234', true)). +answer('urn:example:complies'('urn:example:alice3235', true)). +answer('urn:example:complies'('urn:example:alice3236', true)). +answer('urn:example:complies'('urn:example:alice3237', true)). +answer('urn:example:complies'('urn:example:alice3238', true)). +answer('urn:example:complies'('urn:example:alice3239', true)). +answer('urn:example:complies'('urn:example:alice3240', true)). +answer('urn:example:complies'('urn:example:alice3241', true)). +answer('urn:example:complies'('urn:example:alice3242', true)). +answer('urn:example:complies'('urn:example:alice3243', true)). +answer('urn:example:complies'('urn:example:alice3244', true)). +answer('urn:example:complies'('urn:example:alice3245', true)). +answer('urn:example:complies'('urn:example:alice3246', true)). +answer('urn:example:complies'('urn:example:alice3247', true)). +answer('urn:example:complies'('urn:example:alice3248', true)). +answer('urn:example:complies'('urn:example:alice3249', true)). +answer('urn:example:complies'('urn:example:alice3250', true)). +answer('urn:example:complies'('urn:example:alice3251', true)). +answer('urn:example:complies'('urn:example:alice3252', true)). +answer('urn:example:complies'('urn:example:alice3253', true)). +answer('urn:example:complies'('urn:example:alice3254', true)). +answer('urn:example:complies'('urn:example:alice3255', true)). +answer('urn:example:complies'('urn:example:alice3256', true)). +answer('urn:example:complies'('urn:example:alice3257', true)). +answer('urn:example:complies'('urn:example:alice3258', true)). +answer('urn:example:complies'('urn:example:alice3259', true)). +answer('urn:example:complies'('urn:example:alice3260', true)). +answer('urn:example:complies'('urn:example:alice3261', true)). +answer('urn:example:complies'('urn:example:alice3262', true)). +answer('urn:example:complies'('urn:example:alice3263', true)). +answer('urn:example:complies'('urn:example:alice3264', true)). +answer('urn:example:complies'('urn:example:alice3265', true)). +answer('urn:example:complies'('urn:example:alice3266', true)). +answer('urn:example:complies'('urn:example:alice3267', true)). +answer('urn:example:complies'('urn:example:alice3268', true)). +answer('urn:example:complies'('urn:example:alice3269', true)). +answer('urn:example:complies'('urn:example:alice3270', true)). +answer('urn:example:complies'('urn:example:alice3271', true)). +answer('urn:example:complies'('urn:example:alice3272', true)). +answer('urn:example:complies'('urn:example:alice3273', true)). +answer('urn:example:complies'('urn:example:alice3274', true)). +answer('urn:example:complies'('urn:example:alice3275', true)). +answer('urn:example:complies'('urn:example:alice3276', true)). +answer('urn:example:complies'('urn:example:alice3277', true)). +answer('urn:example:complies'('urn:example:alice3278', true)). +answer('urn:example:complies'('urn:example:alice3279', true)). +answer('urn:example:complies'('urn:example:alice3280', true)). +answer('urn:example:complies'('urn:example:alice3281', true)). +answer('urn:example:complies'('urn:example:alice3282', true)). +answer('urn:example:complies'('urn:example:alice3283', true)). +answer('urn:example:complies'('urn:example:alice3284', true)). +answer('urn:example:complies'('urn:example:alice3285', true)). +answer('urn:example:complies'('urn:example:alice3286', true)). +answer('urn:example:complies'('urn:example:alice3287', true)). +answer('urn:example:complies'('urn:example:alice3288', true)). +answer('urn:example:complies'('urn:example:alice3289', true)). +answer('urn:example:complies'('urn:example:alice3290', true)). +answer('urn:example:complies'('urn:example:alice3291', true)). +answer('urn:example:complies'('urn:example:alice3292', true)). +answer('urn:example:complies'('urn:example:alice3293', true)). +answer('urn:example:complies'('urn:example:alice3294', true)). +answer('urn:example:complies'('urn:example:alice3295', true)). +answer('urn:example:complies'('urn:example:alice3296', true)). +answer('urn:example:complies'('urn:example:alice3297', true)). +answer('urn:example:complies'('urn:example:alice3298', true)). +answer('urn:example:complies'('urn:example:alice3299', true)). +answer('urn:example:complies'('urn:example:alice3300', true)). +answer('urn:example:complies'('urn:example:alice3301', true)). +answer('urn:example:complies'('urn:example:alice3302', true)). +answer('urn:example:complies'('urn:example:alice3303', true)). +answer('urn:example:complies'('urn:example:alice3304', true)). +answer('urn:example:complies'('urn:example:alice3305', true)). +answer('urn:example:complies'('urn:example:alice3306', true)). +answer('urn:example:complies'('urn:example:alice3307', true)). +answer('urn:example:complies'('urn:example:alice3308', true)). +answer('urn:example:complies'('urn:example:alice3309', true)). +answer('urn:example:complies'('urn:example:alice3310', true)). +answer('urn:example:complies'('urn:example:alice3311', true)). +answer('urn:example:complies'('urn:example:alice3312', true)). +answer('urn:example:complies'('urn:example:alice3313', true)). +answer('urn:example:complies'('urn:example:alice3314', true)). +answer('urn:example:complies'('urn:example:alice3315', true)). +answer('urn:example:complies'('urn:example:alice3316', true)). +answer('urn:example:complies'('urn:example:alice3317', true)). +answer('urn:example:complies'('urn:example:alice3318', true)). +answer('urn:example:complies'('urn:example:alice3319', true)). +answer('urn:example:complies'('urn:example:alice3320', true)). +answer('urn:example:complies'('urn:example:alice3321', true)). +answer('urn:example:complies'('urn:example:alice3322', true)). +answer('urn:example:complies'('urn:example:alice3323', true)). +answer('urn:example:complies'('urn:example:alice3324', true)). +answer('urn:example:complies'('urn:example:alice3325', true)). +answer('urn:example:complies'('urn:example:alice3326', true)). +answer('urn:example:complies'('urn:example:alice3327', true)). +answer('urn:example:complies'('urn:example:alice3328', true)). +answer('urn:example:complies'('urn:example:alice3329', true)). +answer('urn:example:complies'('urn:example:alice3330', true)). +answer('urn:example:complies'('urn:example:alice3331', true)). +answer('urn:example:complies'('urn:example:alice3332', true)). +answer('urn:example:complies'('urn:example:alice3333', true)). +answer('urn:example:complies'('urn:example:alice3334', true)). +answer('urn:example:complies'('urn:example:alice3335', true)). +answer('urn:example:complies'('urn:example:alice3336', true)). +answer('urn:example:complies'('urn:example:alice3337', true)). +answer('urn:example:complies'('urn:example:alice3338', true)). +answer('urn:example:complies'('urn:example:alice3339', true)). +answer('urn:example:complies'('urn:example:alice3340', true)). +answer('urn:example:complies'('urn:example:alice3341', true)). +answer('urn:example:complies'('urn:example:alice3342', true)). +answer('urn:example:complies'('urn:example:alice3343', true)). +answer('urn:example:complies'('urn:example:alice3344', true)). +answer('urn:example:complies'('urn:example:alice3345', true)). +answer('urn:example:complies'('urn:example:alice3346', true)). +answer('urn:example:complies'('urn:example:alice3347', true)). +answer('urn:example:complies'('urn:example:alice3348', true)). +answer('urn:example:complies'('urn:example:alice3349', true)). +answer('urn:example:complies'('urn:example:alice3350', true)). +answer('urn:example:complies'('urn:example:alice3351', true)). +answer('urn:example:complies'('urn:example:alice3352', true)). +answer('urn:example:complies'('urn:example:alice3353', true)). +answer('urn:example:complies'('urn:example:alice3354', true)). +answer('urn:example:complies'('urn:example:alice3355', true)). +answer('urn:example:complies'('urn:example:alice3356', true)). +answer('urn:example:complies'('urn:example:alice3357', true)). +answer('urn:example:complies'('urn:example:alice3358', true)). +answer('urn:example:complies'('urn:example:alice3359', true)). +answer('urn:example:complies'('urn:example:alice3360', true)). +answer('urn:example:complies'('urn:example:alice3361', true)). +answer('urn:example:complies'('urn:example:alice3362', true)). +answer('urn:example:complies'('urn:example:alice3363', true)). +answer('urn:example:complies'('urn:example:alice3364', true)). +answer('urn:example:complies'('urn:example:alice3365', true)). +answer('urn:example:complies'('urn:example:alice3366', true)). +answer('urn:example:complies'('urn:example:alice3367', true)). +answer('urn:example:complies'('urn:example:alice3368', true)). +answer('urn:example:complies'('urn:example:alice3369', true)). +answer('urn:example:complies'('urn:example:alice3370', true)). +answer('urn:example:complies'('urn:example:alice3371', true)). +answer('urn:example:complies'('urn:example:alice3372', true)). +answer('urn:example:complies'('urn:example:alice3373', true)). +answer('urn:example:complies'('urn:example:alice3374', true)). +answer('urn:example:complies'('urn:example:alice3375', true)). +answer('urn:example:complies'('urn:example:alice3376', true)). +answer('urn:example:complies'('urn:example:alice3377', true)). +answer('urn:example:complies'('urn:example:alice3378', true)). +answer('urn:example:complies'('urn:example:alice3379', true)). +answer('urn:example:complies'('urn:example:alice3380', true)). +answer('urn:example:complies'('urn:example:alice3381', true)). +answer('urn:example:complies'('urn:example:alice3382', true)). +answer('urn:example:complies'('urn:example:alice3383', true)). +answer('urn:example:complies'('urn:example:alice3384', true)). +answer('urn:example:complies'('urn:example:alice3385', true)). +answer('urn:example:complies'('urn:example:alice3386', true)). +answer('urn:example:complies'('urn:example:alice3387', true)). +answer('urn:example:complies'('urn:example:alice3388', true)). +answer('urn:example:complies'('urn:example:alice3389', true)). +answer('urn:example:complies'('urn:example:alice3390', true)). +answer('urn:example:complies'('urn:example:alice3391', true)). +answer('urn:example:complies'('urn:example:alice3392', true)). +answer('urn:example:complies'('urn:example:alice3393', true)). +answer('urn:example:complies'('urn:example:alice3394', true)). +answer('urn:example:complies'('urn:example:alice3395', true)). +answer('urn:example:complies'('urn:example:alice3396', true)). +answer('urn:example:complies'('urn:example:alice3397', true)). +answer('urn:example:complies'('urn:example:alice3398', true)). +answer('urn:example:complies'('urn:example:alice3399', true)). +answer('urn:example:complies'('urn:example:alice3400', true)). +answer('urn:example:complies'('urn:example:alice3401', true)). +answer('urn:example:complies'('urn:example:alice3402', true)). +answer('urn:example:complies'('urn:example:alice3403', true)). +answer('urn:example:complies'('urn:example:alice3404', true)). +answer('urn:example:complies'('urn:example:alice3405', true)). +answer('urn:example:complies'('urn:example:alice3406', true)). +answer('urn:example:complies'('urn:example:alice3407', true)). +answer('urn:example:complies'('urn:example:alice3408', true)). +answer('urn:example:complies'('urn:example:alice3409', true)). +answer('urn:example:complies'('urn:example:alice3410', true)). +answer('urn:example:complies'('urn:example:alice3411', true)). +answer('urn:example:complies'('urn:example:alice3412', true)). +answer('urn:example:complies'('urn:example:alice3413', true)). +answer('urn:example:complies'('urn:example:alice3414', true)). +answer('urn:example:complies'('urn:example:alice3415', true)). +answer('urn:example:complies'('urn:example:alice3416', true)). +answer('urn:example:complies'('urn:example:alice3417', true)). +answer('urn:example:complies'('urn:example:alice3418', true)). +answer('urn:example:complies'('urn:example:alice3419', true)). +answer('urn:example:complies'('urn:example:alice3420', true)). +answer('urn:example:complies'('urn:example:alice3421', true)). +answer('urn:example:complies'('urn:example:alice3422', true)). +answer('urn:example:complies'('urn:example:alice3423', true)). +answer('urn:example:complies'('urn:example:alice3424', true)). +answer('urn:example:complies'('urn:example:alice3425', true)). +answer('urn:example:complies'('urn:example:alice3426', true)). +answer('urn:example:complies'('urn:example:alice3427', true)). +answer('urn:example:complies'('urn:example:alice3428', true)). +answer('urn:example:complies'('urn:example:alice3429', true)). +answer('urn:example:complies'('urn:example:alice3430', true)). +answer('urn:example:complies'('urn:example:alice3431', true)). +answer('urn:example:complies'('urn:example:alice3432', true)). +answer('urn:example:complies'('urn:example:alice3433', true)). +answer('urn:example:complies'('urn:example:alice3434', true)). +answer('urn:example:complies'('urn:example:alice3435', true)). +answer('urn:example:complies'('urn:example:alice3436', true)). +answer('urn:example:complies'('urn:example:alice3437', true)). +answer('urn:example:complies'('urn:example:alice3438', true)). +answer('urn:example:complies'('urn:example:alice3439', true)). +answer('urn:example:complies'('urn:example:alice3440', true)). +answer('urn:example:complies'('urn:example:alice3441', true)). +answer('urn:example:complies'('urn:example:alice3442', true)). +answer('urn:example:complies'('urn:example:alice3443', true)). +answer('urn:example:complies'('urn:example:alice3444', true)). +answer('urn:example:complies'('urn:example:alice3445', true)). +answer('urn:example:complies'('urn:example:alice3446', true)). +answer('urn:example:complies'('urn:example:alice3447', true)). +answer('urn:example:complies'('urn:example:alice3448', true)). +answer('urn:example:complies'('urn:example:alice3449', true)). +answer('urn:example:complies'('urn:example:alice3450', true)). +answer('urn:example:complies'('urn:example:alice3451', true)). +answer('urn:example:complies'('urn:example:alice3452', true)). +answer('urn:example:complies'('urn:example:alice3453', true)). +answer('urn:example:complies'('urn:example:alice3454', true)). +answer('urn:example:complies'('urn:example:alice3455', true)). +answer('urn:example:complies'('urn:example:alice3456', true)). +answer('urn:example:complies'('urn:example:alice3457', true)). +answer('urn:example:complies'('urn:example:alice3458', true)). +answer('urn:example:complies'('urn:example:alice3459', true)). +answer('urn:example:complies'('urn:example:alice3460', true)). +answer('urn:example:complies'('urn:example:alice3461', true)). +answer('urn:example:complies'('urn:example:alice3462', true)). +answer('urn:example:complies'('urn:example:alice3463', true)). +answer('urn:example:complies'('urn:example:alice3464', true)). +answer('urn:example:complies'('urn:example:alice3465', true)). +answer('urn:example:complies'('urn:example:alice3466', true)). +answer('urn:example:complies'('urn:example:alice3467', true)). +answer('urn:example:complies'('urn:example:alice3468', true)). +answer('urn:example:complies'('urn:example:alice3469', true)). +answer('urn:example:complies'('urn:example:alice3470', true)). +answer('urn:example:complies'('urn:example:alice3471', true)). +answer('urn:example:complies'('urn:example:alice3472', true)). +answer('urn:example:complies'('urn:example:alice3473', true)). +answer('urn:example:complies'('urn:example:alice3474', true)). +answer('urn:example:complies'('urn:example:alice3475', true)). +answer('urn:example:complies'('urn:example:alice3476', true)). +answer('urn:example:complies'('urn:example:alice3477', true)). +answer('urn:example:complies'('urn:example:alice3478', true)). +answer('urn:example:complies'('urn:example:alice3479', true)). +answer('urn:example:complies'('urn:example:alice3480', true)). +answer('urn:example:complies'('urn:example:alice3481', true)). +answer('urn:example:complies'('urn:example:alice3482', true)). +answer('urn:example:complies'('urn:example:alice3483', true)). +answer('urn:example:complies'('urn:example:alice3484', true)). +answer('urn:example:complies'('urn:example:alice3485', true)). +answer('urn:example:complies'('urn:example:alice3486', true)). +answer('urn:example:complies'('urn:example:alice3487', true)). +answer('urn:example:complies'('urn:example:alice3488', true)). +answer('urn:example:complies'('urn:example:alice3489', true)). +answer('urn:example:complies'('urn:example:alice3490', true)). +answer('urn:example:complies'('urn:example:alice3491', true)). +answer('urn:example:complies'('urn:example:alice3492', true)). +answer('urn:example:complies'('urn:example:alice3493', true)). +answer('urn:example:complies'('urn:example:alice3494', true)). +answer('urn:example:complies'('urn:example:alice3495', true)). +answer('urn:example:complies'('urn:example:alice3496', true)). +answer('urn:example:complies'('urn:example:alice3497', true)). +answer('urn:example:complies'('urn:example:alice3498', true)). +answer('urn:example:complies'('urn:example:alice3499', true)). +answer('urn:example:complies'('urn:example:alice3500', true)). +answer('urn:example:complies'('urn:example:alice3501', true)). +answer('urn:example:complies'('urn:example:alice3502', true)). +answer('urn:example:complies'('urn:example:alice3503', true)). +answer('urn:example:complies'('urn:example:alice3504', true)). +answer('urn:example:complies'('urn:example:alice3505', true)). +answer('urn:example:complies'('urn:example:alice3506', true)). +answer('urn:example:complies'('urn:example:alice3507', true)). +answer('urn:example:complies'('urn:example:alice3508', true)). +answer('urn:example:complies'('urn:example:alice3509', true)). +answer('urn:example:complies'('urn:example:alice3510', true)). +answer('urn:example:complies'('urn:example:alice3511', true)). +answer('urn:example:complies'('urn:example:alice3512', true)). +answer('urn:example:complies'('urn:example:alice3513', true)). +answer('urn:example:complies'('urn:example:alice3514', true)). +answer('urn:example:complies'('urn:example:alice3515', true)). +answer('urn:example:complies'('urn:example:alice3516', true)). +answer('urn:example:complies'('urn:example:alice3517', true)). +answer('urn:example:complies'('urn:example:alice3518', true)). +answer('urn:example:complies'('urn:example:alice3519', true)). +answer('urn:example:complies'('urn:example:alice3520', true)). +answer('urn:example:complies'('urn:example:alice3521', true)). +answer('urn:example:complies'('urn:example:alice3522', true)). +answer('urn:example:complies'('urn:example:alice3523', true)). +answer('urn:example:complies'('urn:example:alice3524', true)). +answer('urn:example:complies'('urn:example:alice3525', true)). +answer('urn:example:complies'('urn:example:alice3526', true)). +answer('urn:example:complies'('urn:example:alice3527', true)). +answer('urn:example:complies'('urn:example:alice3528', true)). +answer('urn:example:complies'('urn:example:alice3529', true)). +answer('urn:example:complies'('urn:example:alice3530', true)). +answer('urn:example:complies'('urn:example:alice3531', true)). +answer('urn:example:complies'('urn:example:alice3532', true)). +answer('urn:example:complies'('urn:example:alice3533', true)). +answer('urn:example:complies'('urn:example:alice3534', true)). +answer('urn:example:complies'('urn:example:alice3535', true)). +answer('urn:example:complies'('urn:example:alice3536', true)). +answer('urn:example:complies'('urn:example:alice3537', true)). +answer('urn:example:complies'('urn:example:alice3538', true)). +answer('urn:example:complies'('urn:example:alice3539', true)). +answer('urn:example:complies'('urn:example:alice3540', true)). +answer('urn:example:complies'('urn:example:alice3541', true)). +answer('urn:example:complies'('urn:example:alice3542', true)). +answer('urn:example:complies'('urn:example:alice3543', true)). +answer('urn:example:complies'('urn:example:alice3544', true)). +answer('urn:example:complies'('urn:example:alice3545', true)). +answer('urn:example:complies'('urn:example:alice3546', true)). +answer('urn:example:complies'('urn:example:alice3547', true)). +answer('urn:example:complies'('urn:example:alice3548', true)). +answer('urn:example:complies'('urn:example:alice3549', true)). +answer('urn:example:complies'('urn:example:alice3550', true)). +answer('urn:example:complies'('urn:example:alice3551', true)). +answer('urn:example:complies'('urn:example:alice3552', true)). +answer('urn:example:complies'('urn:example:alice3553', true)). +answer('urn:example:complies'('urn:example:alice3554', true)). +answer('urn:example:complies'('urn:example:alice3555', true)). +answer('urn:example:complies'('urn:example:alice3556', true)). +answer('urn:example:complies'('urn:example:alice3557', true)). +answer('urn:example:complies'('urn:example:alice3558', true)). +answer('urn:example:complies'('urn:example:alice3559', true)). +answer('urn:example:complies'('urn:example:alice3560', true)). +answer('urn:example:complies'('urn:example:alice3561', true)). +answer('urn:example:complies'('urn:example:alice3562', true)). +answer('urn:example:complies'('urn:example:alice3563', true)). +answer('urn:example:complies'('urn:example:alice3564', true)). +answer('urn:example:complies'('urn:example:alice3565', true)). +answer('urn:example:complies'('urn:example:alice3566', true)). +answer('urn:example:complies'('urn:example:alice3567', true)). +answer('urn:example:complies'('urn:example:alice3568', true)). +answer('urn:example:complies'('urn:example:alice3569', true)). +answer('urn:example:complies'('urn:example:alice3570', true)). +answer('urn:example:complies'('urn:example:alice3571', true)). +answer('urn:example:complies'('urn:example:alice3572', true)). +answer('urn:example:complies'('urn:example:alice3573', true)). +answer('urn:example:complies'('urn:example:alice3574', true)). +answer('urn:example:complies'('urn:example:alice3575', true)). +answer('urn:example:complies'('urn:example:alice3576', true)). +answer('urn:example:complies'('urn:example:alice3577', true)). +answer('urn:example:complies'('urn:example:alice3578', true)). +answer('urn:example:complies'('urn:example:alice3579', true)). +answer('urn:example:complies'('urn:example:alice3580', true)). +answer('urn:example:complies'('urn:example:alice3581', true)). +answer('urn:example:complies'('urn:example:alice3582', true)). +answer('urn:example:complies'('urn:example:alice3583', true)). +answer('urn:example:complies'('urn:example:alice3584', true)). +answer('urn:example:complies'('urn:example:alice3585', true)). +answer('urn:example:complies'('urn:example:alice3586', true)). +answer('urn:example:complies'('urn:example:alice3587', true)). +answer('urn:example:complies'('urn:example:alice3588', true)). +answer('urn:example:complies'('urn:example:alice3589', true)). +answer('urn:example:complies'('urn:example:alice3590', true)). +answer('urn:example:complies'('urn:example:alice3591', true)). +answer('urn:example:complies'('urn:example:alice3592', true)). +answer('urn:example:complies'('urn:example:alice3593', true)). +answer('urn:example:complies'('urn:example:alice3594', true)). +answer('urn:example:complies'('urn:example:alice3595', true)). +answer('urn:example:complies'('urn:example:alice3596', true)). +answer('urn:example:complies'('urn:example:alice3597', true)). +answer('urn:example:complies'('urn:example:alice3598', true)). +answer('urn:example:complies'('urn:example:alice3599', true)). +answer('urn:example:complies'('urn:example:alice3600', true)). +answer('urn:example:complies'('urn:example:alice3601', true)). +answer('urn:example:complies'('urn:example:alice3602', true)). +answer('urn:example:complies'('urn:example:alice3603', true)). +answer('urn:example:complies'('urn:example:alice3604', true)). +answer('urn:example:complies'('urn:example:alice3605', true)). +answer('urn:example:complies'('urn:example:alice3606', true)). +answer('urn:example:complies'('urn:example:alice3607', true)). +answer('urn:example:complies'('urn:example:alice3608', true)). +answer('urn:example:complies'('urn:example:alice3609', true)). +answer('urn:example:complies'('urn:example:alice3610', true)). +answer('urn:example:complies'('urn:example:alice3611', true)). +answer('urn:example:complies'('urn:example:alice3612', true)). +answer('urn:example:complies'('urn:example:alice3613', true)). +answer('urn:example:complies'('urn:example:alice3614', true)). +answer('urn:example:complies'('urn:example:alice3615', true)). +answer('urn:example:complies'('urn:example:alice3616', true)). +answer('urn:example:complies'('urn:example:alice3617', true)). +answer('urn:example:complies'('urn:example:alice3618', true)). +answer('urn:example:complies'('urn:example:alice3619', true)). +answer('urn:example:complies'('urn:example:alice3620', true)). +answer('urn:example:complies'('urn:example:alice3621', true)). +answer('urn:example:complies'('urn:example:alice3622', true)). +answer('urn:example:complies'('urn:example:alice3623', true)). +answer('urn:example:complies'('urn:example:alice3624', true)). +answer('urn:example:complies'('urn:example:alice3625', true)). +answer('urn:example:complies'('urn:example:alice3626', true)). +answer('urn:example:complies'('urn:example:alice3627', true)). +answer('urn:example:complies'('urn:example:alice3628', true)). +answer('urn:example:complies'('urn:example:alice3629', true)). +answer('urn:example:complies'('urn:example:alice3630', true)). +answer('urn:example:complies'('urn:example:alice3631', true)). +answer('urn:example:complies'('urn:example:alice3632', true)). +answer('urn:example:complies'('urn:example:alice3633', true)). +answer('urn:example:complies'('urn:example:alice3634', true)). +answer('urn:example:complies'('urn:example:alice3635', true)). +answer('urn:example:complies'('urn:example:alice3636', true)). +answer('urn:example:complies'('urn:example:alice3637', true)). +answer('urn:example:complies'('urn:example:alice3638', true)). +answer('urn:example:complies'('urn:example:alice3639', true)). +answer('urn:example:complies'('urn:example:alice3640', true)). +answer('urn:example:complies'('urn:example:alice3641', true)). +answer('urn:example:complies'('urn:example:alice3642', true)). +answer('urn:example:complies'('urn:example:alice3643', true)). +answer('urn:example:complies'('urn:example:alice3644', true)). +answer('urn:example:complies'('urn:example:alice3645', true)). +answer('urn:example:complies'('urn:example:alice3646', true)). +answer('urn:example:complies'('urn:example:alice3647', true)). +answer('urn:example:complies'('urn:example:alice3648', true)). +answer('urn:example:complies'('urn:example:alice3649', true)). +answer('urn:example:complies'('urn:example:alice3650', true)). +answer('urn:example:complies'('urn:example:alice3651', true)). +answer('urn:example:complies'('urn:example:alice3652', true)). +answer('urn:example:complies'('urn:example:alice3653', true)). +answer('urn:example:complies'('urn:example:alice3654', true)). +answer('urn:example:complies'('urn:example:alice3655', true)). +answer('urn:example:complies'('urn:example:alice3656', true)). +answer('urn:example:complies'('urn:example:alice3657', true)). +answer('urn:example:complies'('urn:example:alice3658', true)). +answer('urn:example:complies'('urn:example:alice3659', true)). +answer('urn:example:complies'('urn:example:alice3660', true)). +answer('urn:example:complies'('urn:example:alice3661', true)). +answer('urn:example:complies'('urn:example:alice3662', true)). +answer('urn:example:complies'('urn:example:alice3663', true)). +answer('urn:example:complies'('urn:example:alice3664', true)). +answer('urn:example:complies'('urn:example:alice3665', true)). +answer('urn:example:complies'('urn:example:alice3666', true)). +answer('urn:example:complies'('urn:example:alice3667', true)). +answer('urn:example:complies'('urn:example:alice3668', true)). +answer('urn:example:complies'('urn:example:alice3669', true)). +answer('urn:example:complies'('urn:example:alice3670', true)). +answer('urn:example:complies'('urn:example:alice3671', true)). +answer('urn:example:complies'('urn:example:alice3672', true)). +answer('urn:example:complies'('urn:example:alice3673', true)). +answer('urn:example:complies'('urn:example:alice3674', true)). +answer('urn:example:complies'('urn:example:alice3675', true)). +answer('urn:example:complies'('urn:example:alice3676', true)). +answer('urn:example:complies'('urn:example:alice3677', true)). +answer('urn:example:complies'('urn:example:alice3678', true)). +answer('urn:example:complies'('urn:example:alice3679', true)). +answer('urn:example:complies'('urn:example:alice3680', true)). +answer('urn:example:complies'('urn:example:alice3681', true)). +answer('urn:example:complies'('urn:example:alice3682', true)). +answer('urn:example:complies'('urn:example:alice3683', true)). +answer('urn:example:complies'('urn:example:alice3684', true)). +answer('urn:example:complies'('urn:example:alice3685', true)). +answer('urn:example:complies'('urn:example:alice3686', true)). +answer('urn:example:complies'('urn:example:alice3687', true)). +answer('urn:example:complies'('urn:example:alice3688', true)). +answer('urn:example:complies'('urn:example:alice3689', true)). +answer('urn:example:complies'('urn:example:alice3690', true)). +answer('urn:example:complies'('urn:example:alice3691', true)). +answer('urn:example:complies'('urn:example:alice3692', true)). +answer('urn:example:complies'('urn:example:alice3693', true)). +answer('urn:example:complies'('urn:example:alice3694', true)). +answer('urn:example:complies'('urn:example:alice3695', true)). +answer('urn:example:complies'('urn:example:alice3696', true)). +answer('urn:example:complies'('urn:example:alice3697', true)). +answer('urn:example:complies'('urn:example:alice3698', true)). +answer('urn:example:complies'('urn:example:alice3699', true)). +answer('urn:example:complies'('urn:example:alice3700', true)). +answer('urn:example:complies'('urn:example:alice3701', true)). +answer('urn:example:complies'('urn:example:alice3702', true)). +answer('urn:example:complies'('urn:example:alice3703', true)). +answer('urn:example:complies'('urn:example:alice3704', true)). +answer('urn:example:complies'('urn:example:alice3705', true)). +answer('urn:example:complies'('urn:example:alice3706', true)). +answer('urn:example:complies'('urn:example:alice3707', true)). +answer('urn:example:complies'('urn:example:alice3708', true)). +answer('urn:example:complies'('urn:example:alice3709', true)). +answer('urn:example:complies'('urn:example:alice3710', true)). +answer('urn:example:complies'('urn:example:alice3711', true)). +answer('urn:example:complies'('urn:example:alice3712', true)). +answer('urn:example:complies'('urn:example:alice3713', true)). +answer('urn:example:complies'('urn:example:alice3714', true)). +answer('urn:example:complies'('urn:example:alice3715', true)). +answer('urn:example:complies'('urn:example:alice3716', true)). +answer('urn:example:complies'('urn:example:alice3717', true)). +answer('urn:example:complies'('urn:example:alice3718', true)). +answer('urn:example:complies'('urn:example:alice3719', true)). +answer('urn:example:complies'('urn:example:alice3720', true)). +answer('urn:example:complies'('urn:example:alice3721', true)). +answer('urn:example:complies'('urn:example:alice3722', true)). +answer('urn:example:complies'('urn:example:alice3723', true)). +answer('urn:example:complies'('urn:example:alice3724', true)). +answer('urn:example:complies'('urn:example:alice3725', true)). +answer('urn:example:complies'('urn:example:alice3726', true)). +answer('urn:example:complies'('urn:example:alice3727', true)). +answer('urn:example:complies'('urn:example:alice3728', true)). +answer('urn:example:complies'('urn:example:alice3729', true)). +answer('urn:example:complies'('urn:example:alice3730', true)). +answer('urn:example:complies'('urn:example:alice3731', true)). +answer('urn:example:complies'('urn:example:alice3732', true)). +answer('urn:example:complies'('urn:example:alice3733', true)). +answer('urn:example:complies'('urn:example:alice3734', true)). +answer('urn:example:complies'('urn:example:alice3735', true)). +answer('urn:example:complies'('urn:example:alice3736', true)). +answer('urn:example:complies'('urn:example:alice3737', true)). +answer('urn:example:complies'('urn:example:alice3738', true)). +answer('urn:example:complies'('urn:example:alice3739', true)). +answer('urn:example:complies'('urn:example:alice3740', true)). +answer('urn:example:complies'('urn:example:alice3741', true)). +answer('urn:example:complies'('urn:example:alice3742', true)). +answer('urn:example:complies'('urn:example:alice3743', true)). +answer('urn:example:complies'('urn:example:alice3744', true)). +answer('urn:example:complies'('urn:example:alice3745', true)). +answer('urn:example:complies'('urn:example:alice3746', true)). +answer('urn:example:complies'('urn:example:alice3747', true)). +answer('urn:example:complies'('urn:example:alice3748', true)). +answer('urn:example:complies'('urn:example:alice3749', true)). +answer('urn:example:complies'('urn:example:alice3750', true)). +answer('urn:example:complies'('urn:example:alice3751', true)). +answer('urn:example:complies'('urn:example:alice3752', true)). +answer('urn:example:complies'('urn:example:alice3753', true)). +answer('urn:example:complies'('urn:example:alice3754', true)). +answer('urn:example:complies'('urn:example:alice3755', true)). +answer('urn:example:complies'('urn:example:alice3756', true)). +answer('urn:example:complies'('urn:example:alice3757', true)). +answer('urn:example:complies'('urn:example:alice3758', true)). +answer('urn:example:complies'('urn:example:alice3759', true)). +answer('urn:example:complies'('urn:example:alice3760', true)). +answer('urn:example:complies'('urn:example:alice3761', true)). +answer('urn:example:complies'('urn:example:alice3762', true)). +answer('urn:example:complies'('urn:example:alice3763', true)). +answer('urn:example:complies'('urn:example:alice3764', true)). +answer('urn:example:complies'('urn:example:alice3765', true)). +answer('urn:example:complies'('urn:example:alice3766', true)). +answer('urn:example:complies'('urn:example:alice3767', true)). +answer('urn:example:complies'('urn:example:alice3768', true)). +answer('urn:example:complies'('urn:example:alice3769', true)). +answer('urn:example:complies'('urn:example:alice3770', true)). +answer('urn:example:complies'('urn:example:alice3771', true)). +answer('urn:example:complies'('urn:example:alice3772', true)). +answer('urn:example:complies'('urn:example:alice3773', true)). +answer('urn:example:complies'('urn:example:alice3774', true)). +answer('urn:example:complies'('urn:example:alice3775', true)). +answer('urn:example:complies'('urn:example:alice3776', true)). +answer('urn:example:complies'('urn:example:alice3777', true)). +answer('urn:example:complies'('urn:example:alice3778', true)). +answer('urn:example:complies'('urn:example:alice3779', true)). +answer('urn:example:complies'('urn:example:alice3780', true)). +answer('urn:example:complies'('urn:example:alice3781', true)). +answer('urn:example:complies'('urn:example:alice3782', true)). +answer('urn:example:complies'('urn:example:alice3783', true)). +answer('urn:example:complies'('urn:example:alice3784', true)). +answer('urn:example:complies'('urn:example:alice3785', true)). +answer('urn:example:complies'('urn:example:alice3786', true)). +answer('urn:example:complies'('urn:example:alice3787', true)). +answer('urn:example:complies'('urn:example:alice3788', true)). +answer('urn:example:complies'('urn:example:alice3789', true)). +answer('urn:example:complies'('urn:example:alice3790', true)). +answer('urn:example:complies'('urn:example:alice3791', true)). +answer('urn:example:complies'('urn:example:alice3792', true)). +answer('urn:example:complies'('urn:example:alice3793', true)). +answer('urn:example:complies'('urn:example:alice3794', true)). +answer('urn:example:complies'('urn:example:alice3795', true)). +answer('urn:example:complies'('urn:example:alice3796', true)). +answer('urn:example:complies'('urn:example:alice3797', true)). +answer('urn:example:complies'('urn:example:alice3798', true)). +answer('urn:example:complies'('urn:example:alice3799', true)). +answer('urn:example:complies'('urn:example:alice3800', true)). +answer('urn:example:complies'('urn:example:alice3801', true)). +answer('urn:example:complies'('urn:example:alice3802', true)). +answer('urn:example:complies'('urn:example:alice3803', true)). +answer('urn:example:complies'('urn:example:alice3804', true)). +answer('urn:example:complies'('urn:example:alice3805', true)). +answer('urn:example:complies'('urn:example:alice3806', true)). +answer('urn:example:complies'('urn:example:alice3807', true)). +answer('urn:example:complies'('urn:example:alice3808', true)). +answer('urn:example:complies'('urn:example:alice3809', true)). +answer('urn:example:complies'('urn:example:alice3810', true)). +answer('urn:example:complies'('urn:example:alice3811', true)). +answer('urn:example:complies'('urn:example:alice3812', true)). +answer('urn:example:complies'('urn:example:alice3813', true)). +answer('urn:example:complies'('urn:example:alice3814', true)). +answer('urn:example:complies'('urn:example:alice3815', true)). +answer('urn:example:complies'('urn:example:alice3816', true)). +answer('urn:example:complies'('urn:example:alice3817', true)). +answer('urn:example:complies'('urn:example:alice3818', true)). +answer('urn:example:complies'('urn:example:alice3819', true)). +answer('urn:example:complies'('urn:example:alice3820', true)). +answer('urn:example:complies'('urn:example:alice3821', true)). +answer('urn:example:complies'('urn:example:alice3822', true)). +answer('urn:example:complies'('urn:example:alice3823', true)). +answer('urn:example:complies'('urn:example:alice3824', true)). +answer('urn:example:complies'('urn:example:alice3825', true)). +answer('urn:example:complies'('urn:example:alice3826', true)). +answer('urn:example:complies'('urn:example:alice3827', true)). +answer('urn:example:complies'('urn:example:alice3828', true)). +answer('urn:example:complies'('urn:example:alice3829', true)). +answer('urn:example:complies'('urn:example:alice3830', true)). +answer('urn:example:complies'('urn:example:alice3831', true)). +answer('urn:example:complies'('urn:example:alice3832', true)). +answer('urn:example:complies'('urn:example:alice3833', true)). +answer('urn:example:complies'('urn:example:alice3834', true)). +answer('urn:example:complies'('urn:example:alice3835', true)). +answer('urn:example:complies'('urn:example:alice3836', true)). +answer('urn:example:complies'('urn:example:alice3837', true)). +answer('urn:example:complies'('urn:example:alice3838', true)). +answer('urn:example:complies'('urn:example:alice3839', true)). +answer('urn:example:complies'('urn:example:alice3840', true)). +answer('urn:example:complies'('urn:example:alice3841', true)). +answer('urn:example:complies'('urn:example:alice3842', true)). +answer('urn:example:complies'('urn:example:alice3843', true)). +answer('urn:example:complies'('urn:example:alice3844', true)). +answer('urn:example:complies'('urn:example:alice3845', true)). +answer('urn:example:complies'('urn:example:alice3846', true)). +answer('urn:example:complies'('urn:example:alice3847', true)). +answer('urn:example:complies'('urn:example:alice3848', true)). +answer('urn:example:complies'('urn:example:alice3849', true)). +answer('urn:example:complies'('urn:example:alice3850', true)). +answer('urn:example:complies'('urn:example:alice3851', true)). +answer('urn:example:complies'('urn:example:alice3852', true)). +answer('urn:example:complies'('urn:example:alice3853', true)). +answer('urn:example:complies'('urn:example:alice3854', true)). +answer('urn:example:complies'('urn:example:alice3855', true)). +answer('urn:example:complies'('urn:example:alice3856', true)). +answer('urn:example:complies'('urn:example:alice3857', true)). +answer('urn:example:complies'('urn:example:alice3858', true)). +answer('urn:example:complies'('urn:example:alice3859', true)). +answer('urn:example:complies'('urn:example:alice3860', true)). +answer('urn:example:complies'('urn:example:alice3861', true)). +answer('urn:example:complies'('urn:example:alice3862', true)). +answer('urn:example:complies'('urn:example:alice3863', true)). +answer('urn:example:complies'('urn:example:alice3864', true)). +answer('urn:example:complies'('urn:example:alice3865', true)). +answer('urn:example:complies'('urn:example:alice3866', true)). +answer('urn:example:complies'('urn:example:alice3867', true)). +answer('urn:example:complies'('urn:example:alice3868', true)). +answer('urn:example:complies'('urn:example:alice3869', true)). +answer('urn:example:complies'('urn:example:alice3870', true)). +answer('urn:example:complies'('urn:example:alice3871', true)). +answer('urn:example:complies'('urn:example:alice3872', true)). +answer('urn:example:complies'('urn:example:alice3873', true)). +answer('urn:example:complies'('urn:example:alice3874', true)). +answer('urn:example:complies'('urn:example:alice3875', true)). +answer('urn:example:complies'('urn:example:alice3876', true)). +answer('urn:example:complies'('urn:example:alice3877', true)). +answer('urn:example:complies'('urn:example:alice3878', true)). +answer('urn:example:complies'('urn:example:alice3879', true)). +answer('urn:example:complies'('urn:example:alice3880', true)). +answer('urn:example:complies'('urn:example:alice3881', true)). +answer('urn:example:complies'('urn:example:alice3882', true)). +answer('urn:example:complies'('urn:example:alice3883', true)). +answer('urn:example:complies'('urn:example:alice3884', true)). +answer('urn:example:complies'('urn:example:alice3885', true)). +answer('urn:example:complies'('urn:example:alice3886', true)). +answer('urn:example:complies'('urn:example:alice3887', true)). +answer('urn:example:complies'('urn:example:alice3888', true)). +answer('urn:example:complies'('urn:example:alice3889', true)). +answer('urn:example:complies'('urn:example:alice3890', true)). +answer('urn:example:complies'('urn:example:alice3891', true)). +answer('urn:example:complies'('urn:example:alice3892', true)). +answer('urn:example:complies'('urn:example:alice3893', true)). +answer('urn:example:complies'('urn:example:alice3894', true)). +answer('urn:example:complies'('urn:example:alice3895', true)). +answer('urn:example:complies'('urn:example:alice3896', true)). +answer('urn:example:complies'('urn:example:alice3897', true)). +answer('urn:example:complies'('urn:example:alice3898', true)). +answer('urn:example:complies'('urn:example:alice3899', true)). +answer('urn:example:complies'('urn:example:alice3900', true)). +answer('urn:example:complies'('urn:example:alice3901', true)). +answer('urn:example:complies'('urn:example:alice3902', true)). +answer('urn:example:complies'('urn:example:alice3903', true)). +answer('urn:example:complies'('urn:example:alice3904', true)). +answer('urn:example:complies'('urn:example:alice3905', true)). +answer('urn:example:complies'('urn:example:alice3906', true)). +answer('urn:example:complies'('urn:example:alice3907', true)). +answer('urn:example:complies'('urn:example:alice3908', true)). +answer('urn:example:complies'('urn:example:alice3909', true)). +answer('urn:example:complies'('urn:example:alice3910', true)). +answer('urn:example:complies'('urn:example:alice3911', true)). +answer('urn:example:complies'('urn:example:alice3912', true)). +answer('urn:example:complies'('urn:example:alice3913', true)). +answer('urn:example:complies'('urn:example:alice3914', true)). +answer('urn:example:complies'('urn:example:alice3915', true)). +answer('urn:example:complies'('urn:example:alice3916', true)). +answer('urn:example:complies'('urn:example:alice3917', true)). +answer('urn:example:complies'('urn:example:alice3918', true)). +answer('urn:example:complies'('urn:example:alice3919', true)). +answer('urn:example:complies'('urn:example:alice3920', true)). +answer('urn:example:complies'('urn:example:alice3921', true)). +answer('urn:example:complies'('urn:example:alice3922', true)). +answer('urn:example:complies'('urn:example:alice3923', true)). +answer('urn:example:complies'('urn:example:alice3924', true)). +answer('urn:example:complies'('urn:example:alice3925', true)). +answer('urn:example:complies'('urn:example:alice3926', true)). +answer('urn:example:complies'('urn:example:alice3927', true)). +answer('urn:example:complies'('urn:example:alice3928', true)). +answer('urn:example:complies'('urn:example:alice3929', true)). +answer('urn:example:complies'('urn:example:alice3930', true)). +answer('urn:example:complies'('urn:example:alice3931', true)). +answer('urn:example:complies'('urn:example:alice3932', true)). +answer('urn:example:complies'('urn:example:alice3933', true)). +answer('urn:example:complies'('urn:example:alice3934', true)). +answer('urn:example:complies'('urn:example:alice3935', true)). +answer('urn:example:complies'('urn:example:alice3936', true)). +answer('urn:example:complies'('urn:example:alice3937', true)). +answer('urn:example:complies'('urn:example:alice3938', true)). +answer('urn:example:complies'('urn:example:alice3939', true)). +answer('urn:example:complies'('urn:example:alice3940', true)). +answer('urn:example:complies'('urn:example:alice3941', true)). +answer('urn:example:complies'('urn:example:alice3942', true)). +answer('urn:example:complies'('urn:example:alice3943', true)). +answer('urn:example:complies'('urn:example:alice3944', true)). +answer('urn:example:complies'('urn:example:alice3945', true)). +answer('urn:example:complies'('urn:example:alice3946', true)). +answer('urn:example:complies'('urn:example:alice3947', true)). +answer('urn:example:complies'('urn:example:alice3948', true)). +answer('urn:example:complies'('urn:example:alice3949', true)). +answer('urn:example:complies'('urn:example:alice3950', true)). +answer('urn:example:complies'('urn:example:alice3951', true)). +answer('urn:example:complies'('urn:example:alice3952', true)). +answer('urn:example:complies'('urn:example:alice3953', true)). +answer('urn:example:complies'('urn:example:alice3954', true)). +answer('urn:example:complies'('urn:example:alice3955', true)). +answer('urn:example:complies'('urn:example:alice3956', true)). +answer('urn:example:complies'('urn:example:alice3957', true)). +answer('urn:example:complies'('urn:example:alice3958', true)). +answer('urn:example:complies'('urn:example:alice3959', true)). +answer('urn:example:complies'('urn:example:alice3960', true)). +answer('urn:example:complies'('urn:example:alice3961', true)). +answer('urn:example:complies'('urn:example:alice3962', true)). +answer('urn:example:complies'('urn:example:alice3963', true)). +answer('urn:example:complies'('urn:example:alice3964', true)). +answer('urn:example:complies'('urn:example:alice3965', true)). +answer('urn:example:complies'('urn:example:alice3966', true)). +answer('urn:example:complies'('urn:example:alice3967', true)). +answer('urn:example:complies'('urn:example:alice3968', true)). +answer('urn:example:complies'('urn:example:alice3969', true)). +answer('urn:example:complies'('urn:example:alice3970', true)). +answer('urn:example:complies'('urn:example:alice3971', true)). +answer('urn:example:complies'('urn:example:alice3972', true)). +answer('urn:example:complies'('urn:example:alice3973', true)). +answer('urn:example:complies'('urn:example:alice3974', true)). +answer('urn:example:complies'('urn:example:alice3975', true)). +answer('urn:example:complies'('urn:example:alice3976', true)). +answer('urn:example:complies'('urn:example:alice3977', true)). +answer('urn:example:complies'('urn:example:alice3978', true)). +answer('urn:example:complies'('urn:example:alice3979', true)). +answer('urn:example:complies'('urn:example:alice3980', true)). +answer('urn:example:complies'('urn:example:alice3981', true)). +answer('urn:example:complies'('urn:example:alice3982', true)). +answer('urn:example:complies'('urn:example:alice3983', true)). +answer('urn:example:complies'('urn:example:alice3984', true)). +answer('urn:example:complies'('urn:example:alice3985', true)). +answer('urn:example:complies'('urn:example:alice3986', true)). +answer('urn:example:complies'('urn:example:alice3987', true)). +answer('urn:example:complies'('urn:example:alice3988', true)). +answer('urn:example:complies'('urn:example:alice3989', true)). +answer('urn:example:complies'('urn:example:alice3990', true)). +answer('urn:example:complies'('urn:example:alice3991', true)). +answer('urn:example:complies'('urn:example:alice3992', true)). +answer('urn:example:complies'('urn:example:alice3993', true)). +answer('urn:example:complies'('urn:example:alice3994', true)). +answer('urn:example:complies'('urn:example:alice3995', true)). +answer('urn:example:complies'('urn:example:alice3996', true)). +answer('urn:example:complies'('urn:example:alice3997', true)). +answer('urn:example:complies'('urn:example:alice3998', true)). +answer('urn:example:complies'('urn:example:alice3999', true)). +answer('urn:example:complies'('urn:example:alice4000', true)). +answer('urn:example:complies'('urn:example:alice4001', true)). +answer('urn:example:complies'('urn:example:alice4002', true)). +answer('urn:example:complies'('urn:example:alice4003', true)). +answer('urn:example:complies'('urn:example:alice4004', true)). +answer('urn:example:complies'('urn:example:alice4005', true)). +answer('urn:example:complies'('urn:example:alice4006', true)). +answer('urn:example:complies'('urn:example:alice4007', true)). +answer('urn:example:complies'('urn:example:alice4008', true)). +answer('urn:example:complies'('urn:example:alice4009', true)). +answer('urn:example:complies'('urn:example:alice4010', true)). +answer('urn:example:complies'('urn:example:alice4011', true)). +answer('urn:example:complies'('urn:example:alice4012', true)). +answer('urn:example:complies'('urn:example:alice4013', true)). +answer('urn:example:complies'('urn:example:alice4014', true)). +answer('urn:example:complies'('urn:example:alice4015', true)). +answer('urn:example:complies'('urn:example:alice4016', true)). +answer('urn:example:complies'('urn:example:alice4017', true)). +answer('urn:example:complies'('urn:example:alice4018', true)). +answer('urn:example:complies'('urn:example:alice4019', true)). +answer('urn:example:complies'('urn:example:alice4020', true)). +answer('urn:example:complies'('urn:example:alice4021', true)). +answer('urn:example:complies'('urn:example:alice4022', true)). +answer('urn:example:complies'('urn:example:alice4023', true)). +answer('urn:example:complies'('urn:example:alice4024', true)). +answer('urn:example:complies'('urn:example:alice4025', true)). +answer('urn:example:complies'('urn:example:alice4026', true)). +answer('urn:example:complies'('urn:example:alice4027', true)). +answer('urn:example:complies'('urn:example:alice4028', true)). +answer('urn:example:complies'('urn:example:alice4029', true)). +answer('urn:example:complies'('urn:example:alice4030', true)). +answer('urn:example:complies'('urn:example:alice4031', true)). +answer('urn:example:complies'('urn:example:alice4032', true)). +answer('urn:example:complies'('urn:example:alice4033', true)). +answer('urn:example:complies'('urn:example:alice4034', true)). +answer('urn:example:complies'('urn:example:alice4035', true)). +answer('urn:example:complies'('urn:example:alice4036', true)). +answer('urn:example:complies'('urn:example:alice4037', true)). +answer('urn:example:complies'('urn:example:alice4038', true)). +answer('urn:example:complies'('urn:example:alice4039', true)). +answer('urn:example:complies'('urn:example:alice4040', true)). +answer('urn:example:complies'('urn:example:alice4041', true)). +answer('urn:example:complies'('urn:example:alice4042', true)). +answer('urn:example:complies'('urn:example:alice4043', true)). +answer('urn:example:complies'('urn:example:alice4044', true)). +answer('urn:example:complies'('urn:example:alice4045', true)). +answer('urn:example:complies'('urn:example:alice4046', true)). +answer('urn:example:complies'('urn:example:alice4047', true)). +answer('urn:example:complies'('urn:example:alice4048', true)). +answer('urn:example:complies'('urn:example:alice4049', true)). +answer('urn:example:complies'('urn:example:alice4050', true)). +answer('urn:example:complies'('urn:example:alice4051', true)). +answer('urn:example:complies'('urn:example:alice4052', true)). +answer('urn:example:complies'('urn:example:alice4053', true)). +answer('urn:example:complies'('urn:example:alice4054', true)). +answer('urn:example:complies'('urn:example:alice4055', true)). +answer('urn:example:complies'('urn:example:alice4056', true)). +answer('urn:example:complies'('urn:example:alice4057', true)). +answer('urn:example:complies'('urn:example:alice4058', true)). +answer('urn:example:complies'('urn:example:alice4059', true)). +answer('urn:example:complies'('urn:example:alice4060', true)). +answer('urn:example:complies'('urn:example:alice4061', true)). +answer('urn:example:complies'('urn:example:alice4062', true)). +answer('urn:example:complies'('urn:example:alice4063', true)). +answer('urn:example:complies'('urn:example:alice4064', true)). +answer('urn:example:complies'('urn:example:alice4065', true)). +answer('urn:example:complies'('urn:example:alice4066', true)). +answer('urn:example:complies'('urn:example:alice4067', true)). +answer('urn:example:complies'('urn:example:alice4068', true)). +answer('urn:example:complies'('urn:example:alice4069', true)). +answer('urn:example:complies'('urn:example:alice4070', true)). +answer('urn:example:complies'('urn:example:alice4071', true)). +answer('urn:example:complies'('urn:example:alice4072', true)). +answer('urn:example:complies'('urn:example:alice4073', true)). +answer('urn:example:complies'('urn:example:alice4074', true)). +answer('urn:example:complies'('urn:example:alice4075', true)). +answer('urn:example:complies'('urn:example:alice4076', true)). +answer('urn:example:complies'('urn:example:alice4077', true)). +answer('urn:example:complies'('urn:example:alice4078', true)). +answer('urn:example:complies'('urn:example:alice4079', true)). +answer('urn:example:complies'('urn:example:alice4080', true)). +answer('urn:example:complies'('urn:example:alice4081', true)). +answer('urn:example:complies'('urn:example:alice4082', true)). +answer('urn:example:complies'('urn:example:alice4083', true)). +answer('urn:example:complies'('urn:example:alice4084', true)). +answer('urn:example:complies'('urn:example:alice4085', true)). +answer('urn:example:complies'('urn:example:alice4086', true)). +answer('urn:example:complies'('urn:example:alice4087', true)). +answer('urn:example:complies'('urn:example:alice4088', true)). +answer('urn:example:complies'('urn:example:alice4089', true)). +answer('urn:example:complies'('urn:example:alice4090', true)). +answer('urn:example:complies'('urn:example:alice4091', true)). +answer('urn:example:complies'('urn:example:alice4092', true)). +answer('urn:example:complies'('urn:example:alice4093', true)). +answer('urn:example:complies'('urn:example:alice4094', true)). +answer('urn:example:complies'('urn:example:alice4095', true)). +answer('urn:example:complies'('urn:example:alice4096', true)). +answer('urn:example:complies'('urn:example:alice4097', true)). +answer('urn:example:complies'('urn:example:alice4098', true)). +answer('urn:example:complies'('urn:example:alice4099', true)). +answer('urn:example:complies'('urn:example:alice4100', true)). +answer('urn:example:complies'('urn:example:alice4101', true)). +answer('urn:example:complies'('urn:example:alice4102', true)). +answer('urn:example:complies'('urn:example:alice4103', true)). +answer('urn:example:complies'('urn:example:alice4104', true)). +answer('urn:example:complies'('urn:example:alice4105', true)). +answer('urn:example:complies'('urn:example:alice4106', true)). +answer('urn:example:complies'('urn:example:alice4107', true)). +answer('urn:example:complies'('urn:example:alice4108', true)). +answer('urn:example:complies'('urn:example:alice4109', true)). +answer('urn:example:complies'('urn:example:alice4110', true)). +answer('urn:example:complies'('urn:example:alice4111', true)). +answer('urn:example:complies'('urn:example:alice4112', true)). +answer('urn:example:complies'('urn:example:alice4113', true)). +answer('urn:example:complies'('urn:example:alice4114', true)). +answer('urn:example:complies'('urn:example:alice4115', true)). +answer('urn:example:complies'('urn:example:alice4116', true)). +answer('urn:example:complies'('urn:example:alice4117', true)). +answer('urn:example:complies'('urn:example:alice4118', true)). +answer('urn:example:complies'('urn:example:alice4119', true)). +answer('urn:example:complies'('urn:example:alice4120', true)). +answer('urn:example:complies'('urn:example:alice4121', true)). +answer('urn:example:complies'('urn:example:alice4122', true)). +answer('urn:example:complies'('urn:example:alice4123', true)). +answer('urn:example:complies'('urn:example:alice4124', true)). +answer('urn:example:complies'('urn:example:alice4125', true)). +answer('urn:example:complies'('urn:example:alice4126', true)). +answer('urn:example:complies'('urn:example:alice4127', true)). +answer('urn:example:complies'('urn:example:alice4128', true)). +answer('urn:example:complies'('urn:example:alice4129', true)). +answer('urn:example:complies'('urn:example:alice4130', true)). +answer('urn:example:complies'('urn:example:alice4131', true)). +answer('urn:example:complies'('urn:example:alice4132', true)). +answer('urn:example:complies'('urn:example:alice4133', true)). +answer('urn:example:complies'('urn:example:alice4134', true)). +answer('urn:example:complies'('urn:example:alice4135', true)). +answer('urn:example:complies'('urn:example:alice4136', true)). +answer('urn:example:complies'('urn:example:alice4137', true)). +answer('urn:example:complies'('urn:example:alice4138', true)). +answer('urn:example:complies'('urn:example:alice4139', true)). +answer('urn:example:complies'('urn:example:alice4140', true)). +answer('urn:example:complies'('urn:example:alice4141', true)). +answer('urn:example:complies'('urn:example:alice4142', true)). +answer('urn:example:complies'('urn:example:alice4143', true)). +answer('urn:example:complies'('urn:example:alice4144', true)). +answer('urn:example:complies'('urn:example:alice4145', true)). +answer('urn:example:complies'('urn:example:alice4146', true)). +answer('urn:example:complies'('urn:example:alice4147', true)). +answer('urn:example:complies'('urn:example:alice4148', true)). +answer('urn:example:complies'('urn:example:alice4149', true)). +answer('urn:example:complies'('urn:example:alice4150', true)). +answer('urn:example:complies'('urn:example:alice4151', true)). +answer('urn:example:complies'('urn:example:alice4152', true)). +answer('urn:example:complies'('urn:example:alice4153', true)). +answer('urn:example:complies'('urn:example:alice4154', true)). +answer('urn:example:complies'('urn:example:alice4155', true)). +answer('urn:example:complies'('urn:example:alice4156', true)). +answer('urn:example:complies'('urn:example:alice4157', true)). +answer('urn:example:complies'('urn:example:alice4158', true)). +answer('urn:example:complies'('urn:example:alice4159', true)). +answer('urn:example:complies'('urn:example:alice4160', true)). +answer('urn:example:complies'('urn:example:alice4161', true)). +answer('urn:example:complies'('urn:example:alice4162', true)). +answer('urn:example:complies'('urn:example:alice4163', true)). +answer('urn:example:complies'('urn:example:alice4164', true)). +answer('urn:example:complies'('urn:example:alice4165', true)). +answer('urn:example:complies'('urn:example:alice4166', true)). +answer('urn:example:complies'('urn:example:alice4167', true)). +answer('urn:example:complies'('urn:example:alice4168', true)). +answer('urn:example:complies'('urn:example:alice4169', true)). +answer('urn:example:complies'('urn:example:alice4170', true)). +answer('urn:example:complies'('urn:example:alice4171', true)). +answer('urn:example:complies'('urn:example:alice4172', true)). +answer('urn:example:complies'('urn:example:alice4173', true)). +answer('urn:example:complies'('urn:example:alice4174', true)). +answer('urn:example:complies'('urn:example:alice4175', true)). +answer('urn:example:complies'('urn:example:alice4176', true)). +answer('urn:example:complies'('urn:example:alice4177', true)). +answer('urn:example:complies'('urn:example:alice4178', true)). +answer('urn:example:complies'('urn:example:alice4179', true)). +answer('urn:example:complies'('urn:example:alice4180', true)). +answer('urn:example:complies'('urn:example:alice4181', true)). +answer('urn:example:complies'('urn:example:alice4182', true)). +answer('urn:example:complies'('urn:example:alice4183', true)). +answer('urn:example:complies'('urn:example:alice4184', true)). +answer('urn:example:complies'('urn:example:alice4185', true)). +answer('urn:example:complies'('urn:example:alice4186', true)). +answer('urn:example:complies'('urn:example:alice4187', true)). +answer('urn:example:complies'('urn:example:alice4188', true)). +answer('urn:example:complies'('urn:example:alice4189', true)). +answer('urn:example:complies'('urn:example:alice4190', true)). +answer('urn:example:complies'('urn:example:alice4191', true)). +answer('urn:example:complies'('urn:example:alice4192', true)). +answer('urn:example:complies'('urn:example:alice4193', true)). +answer('urn:example:complies'('urn:example:alice4194', true)). +answer('urn:example:complies'('urn:example:alice4195', true)). +answer('urn:example:complies'('urn:example:alice4196', true)). +answer('urn:example:complies'('urn:example:alice4197', true)). +answer('urn:example:complies'('urn:example:alice4198', true)). +answer('urn:example:complies'('urn:example:alice4199', true)). +answer('urn:example:complies'('urn:example:alice4200', true)). +answer('urn:example:complies'('urn:example:alice4201', true)). +answer('urn:example:complies'('urn:example:alice4202', true)). +answer('urn:example:complies'('urn:example:alice4203', true)). +answer('urn:example:complies'('urn:example:alice4204', true)). +answer('urn:example:complies'('urn:example:alice4205', true)). +answer('urn:example:complies'('urn:example:alice4206', true)). +answer('urn:example:complies'('urn:example:alice4207', true)). +answer('urn:example:complies'('urn:example:alice4208', true)). +answer('urn:example:complies'('urn:example:alice4209', true)). +answer('urn:example:complies'('urn:example:alice4210', true)). +answer('urn:example:complies'('urn:example:alice4211', true)). +answer('urn:example:complies'('urn:example:alice4212', true)). +answer('urn:example:complies'('urn:example:alice4213', true)). +answer('urn:example:complies'('urn:example:alice4214', true)). +answer('urn:example:complies'('urn:example:alice4215', true)). +answer('urn:example:complies'('urn:example:alice4216', true)). +answer('urn:example:complies'('urn:example:alice4217', true)). +answer('urn:example:complies'('urn:example:alice4218', true)). +answer('urn:example:complies'('urn:example:alice4219', true)). +answer('urn:example:complies'('urn:example:alice4220', true)). +answer('urn:example:complies'('urn:example:alice4221', true)). +answer('urn:example:complies'('urn:example:alice4222', true)). +answer('urn:example:complies'('urn:example:alice4223', true)). +answer('urn:example:complies'('urn:example:alice4224', true)). +answer('urn:example:complies'('urn:example:alice4225', true)). +answer('urn:example:complies'('urn:example:alice4226', true)). +answer('urn:example:complies'('urn:example:alice4227', true)). +answer('urn:example:complies'('urn:example:alice4228', true)). +answer('urn:example:complies'('urn:example:alice4229', true)). +answer('urn:example:complies'('urn:example:alice4230', true)). +answer('urn:example:complies'('urn:example:alice4231', true)). +answer('urn:example:complies'('urn:example:alice4232', true)). +answer('urn:example:complies'('urn:example:alice4233', true)). +answer('urn:example:complies'('urn:example:alice4234', true)). +answer('urn:example:complies'('urn:example:alice4235', true)). +answer('urn:example:complies'('urn:example:alice4236', true)). +answer('urn:example:complies'('urn:example:alice4237', true)). +answer('urn:example:complies'('urn:example:alice4238', true)). +answer('urn:example:complies'('urn:example:alice4239', true)). +answer('urn:example:complies'('urn:example:alice4240', true)). +answer('urn:example:complies'('urn:example:alice4241', true)). +answer('urn:example:complies'('urn:example:alice4242', true)). +answer('urn:example:complies'('urn:example:alice4243', true)). +answer('urn:example:complies'('urn:example:alice4244', true)). +answer('urn:example:complies'('urn:example:alice4245', true)). +answer('urn:example:complies'('urn:example:alice4246', true)). +answer('urn:example:complies'('urn:example:alice4247', true)). +answer('urn:example:complies'('urn:example:alice4248', true)). +answer('urn:example:complies'('urn:example:alice4249', true)). +answer('urn:example:complies'('urn:example:alice4250', true)). +answer('urn:example:complies'('urn:example:alice4251', true)). +answer('urn:example:complies'('urn:example:alice4252', true)). +answer('urn:example:complies'('urn:example:alice4253', true)). +answer('urn:example:complies'('urn:example:alice4254', true)). +answer('urn:example:complies'('urn:example:alice4255', true)). +answer('urn:example:complies'('urn:example:alice4256', true)). +answer('urn:example:complies'('urn:example:alice4257', true)). +answer('urn:example:complies'('urn:example:alice4258', true)). +answer('urn:example:complies'('urn:example:alice4259', true)). +answer('urn:example:complies'('urn:example:alice4260', true)). +answer('urn:example:complies'('urn:example:alice4261', true)). +answer('urn:example:complies'('urn:example:alice4262', true)). +answer('urn:example:complies'('urn:example:alice4263', true)). +answer('urn:example:complies'('urn:example:alice4264', true)). +answer('urn:example:complies'('urn:example:alice4265', true)). +answer('urn:example:complies'('urn:example:alice4266', true)). +answer('urn:example:complies'('urn:example:alice4267', true)). +answer('urn:example:complies'('urn:example:alice4268', true)). +answer('urn:example:complies'('urn:example:alice4269', true)). +answer('urn:example:complies'('urn:example:alice4270', true)). +answer('urn:example:complies'('urn:example:alice4271', true)). +answer('urn:example:complies'('urn:example:alice4272', true)). +answer('urn:example:complies'('urn:example:alice4273', true)). +answer('urn:example:complies'('urn:example:alice4274', true)). +answer('urn:example:complies'('urn:example:alice4275', true)). +answer('urn:example:complies'('urn:example:alice4276', true)). +answer('urn:example:complies'('urn:example:alice4277', true)). +answer('urn:example:complies'('urn:example:alice4278', true)). +answer('urn:example:complies'('urn:example:alice4279', true)). +answer('urn:example:complies'('urn:example:alice4280', true)). +answer('urn:example:complies'('urn:example:alice4281', true)). +answer('urn:example:complies'('urn:example:alice4282', true)). +answer('urn:example:complies'('urn:example:alice4283', true)). +answer('urn:example:complies'('urn:example:alice4284', true)). +answer('urn:example:complies'('urn:example:alice4285', true)). +answer('urn:example:complies'('urn:example:alice4286', true)). +answer('urn:example:complies'('urn:example:alice4287', true)). +answer('urn:example:complies'('urn:example:alice4288', true)). +answer('urn:example:complies'('urn:example:alice4289', true)). +answer('urn:example:complies'('urn:example:alice4290', true)). +answer('urn:example:complies'('urn:example:alice4291', true)). +answer('urn:example:complies'('urn:example:alice4292', true)). +answer('urn:example:complies'('urn:example:alice4293', true)). +answer('urn:example:complies'('urn:example:alice4294', true)). +answer('urn:example:complies'('urn:example:alice4295', true)). +answer('urn:example:complies'('urn:example:alice4296', true)). +answer('urn:example:complies'('urn:example:alice4297', true)). +answer('urn:example:complies'('urn:example:alice4298', true)). +answer('urn:example:complies'('urn:example:alice4299', true)). +answer('urn:example:complies'('urn:example:alice4300', true)). +answer('urn:example:complies'('urn:example:alice4301', true)). +answer('urn:example:complies'('urn:example:alice4302', true)). +answer('urn:example:complies'('urn:example:alice4303', true)). +answer('urn:example:complies'('urn:example:alice4304', true)). +answer('urn:example:complies'('urn:example:alice4305', true)). +answer('urn:example:complies'('urn:example:alice4306', true)). +answer('urn:example:complies'('urn:example:alice4307', true)). +answer('urn:example:complies'('urn:example:alice4308', true)). +answer('urn:example:complies'('urn:example:alice4309', true)). +answer('urn:example:complies'('urn:example:alice4310', true)). +answer('urn:example:complies'('urn:example:alice4311', true)). +answer('urn:example:complies'('urn:example:alice4312', true)). +answer('urn:example:complies'('urn:example:alice4313', true)). +answer('urn:example:complies'('urn:example:alice4314', true)). +answer('urn:example:complies'('urn:example:alice4315', true)). +answer('urn:example:complies'('urn:example:alice4316', true)). +answer('urn:example:complies'('urn:example:alice4317', true)). +answer('urn:example:complies'('urn:example:alice4318', true)). +answer('urn:example:complies'('urn:example:alice4319', true)). +answer('urn:example:complies'('urn:example:alice4320', true)). +answer('urn:example:complies'('urn:example:alice4321', true)). +answer('urn:example:complies'('urn:example:alice4322', true)). +answer('urn:example:complies'('urn:example:alice4323', true)). +answer('urn:example:complies'('urn:example:alice4324', true)). +answer('urn:example:complies'('urn:example:alice4325', true)). +answer('urn:example:complies'('urn:example:alice4326', true)). +answer('urn:example:complies'('urn:example:alice4327', true)). +answer('urn:example:complies'('urn:example:alice4328', true)). +answer('urn:example:complies'('urn:example:alice4329', true)). +answer('urn:example:complies'('urn:example:alice4330', true)). +answer('urn:example:complies'('urn:example:alice4331', true)). +answer('urn:example:complies'('urn:example:alice4332', true)). +answer('urn:example:complies'('urn:example:alice4333', true)). +answer('urn:example:complies'('urn:example:alice4334', true)). +answer('urn:example:complies'('urn:example:alice4335', true)). +answer('urn:example:complies'('urn:example:alice4336', true)). +answer('urn:example:complies'('urn:example:alice4337', true)). +answer('urn:example:complies'('urn:example:alice4338', true)). +answer('urn:example:complies'('urn:example:alice4339', true)). +answer('urn:example:complies'('urn:example:alice4340', true)). +answer('urn:example:complies'('urn:example:alice4341', true)). +answer('urn:example:complies'('urn:example:alice4342', true)). +answer('urn:example:complies'('urn:example:alice4343', true)). +answer('urn:example:complies'('urn:example:alice4344', true)). +answer('urn:example:complies'('urn:example:alice4345', true)). +answer('urn:example:complies'('urn:example:alice4346', true)). +answer('urn:example:complies'('urn:example:alice4347', true)). +answer('urn:example:complies'('urn:example:alice4348', true)). +answer('urn:example:complies'('urn:example:alice4349', true)). +answer('urn:example:complies'('urn:example:alice4350', true)). +answer('urn:example:complies'('urn:example:alice4351', true)). +answer('urn:example:complies'('urn:example:alice4352', true)). +answer('urn:example:complies'('urn:example:alice4353', true)). +answer('urn:example:complies'('urn:example:alice4354', true)). +answer('urn:example:complies'('urn:example:alice4355', true)). +answer('urn:example:complies'('urn:example:alice4356', true)). +answer('urn:example:complies'('urn:example:alice4357', true)). +answer('urn:example:complies'('urn:example:alice4358', true)). +answer('urn:example:complies'('urn:example:alice4359', true)). +answer('urn:example:complies'('urn:example:alice4360', true)). +answer('urn:example:complies'('urn:example:alice4361', true)). +answer('urn:example:complies'('urn:example:alice4362', true)). +answer('urn:example:complies'('urn:example:alice4363', true)). +answer('urn:example:complies'('urn:example:alice4364', true)). +answer('urn:example:complies'('urn:example:alice4365', true)). +answer('urn:example:complies'('urn:example:alice4366', true)). +answer('urn:example:complies'('urn:example:alice4367', true)). +answer('urn:example:complies'('urn:example:alice4368', true)). +answer('urn:example:complies'('urn:example:alice4369', true)). +answer('urn:example:complies'('urn:example:alice4370', true)). +answer('urn:example:complies'('urn:example:alice4371', true)). +answer('urn:example:complies'('urn:example:alice4372', true)). +answer('urn:example:complies'('urn:example:alice4373', true)). +answer('urn:example:complies'('urn:example:alice4374', true)). +answer('urn:example:complies'('urn:example:alice4375', true)). +answer('urn:example:complies'('urn:example:alice4376', true)). +answer('urn:example:complies'('urn:example:alice4377', true)). +answer('urn:example:complies'('urn:example:alice4378', true)). +answer('urn:example:complies'('urn:example:alice4379', true)). +answer('urn:example:complies'('urn:example:alice4380', true)). +answer('urn:example:complies'('urn:example:alice4381', true)). +answer('urn:example:complies'('urn:example:alice4382', true)). +answer('urn:example:complies'('urn:example:alice4383', true)). +answer('urn:example:complies'('urn:example:alice4384', true)). +answer('urn:example:complies'('urn:example:alice4385', true)). +answer('urn:example:complies'('urn:example:alice4386', true)). +answer('urn:example:complies'('urn:example:alice4387', true)). +answer('urn:example:complies'('urn:example:alice4388', true)). +answer('urn:example:complies'('urn:example:alice4389', true)). +answer('urn:example:complies'('urn:example:alice4390', true)). +answer('urn:example:complies'('urn:example:alice4391', true)). +answer('urn:example:complies'('urn:example:alice4392', true)). +answer('urn:example:complies'('urn:example:alice4393', true)). +answer('urn:example:complies'('urn:example:alice4394', true)). +answer('urn:example:complies'('urn:example:alice4395', true)). +answer('urn:example:complies'('urn:example:alice4396', true)). +answer('urn:example:complies'('urn:example:alice4397', true)). +answer('urn:example:complies'('urn:example:alice4398', true)). +answer('urn:example:complies'('urn:example:alice4399', true)). +answer('urn:example:complies'('urn:example:alice4400', true)). +answer('urn:example:complies'('urn:example:alice4401', true)). +answer('urn:example:complies'('urn:example:alice4402', true)). +answer('urn:example:complies'('urn:example:alice4403', true)). +answer('urn:example:complies'('urn:example:alice4404', true)). +answer('urn:example:complies'('urn:example:alice4405', true)). +answer('urn:example:complies'('urn:example:alice4406', true)). +answer('urn:example:complies'('urn:example:alice4407', true)). +answer('urn:example:complies'('urn:example:alice4408', true)). +answer('urn:example:complies'('urn:example:alice4409', true)). +answer('urn:example:complies'('urn:example:alice4410', true)). +answer('urn:example:complies'('urn:example:alice4411', true)). +answer('urn:example:complies'('urn:example:alice4412', true)). +answer('urn:example:complies'('urn:example:alice4413', true)). +answer('urn:example:complies'('urn:example:alice4414', true)). +answer('urn:example:complies'('urn:example:alice4415', true)). +answer('urn:example:complies'('urn:example:alice4416', true)). +answer('urn:example:complies'('urn:example:alice4417', true)). +answer('urn:example:complies'('urn:example:alice4418', true)). +answer('urn:example:complies'('urn:example:alice4419', true)). +answer('urn:example:complies'('urn:example:alice4420', true)). +answer('urn:example:complies'('urn:example:alice4421', true)). +answer('urn:example:complies'('urn:example:alice4422', true)). +answer('urn:example:complies'('urn:example:alice4423', true)). +answer('urn:example:complies'('urn:example:alice4424', true)). +answer('urn:example:complies'('urn:example:alice4425', true)). +answer('urn:example:complies'('urn:example:alice4426', true)). +answer('urn:example:complies'('urn:example:alice4427', true)). +answer('urn:example:complies'('urn:example:alice4428', true)). +answer('urn:example:complies'('urn:example:alice4429', true)). +answer('urn:example:complies'('urn:example:alice4430', true)). +answer('urn:example:complies'('urn:example:alice4431', true)). +answer('urn:example:complies'('urn:example:alice4432', true)). +answer('urn:example:complies'('urn:example:alice4433', true)). +answer('urn:example:complies'('urn:example:alice4434', true)). +answer('urn:example:complies'('urn:example:alice4435', true)). +answer('urn:example:complies'('urn:example:alice4436', true)). +answer('urn:example:complies'('urn:example:alice4437', true)). +answer('urn:example:complies'('urn:example:alice4438', true)). +answer('urn:example:complies'('urn:example:alice4439', true)). +answer('urn:example:complies'('urn:example:alice4440', true)). +answer('urn:example:complies'('urn:example:alice4441', true)). +answer('urn:example:complies'('urn:example:alice4442', true)). +answer('urn:example:complies'('urn:example:alice4443', true)). +answer('urn:example:complies'('urn:example:alice4444', true)). +answer('urn:example:complies'('urn:example:alice4445', true)). +answer('urn:example:complies'('urn:example:alice4446', true)). +answer('urn:example:complies'('urn:example:alice4447', true)). +answer('urn:example:complies'('urn:example:alice4448', true)). +answer('urn:example:complies'('urn:example:alice4449', true)). +answer('urn:example:complies'('urn:example:alice4450', true)). +answer('urn:example:complies'('urn:example:alice4451', true)). +answer('urn:example:complies'('urn:example:alice4452', true)). +answer('urn:example:complies'('urn:example:alice4453', true)). +answer('urn:example:complies'('urn:example:alice4454', true)). +answer('urn:example:complies'('urn:example:alice4455', true)). +answer('urn:example:complies'('urn:example:alice4456', true)). +answer('urn:example:complies'('urn:example:alice4457', true)). +answer('urn:example:complies'('urn:example:alice4458', true)). +answer('urn:example:complies'('urn:example:alice4459', true)). +answer('urn:example:complies'('urn:example:alice4460', true)). +answer('urn:example:complies'('urn:example:alice4461', true)). +answer('urn:example:complies'('urn:example:alice4462', true)). +answer('urn:example:complies'('urn:example:alice4463', true)). +answer('urn:example:complies'('urn:example:alice4464', true)). +answer('urn:example:complies'('urn:example:alice4465', true)). +answer('urn:example:complies'('urn:example:alice4466', true)). +answer('urn:example:complies'('urn:example:alice4467', true)). +answer('urn:example:complies'('urn:example:alice4468', true)). +answer('urn:example:complies'('urn:example:alice4469', true)). +answer('urn:example:complies'('urn:example:alice4470', true)). +answer('urn:example:complies'('urn:example:alice4471', true)). +answer('urn:example:complies'('urn:example:alice4472', true)). +answer('urn:example:complies'('urn:example:alice4473', true)). +answer('urn:example:complies'('urn:example:alice4474', true)). +answer('urn:example:complies'('urn:example:alice4475', true)). +answer('urn:example:complies'('urn:example:alice4476', true)). +answer('urn:example:complies'('urn:example:alice4477', true)). +answer('urn:example:complies'('urn:example:alice4478', true)). +answer('urn:example:complies'('urn:example:alice4479', true)). +answer('urn:example:complies'('urn:example:alice4480', true)). +answer('urn:example:complies'('urn:example:alice4481', true)). +answer('urn:example:complies'('urn:example:alice4482', true)). +answer('urn:example:complies'('urn:example:alice4483', true)). +answer('urn:example:complies'('urn:example:alice4484', true)). +answer('urn:example:complies'('urn:example:alice4485', true)). +answer('urn:example:complies'('urn:example:alice4486', true)). +answer('urn:example:complies'('urn:example:alice4487', true)). +answer('urn:example:complies'('urn:example:alice4488', true)). +answer('urn:example:complies'('urn:example:alice4489', true)). +answer('urn:example:complies'('urn:example:alice4490', true)). +answer('urn:example:complies'('urn:example:alice4491', true)). +answer('urn:example:complies'('urn:example:alice4492', true)). +answer('urn:example:complies'('urn:example:alice4493', true)). +answer('urn:example:complies'('urn:example:alice4494', true)). +answer('urn:example:complies'('urn:example:alice4495', true)). +answer('urn:example:complies'('urn:example:alice4496', true)). +answer('urn:example:complies'('urn:example:alice4497', true)). +answer('urn:example:complies'('urn:example:alice4498', true)). +answer('urn:example:complies'('urn:example:alice4499', true)). +answer('urn:example:complies'('urn:example:alice4500', true)). +answer('urn:example:complies'('urn:example:alice4501', true)). +answer('urn:example:complies'('urn:example:alice4502', true)). +answer('urn:example:complies'('urn:example:alice4503', true)). +answer('urn:example:complies'('urn:example:alice4504', true)). +answer('urn:example:complies'('urn:example:alice4505', true)). +answer('urn:example:complies'('urn:example:alice4506', true)). +answer('urn:example:complies'('urn:example:alice4507', true)). +answer('urn:example:complies'('urn:example:alice4508', true)). +answer('urn:example:complies'('urn:example:alice4509', true)). +answer('urn:example:complies'('urn:example:alice4510', true)). +answer('urn:example:complies'('urn:example:alice4511', true)). +answer('urn:example:complies'('urn:example:alice4512', true)). +answer('urn:example:complies'('urn:example:alice4513', true)). +answer('urn:example:complies'('urn:example:alice4514', true)). +answer('urn:example:complies'('urn:example:alice4515', true)). +answer('urn:example:complies'('urn:example:alice4516', true)). +answer('urn:example:complies'('urn:example:alice4517', true)). +answer('urn:example:complies'('urn:example:alice4518', true)). +answer('urn:example:complies'('urn:example:alice4519', true)). +answer('urn:example:complies'('urn:example:alice4520', true)). +answer('urn:example:complies'('urn:example:alice4521', true)). +answer('urn:example:complies'('urn:example:alice4522', true)). +answer('urn:example:complies'('urn:example:alice4523', true)). +answer('urn:example:complies'('urn:example:alice4524', true)). +answer('urn:example:complies'('urn:example:alice4525', true)). +answer('urn:example:complies'('urn:example:alice4526', true)). +answer('urn:example:complies'('urn:example:alice4527', true)). +answer('urn:example:complies'('urn:example:alice4528', true)). +answer('urn:example:complies'('urn:example:alice4529', true)). +answer('urn:example:complies'('urn:example:alice4530', true)). +answer('urn:example:complies'('urn:example:alice4531', true)). +answer('urn:example:complies'('urn:example:alice4532', true)). +answer('urn:example:complies'('urn:example:alice4533', true)). +answer('urn:example:complies'('urn:example:alice4534', true)). +answer('urn:example:complies'('urn:example:alice4535', true)). +answer('urn:example:complies'('urn:example:alice4536', true)). +answer('urn:example:complies'('urn:example:alice4537', true)). +answer('urn:example:complies'('urn:example:alice4538', true)). +answer('urn:example:complies'('urn:example:alice4539', true)). +answer('urn:example:complies'('urn:example:alice4540', true)). +answer('urn:example:complies'('urn:example:alice4541', true)). +answer('urn:example:complies'('urn:example:alice4542', true)). +answer('urn:example:complies'('urn:example:alice4543', true)). +answer('urn:example:complies'('urn:example:alice4544', true)). +answer('urn:example:complies'('urn:example:alice4545', true)). +answer('urn:example:complies'('urn:example:alice4546', true)). +answer('urn:example:complies'('urn:example:alice4547', true)). +answer('urn:example:complies'('urn:example:alice4548', true)). +answer('urn:example:complies'('urn:example:alice4549', true)). +answer('urn:example:complies'('urn:example:alice4550', true)). +answer('urn:example:complies'('urn:example:alice4551', true)). +answer('urn:example:complies'('urn:example:alice4552', true)). +answer('urn:example:complies'('urn:example:alice4553', true)). +answer('urn:example:complies'('urn:example:alice4554', true)). +answer('urn:example:complies'('urn:example:alice4555', true)). +answer('urn:example:complies'('urn:example:alice4556', true)). +answer('urn:example:complies'('urn:example:alice4557', true)). +answer('urn:example:complies'('urn:example:alice4558', true)). +answer('urn:example:complies'('urn:example:alice4559', true)). +answer('urn:example:complies'('urn:example:alice4560', true)). +answer('urn:example:complies'('urn:example:alice4561', true)). +answer('urn:example:complies'('urn:example:alice4562', true)). +answer('urn:example:complies'('urn:example:alice4563', true)). +answer('urn:example:complies'('urn:example:alice4564', true)). +answer('urn:example:complies'('urn:example:alice4565', true)). +answer('urn:example:complies'('urn:example:alice4566', true)). +answer('urn:example:complies'('urn:example:alice4567', true)). +answer('urn:example:complies'('urn:example:alice4568', true)). +answer('urn:example:complies'('urn:example:alice4569', true)). +answer('urn:example:complies'('urn:example:alice4570', true)). +answer('urn:example:complies'('urn:example:alice4571', true)). +answer('urn:example:complies'('urn:example:alice4572', true)). +answer('urn:example:complies'('urn:example:alice4573', true)). +answer('urn:example:complies'('urn:example:alice4574', true)). +answer('urn:example:complies'('urn:example:alice4575', true)). +answer('urn:example:complies'('urn:example:alice4576', true)). +answer('urn:example:complies'('urn:example:alice4577', true)). +answer('urn:example:complies'('urn:example:alice4578', true)). +answer('urn:example:complies'('urn:example:alice4579', true)). +answer('urn:example:complies'('urn:example:alice4580', true)). +answer('urn:example:complies'('urn:example:alice4581', true)). +answer('urn:example:complies'('urn:example:alice4582', true)). +answer('urn:example:complies'('urn:example:alice4583', true)). +answer('urn:example:complies'('urn:example:alice4584', true)). +answer('urn:example:complies'('urn:example:alice4585', true)). +answer('urn:example:complies'('urn:example:alice4586', true)). +answer('urn:example:complies'('urn:example:alice4587', true)). +answer('urn:example:complies'('urn:example:alice4588', true)). +answer('urn:example:complies'('urn:example:alice4589', true)). +answer('urn:example:complies'('urn:example:alice4590', true)). +answer('urn:example:complies'('urn:example:alice4591', true)). +answer('urn:example:complies'('urn:example:alice4592', true)). +answer('urn:example:complies'('urn:example:alice4593', true)). +answer('urn:example:complies'('urn:example:alice4594', true)). +answer('urn:example:complies'('urn:example:alice4595', true)). +answer('urn:example:complies'('urn:example:alice4596', true)). +answer('urn:example:complies'('urn:example:alice4597', true)). +answer('urn:example:complies'('urn:example:alice4598', true)). +answer('urn:example:complies'('urn:example:alice4599', true)). +answer('urn:example:complies'('urn:example:alice4600', true)). +answer('urn:example:complies'('urn:example:alice4601', true)). +answer('urn:example:complies'('urn:example:alice4602', true)). +answer('urn:example:complies'('urn:example:alice4603', true)). +answer('urn:example:complies'('urn:example:alice4604', true)). +answer('urn:example:complies'('urn:example:alice4605', true)). +answer('urn:example:complies'('urn:example:alice4606', true)). +answer('urn:example:complies'('urn:example:alice4607', true)). +answer('urn:example:complies'('urn:example:alice4608', true)). +answer('urn:example:complies'('urn:example:alice4609', true)). +answer('urn:example:complies'('urn:example:alice4610', true)). +answer('urn:example:complies'('urn:example:alice4611', true)). +answer('urn:example:complies'('urn:example:alice4612', true)). +answer('urn:example:complies'('urn:example:alice4613', true)). +answer('urn:example:complies'('urn:example:alice4614', true)). +answer('urn:example:complies'('urn:example:alice4615', true)). +answer('urn:example:complies'('urn:example:alice4616', true)). +answer('urn:example:complies'('urn:example:alice4617', true)). +answer('urn:example:complies'('urn:example:alice4618', true)). +answer('urn:example:complies'('urn:example:alice4619', true)). +answer('urn:example:complies'('urn:example:alice4620', true)). +answer('urn:example:complies'('urn:example:alice4621', true)). +answer('urn:example:complies'('urn:example:alice4622', true)). +answer('urn:example:complies'('urn:example:alice4623', true)). +answer('urn:example:complies'('urn:example:alice4624', true)). +answer('urn:example:complies'('urn:example:alice4625', true)). +answer('urn:example:complies'('urn:example:alice4626', true)). +answer('urn:example:complies'('urn:example:alice4627', true)). +answer('urn:example:complies'('urn:example:alice4628', true)). +answer('urn:example:complies'('urn:example:alice4629', true)). +answer('urn:example:complies'('urn:example:alice4630', true)). +answer('urn:example:complies'('urn:example:alice4631', true)). +answer('urn:example:complies'('urn:example:alice4632', true)). +answer('urn:example:complies'('urn:example:alice4633', true)). +answer('urn:example:complies'('urn:example:alice4634', true)). +answer('urn:example:complies'('urn:example:alice4635', true)). +answer('urn:example:complies'('urn:example:alice4636', true)). +answer('urn:example:complies'('urn:example:alice4637', true)). +answer('urn:example:complies'('urn:example:alice4638', true)). +answer('urn:example:complies'('urn:example:alice4639', true)). +answer('urn:example:complies'('urn:example:alice4640', true)). +answer('urn:example:complies'('urn:example:alice4641', true)). +answer('urn:example:complies'('urn:example:alice4642', true)). +answer('urn:example:complies'('urn:example:alice4643', true)). +answer('urn:example:complies'('urn:example:alice4644', true)). +answer('urn:example:complies'('urn:example:alice4645', true)). +answer('urn:example:complies'('urn:example:alice4646', true)). +answer('urn:example:complies'('urn:example:alice4647', true)). +answer('urn:example:complies'('urn:example:alice4648', true)). +answer('urn:example:complies'('urn:example:alice4649', true)). +answer('urn:example:complies'('urn:example:alice4650', true)). +answer('urn:example:complies'('urn:example:alice4651', true)). +answer('urn:example:complies'('urn:example:alice4652', true)). +answer('urn:example:complies'('urn:example:alice4653', true)). +answer('urn:example:complies'('urn:example:alice4654', true)). +answer('urn:example:complies'('urn:example:alice4655', true)). +answer('urn:example:complies'('urn:example:alice4656', true)). +answer('urn:example:complies'('urn:example:alice4657', true)). +answer('urn:example:complies'('urn:example:alice4658', true)). +answer('urn:example:complies'('urn:example:alice4659', true)). +answer('urn:example:complies'('urn:example:alice4660', true)). +answer('urn:example:complies'('urn:example:alice4661', true)). +answer('urn:example:complies'('urn:example:alice4662', true)). +answer('urn:example:complies'('urn:example:alice4663', true)). +answer('urn:example:complies'('urn:example:alice4664', true)). +answer('urn:example:complies'('urn:example:alice4665', true)). +answer('urn:example:complies'('urn:example:alice4666', true)). +answer('urn:example:complies'('urn:example:alice4667', true)). +answer('urn:example:complies'('urn:example:alice4668', true)). +answer('urn:example:complies'('urn:example:alice4669', true)). +answer('urn:example:complies'('urn:example:alice4670', true)). +answer('urn:example:complies'('urn:example:alice4671', true)). +answer('urn:example:complies'('urn:example:alice4672', true)). +answer('urn:example:complies'('urn:example:alice4673', true)). +answer('urn:example:complies'('urn:example:alice4674', true)). +answer('urn:example:complies'('urn:example:alice4675', true)). +answer('urn:example:complies'('urn:example:alice4676', true)). +answer('urn:example:complies'('urn:example:alice4677', true)). +answer('urn:example:complies'('urn:example:alice4678', true)). +answer('urn:example:complies'('urn:example:alice4679', true)). +answer('urn:example:complies'('urn:example:alice4680', true)). +answer('urn:example:complies'('urn:example:alice4681', true)). +answer('urn:example:complies'('urn:example:alice4682', true)). +answer('urn:example:complies'('urn:example:alice4683', true)). +answer('urn:example:complies'('urn:example:alice4684', true)). +answer('urn:example:complies'('urn:example:alice4685', true)). +answer('urn:example:complies'('urn:example:alice4686', true)). +answer('urn:example:complies'('urn:example:alice4687', true)). +answer('urn:example:complies'('urn:example:alice4688', true)). +answer('urn:example:complies'('urn:example:alice4689', true)). +answer('urn:example:complies'('urn:example:alice4690', true)). +answer('urn:example:complies'('urn:example:alice4691', true)). +answer('urn:example:complies'('urn:example:alice4692', true)). +answer('urn:example:complies'('urn:example:alice4693', true)). +answer('urn:example:complies'('urn:example:alice4694', true)). +answer('urn:example:complies'('urn:example:alice4695', true)). +answer('urn:example:complies'('urn:example:alice4696', true)). +answer('urn:example:complies'('urn:example:alice4697', true)). +answer('urn:example:complies'('urn:example:alice4698', true)). +answer('urn:example:complies'('urn:example:alice4699', true)). +answer('urn:example:complies'('urn:example:alice4700', true)). +answer('urn:example:complies'('urn:example:alice4701', true)). +answer('urn:example:complies'('urn:example:alice4702', true)). +answer('urn:example:complies'('urn:example:alice4703', true)). +answer('urn:example:complies'('urn:example:alice4704', true)). +answer('urn:example:complies'('urn:example:alice4705', true)). +answer('urn:example:complies'('urn:example:alice4706', true)). +answer('urn:example:complies'('urn:example:alice4707', true)). +answer('urn:example:complies'('urn:example:alice4708', true)). +answer('urn:example:complies'('urn:example:alice4709', true)). +answer('urn:example:complies'('urn:example:alice4710', true)). +answer('urn:example:complies'('urn:example:alice4711', true)). +answer('urn:example:complies'('urn:example:alice4712', true)). +answer('urn:example:complies'('urn:example:alice4713', true)). +answer('urn:example:complies'('urn:example:alice4714', true)). +answer('urn:example:complies'('urn:example:alice4715', true)). +answer('urn:example:complies'('urn:example:alice4716', true)). +answer('urn:example:complies'('urn:example:alice4717', true)). +answer('urn:example:complies'('urn:example:alice4718', true)). +answer('urn:example:complies'('urn:example:alice4719', true)). +answer('urn:example:complies'('urn:example:alice4720', true)). +answer('urn:example:complies'('urn:example:alice4721', true)). +answer('urn:example:complies'('urn:example:alice4722', true)). +answer('urn:example:complies'('urn:example:alice4723', true)). +answer('urn:example:complies'('urn:example:alice4724', true)). +answer('urn:example:complies'('urn:example:alice4725', true)). +answer('urn:example:complies'('urn:example:alice4726', true)). +answer('urn:example:complies'('urn:example:alice4727', true)). +answer('urn:example:complies'('urn:example:alice4728', true)). +answer('urn:example:complies'('urn:example:alice4729', true)). +answer('urn:example:complies'('urn:example:alice4730', true)). +answer('urn:example:complies'('urn:example:alice4731', true)). +answer('urn:example:complies'('urn:example:alice4732', true)). +answer('urn:example:complies'('urn:example:alice4733', true)). +answer('urn:example:complies'('urn:example:alice4734', true)). +answer('urn:example:complies'('urn:example:alice4735', true)). +answer('urn:example:complies'('urn:example:alice4736', true)). +answer('urn:example:complies'('urn:example:alice4737', true)). +answer('urn:example:complies'('urn:example:alice4738', true)). +answer('urn:example:complies'('urn:example:alice4739', true)). +answer('urn:example:complies'('urn:example:alice4740', true)). +answer('urn:example:complies'('urn:example:alice4741', true)). +answer('urn:example:complies'('urn:example:alice4742', true)). +answer('urn:example:complies'('urn:example:alice4743', true)). +answer('urn:example:complies'('urn:example:alice4744', true)). +answer('urn:example:complies'('urn:example:alice4745', true)). +answer('urn:example:complies'('urn:example:alice4746', true)). +answer('urn:example:complies'('urn:example:alice4747', true)). +answer('urn:example:complies'('urn:example:alice4748', true)). +answer('urn:example:complies'('urn:example:alice4749', true)). +answer('urn:example:complies'('urn:example:alice4750', true)). +answer('urn:example:complies'('urn:example:alice4751', true)). +answer('urn:example:complies'('urn:example:alice4752', true)). +answer('urn:example:complies'('urn:example:alice4753', true)). +answer('urn:example:complies'('urn:example:alice4754', true)). +answer('urn:example:complies'('urn:example:alice4755', true)). +answer('urn:example:complies'('urn:example:alice4756', true)). +answer('urn:example:complies'('urn:example:alice4757', true)). +answer('urn:example:complies'('urn:example:alice4758', true)). +answer('urn:example:complies'('urn:example:alice4759', true)). +answer('urn:example:complies'('urn:example:alice4760', true)). +answer('urn:example:complies'('urn:example:alice4761', true)). +answer('urn:example:complies'('urn:example:alice4762', true)). +answer('urn:example:complies'('urn:example:alice4763', true)). +answer('urn:example:complies'('urn:example:alice4764', true)). +answer('urn:example:complies'('urn:example:alice4765', true)). +answer('urn:example:complies'('urn:example:alice4766', true)). +answer('urn:example:complies'('urn:example:alice4767', true)). +answer('urn:example:complies'('urn:example:alice4768', true)). +answer('urn:example:complies'('urn:example:alice4769', true)). +answer('urn:example:complies'('urn:example:alice4770', true)). +answer('urn:example:complies'('urn:example:alice4771', true)). +answer('urn:example:complies'('urn:example:alice4772', true)). +answer('urn:example:complies'('urn:example:alice4773', true)). +answer('urn:example:complies'('urn:example:alice4774', true)). +answer('urn:example:complies'('urn:example:alice4775', true)). +answer('urn:example:complies'('urn:example:alice4776', true)). +answer('urn:example:complies'('urn:example:alice4777', true)). +answer('urn:example:complies'('urn:example:alice4778', true)). +answer('urn:example:complies'('urn:example:alice4779', true)). +answer('urn:example:complies'('urn:example:alice4780', true)). +answer('urn:example:complies'('urn:example:alice4781', true)). +answer('urn:example:complies'('urn:example:alice4782', true)). +answer('urn:example:complies'('urn:example:alice4783', true)). +answer('urn:example:complies'('urn:example:alice4784', true)). +answer('urn:example:complies'('urn:example:alice4785', true)). +answer('urn:example:complies'('urn:example:alice4786', true)). +answer('urn:example:complies'('urn:example:alice4787', true)). +answer('urn:example:complies'('urn:example:alice4788', true)). +answer('urn:example:complies'('urn:example:alice4789', true)). +answer('urn:example:complies'('urn:example:alice4790', true)). +answer('urn:example:complies'('urn:example:alice4791', true)). +answer('urn:example:complies'('urn:example:alice4792', true)). +answer('urn:example:complies'('urn:example:alice4793', true)). +answer('urn:example:complies'('urn:example:alice4794', true)). +answer('urn:example:complies'('urn:example:alice4795', true)). +answer('urn:example:complies'('urn:example:alice4796', true)). +answer('urn:example:complies'('urn:example:alice4797', true)). +answer('urn:example:complies'('urn:example:alice4798', true)). +answer('urn:example:complies'('urn:example:alice4799', true)). +answer('urn:example:complies'('urn:example:alice4800', true)). +answer('urn:example:complies'('urn:example:alice4801', true)). +answer('urn:example:complies'('urn:example:alice4802', true)). +answer('urn:example:complies'('urn:example:alice4803', true)). +answer('urn:example:complies'('urn:example:alice4804', true)). +answer('urn:example:complies'('urn:example:alice4805', true)). +answer('urn:example:complies'('urn:example:alice4806', true)). +answer('urn:example:complies'('urn:example:alice4807', true)). +answer('urn:example:complies'('urn:example:alice4808', true)). +answer('urn:example:complies'('urn:example:alice4809', true)). +answer('urn:example:complies'('urn:example:alice4810', true)). +answer('urn:example:complies'('urn:example:alice4811', true)). +answer('urn:example:complies'('urn:example:alice4812', true)). +answer('urn:example:complies'('urn:example:alice4813', true)). +answer('urn:example:complies'('urn:example:alice4814', true)). +answer('urn:example:complies'('urn:example:alice4815', true)). +answer('urn:example:complies'('urn:example:alice4816', true)). +answer('urn:example:complies'('urn:example:alice4817', true)). +answer('urn:example:complies'('urn:example:alice4818', true)). +answer('urn:example:complies'('urn:example:alice4819', true)). +answer('urn:example:complies'('urn:example:alice4820', true)). +answer('urn:example:complies'('urn:example:alice4821', true)). +answer('urn:example:complies'('urn:example:alice4822', true)). +answer('urn:example:complies'('urn:example:alice4823', true)). +answer('urn:example:complies'('urn:example:alice4824', true)). +answer('urn:example:complies'('urn:example:alice4825', true)). +answer('urn:example:complies'('urn:example:alice4826', true)). +answer('urn:example:complies'('urn:example:alice4827', true)). +answer('urn:example:complies'('urn:example:alice4828', true)). +answer('urn:example:complies'('urn:example:alice4829', true)). +answer('urn:example:complies'('urn:example:alice4830', true)). +answer('urn:example:complies'('urn:example:alice4831', true)). +answer('urn:example:complies'('urn:example:alice4832', true)). +answer('urn:example:complies'('urn:example:alice4833', true)). +answer('urn:example:complies'('urn:example:alice4834', true)). +answer('urn:example:complies'('urn:example:alice4835', true)). +answer('urn:example:complies'('urn:example:alice4836', true)). +answer('urn:example:complies'('urn:example:alice4837', true)). +answer('urn:example:complies'('urn:example:alice4838', true)). +answer('urn:example:complies'('urn:example:alice4839', true)). +answer('urn:example:complies'('urn:example:alice4840', true)). +answer('urn:example:complies'('urn:example:alice4841', true)). +answer('urn:example:complies'('urn:example:alice4842', true)). +answer('urn:example:complies'('urn:example:alice4843', true)). +answer('urn:example:complies'('urn:example:alice4844', true)). +answer('urn:example:complies'('urn:example:alice4845', true)). +answer('urn:example:complies'('urn:example:alice4846', true)). +answer('urn:example:complies'('urn:example:alice4847', true)). +answer('urn:example:complies'('urn:example:alice4848', true)). +answer('urn:example:complies'('urn:example:alice4849', true)). +answer('urn:example:complies'('urn:example:alice4850', true)). +answer('urn:example:complies'('urn:example:alice4851', true)). +answer('urn:example:complies'('urn:example:alice4852', true)). +answer('urn:example:complies'('urn:example:alice4853', true)). +answer('urn:example:complies'('urn:example:alice4854', true)). +answer('urn:example:complies'('urn:example:alice4855', true)). +answer('urn:example:complies'('urn:example:alice4856', true)). +answer('urn:example:complies'('urn:example:alice4857', true)). +answer('urn:example:complies'('urn:example:alice4858', true)). +answer('urn:example:complies'('urn:example:alice4859', true)). +answer('urn:example:complies'('urn:example:alice4860', true)). +answer('urn:example:complies'('urn:example:alice4861', true)). +answer('urn:example:complies'('urn:example:alice4862', true)). +answer('urn:example:complies'('urn:example:alice4863', true)). +answer('urn:example:complies'('urn:example:alice4864', true)). +answer('urn:example:complies'('urn:example:alice4865', true)). +answer('urn:example:complies'('urn:example:alice4866', true)). +answer('urn:example:complies'('urn:example:alice4867', true)). +answer('urn:example:complies'('urn:example:alice4868', true)). +answer('urn:example:complies'('urn:example:alice4869', true)). +answer('urn:example:complies'('urn:example:alice4870', true)). +answer('urn:example:complies'('urn:example:alice4871', true)). +answer('urn:example:complies'('urn:example:alice4872', true)). +answer('urn:example:complies'('urn:example:alice4873', true)). +answer('urn:example:complies'('urn:example:alice4874', true)). +answer('urn:example:complies'('urn:example:alice4875', true)). +answer('urn:example:complies'('urn:example:alice4876', true)). +answer('urn:example:complies'('urn:example:alice4877', true)). +answer('urn:example:complies'('urn:example:alice4878', true)). +answer('urn:example:complies'('urn:example:alice4879', true)). +answer('urn:example:complies'('urn:example:alice4880', true)). +answer('urn:example:complies'('urn:example:alice4881', true)). +answer('urn:example:complies'('urn:example:alice4882', true)). +answer('urn:example:complies'('urn:example:alice4883', true)). +answer('urn:example:complies'('urn:example:alice4884', true)). +answer('urn:example:complies'('urn:example:alice4885', true)). +answer('urn:example:complies'('urn:example:alice4886', true)). +answer('urn:example:complies'('urn:example:alice4887', true)). +answer('urn:example:complies'('urn:example:alice4888', true)). +answer('urn:example:complies'('urn:example:alice4889', true)). +answer('urn:example:complies'('urn:example:alice4890', true)). +answer('urn:example:complies'('urn:example:alice4891', true)). +answer('urn:example:complies'('urn:example:alice4892', true)). +answer('urn:example:complies'('urn:example:alice4893', true)). +answer('urn:example:complies'('urn:example:alice4894', true)). +answer('urn:example:complies'('urn:example:alice4895', true)). +answer('urn:example:complies'('urn:example:alice4896', true)). +answer('urn:example:complies'('urn:example:alice4897', true)). +answer('urn:example:complies'('urn:example:alice4898', true)). +answer('urn:example:complies'('urn:example:alice4899', true)). +answer('urn:example:complies'('urn:example:alice4900', true)). +answer('urn:example:complies'('urn:example:alice4901', true)). +answer('urn:example:complies'('urn:example:alice4902', true)). +answer('urn:example:complies'('urn:example:alice4903', true)). +answer('urn:example:complies'('urn:example:alice4904', true)). +answer('urn:example:complies'('urn:example:alice4905', true)). +answer('urn:example:complies'('urn:example:alice4906', true)). +answer('urn:example:complies'('urn:example:alice4907', true)). +answer('urn:example:complies'('urn:example:alice4908', true)). +answer('urn:example:complies'('urn:example:alice4909', true)). +answer('urn:example:complies'('urn:example:alice4910', true)). +answer('urn:example:complies'('urn:example:alice4911', true)). +answer('urn:example:complies'('urn:example:alice4912', true)). +answer('urn:example:complies'('urn:example:alice4913', true)). +answer('urn:example:complies'('urn:example:alice4914', true)). +answer('urn:example:complies'('urn:example:alice4915', true)). +answer('urn:example:complies'('urn:example:alice4916', true)). +answer('urn:example:complies'('urn:example:alice4917', true)). +answer('urn:example:complies'('urn:example:alice4918', true)). +answer('urn:example:complies'('urn:example:alice4919', true)). +answer('urn:example:complies'('urn:example:alice4920', true)). +answer('urn:example:complies'('urn:example:alice4921', true)). +answer('urn:example:complies'('urn:example:alice4922', true)). +answer('urn:example:complies'('urn:example:alice4923', true)). +answer('urn:example:complies'('urn:example:alice4924', true)). +answer('urn:example:complies'('urn:example:alice4925', true)). +answer('urn:example:complies'('urn:example:alice4926', true)). +answer('urn:example:complies'('urn:example:alice4927', true)). +answer('urn:example:complies'('urn:example:alice4928', true)). +answer('urn:example:complies'('urn:example:alice4929', true)). +answer('urn:example:complies'('urn:example:alice4930', true)). +answer('urn:example:complies'('urn:example:alice4931', true)). +answer('urn:example:complies'('urn:example:alice4932', true)). +answer('urn:example:complies'('urn:example:alice4933', true)). +answer('urn:example:complies'('urn:example:alice4934', true)). +answer('urn:example:complies'('urn:example:alice4935', true)). +answer('urn:example:complies'('urn:example:alice4936', true)). +answer('urn:example:complies'('urn:example:alice4937', true)). +answer('urn:example:complies'('urn:example:alice4938', true)). +answer('urn:example:complies'('urn:example:alice4939', true)). +answer('urn:example:complies'('urn:example:alice4940', true)). +answer('urn:example:complies'('urn:example:alice4941', true)). +answer('urn:example:complies'('urn:example:alice4942', true)). +answer('urn:example:complies'('urn:example:alice4943', true)). +answer('urn:example:complies'('urn:example:alice4944', true)). +answer('urn:example:complies'('urn:example:alice4945', true)). +answer('urn:example:complies'('urn:example:alice4946', true)). +answer('urn:example:complies'('urn:example:alice4947', true)). +answer('urn:example:complies'('urn:example:alice4948', true)). +answer('urn:example:complies'('urn:example:alice4949', true)). +answer('urn:example:complies'('urn:example:alice4950', true)). +answer('urn:example:complies'('urn:example:alice4951', true)). +answer('urn:example:complies'('urn:example:alice4952', true)). +answer('urn:example:complies'('urn:example:alice4953', true)). +answer('urn:example:complies'('urn:example:alice4954', true)). +answer('urn:example:complies'('urn:example:alice4955', true)). +answer('urn:example:complies'('urn:example:alice4956', true)). +answer('urn:example:complies'('urn:example:alice4957', true)). +answer('urn:example:complies'('urn:example:alice4958', true)). +answer('urn:example:complies'('urn:example:alice4959', true)). +answer('urn:example:complies'('urn:example:alice4960', true)). +answer('urn:example:complies'('urn:example:alice4961', true)). +answer('urn:example:complies'('urn:example:alice4962', true)). +answer('urn:example:complies'('urn:example:alice4963', true)). +answer('urn:example:complies'('urn:example:alice4964', true)). +answer('urn:example:complies'('urn:example:alice4965', true)). +answer('urn:example:complies'('urn:example:alice4966', true)). +answer('urn:example:complies'('urn:example:alice4967', true)). +answer('urn:example:complies'('urn:example:alice4968', true)). +answer('urn:example:complies'('urn:example:alice4969', true)). +answer('urn:example:complies'('urn:example:alice4970', true)). +answer('urn:example:complies'('urn:example:alice4971', true)). +answer('urn:example:complies'('urn:example:alice4972', true)). +answer('urn:example:complies'('urn:example:alice4973', true)). +answer('urn:example:complies'('urn:example:alice4974', true)). +answer('urn:example:complies'('urn:example:alice4975', true)). +answer('urn:example:complies'('urn:example:alice4976', true)). +answer('urn:example:complies'('urn:example:alice4977', true)). +answer('urn:example:complies'('urn:example:alice4978', true)). +answer('urn:example:complies'('urn:example:alice4979', true)). +answer('urn:example:complies'('urn:example:alice4980', true)). +answer('urn:example:complies'('urn:example:alice4981', true)). +answer('urn:example:complies'('urn:example:alice4982', true)). +answer('urn:example:complies'('urn:example:alice4983', true)). +answer('urn:example:complies'('urn:example:alice4984', true)). +answer('urn:example:complies'('urn:example:alice4985', true)). +answer('urn:example:complies'('urn:example:alice4986', true)). +answer('urn:example:complies'('urn:example:alice4987', true)). +answer('urn:example:complies'('urn:example:alice4988', true)). +answer('urn:example:complies'('urn:example:alice4989', true)). +answer('urn:example:complies'('urn:example:alice4990', true)). +answer('urn:example:complies'('urn:example:alice4991', true)). +answer('urn:example:complies'('urn:example:alice4992', true)). +answer('urn:example:complies'('urn:example:alice4993', true)). +answer('urn:example:complies'('urn:example:alice4994', true)). +answer('urn:example:complies'('urn:example:alice4995', true)). +answer('urn:example:complies'('urn:example:alice4996', true)). +answer('urn:example:complies'('urn:example:alice4997', true)). +answer('urn:example:complies'('urn:example:alice4998', true)). +answer('urn:example:complies'('urn:example:alice4999', true)). +answer('urn:example:complies'('urn:example:alice5000', true)). +answer('urn:example:complies'('urn:example:alice5001', true)). +answer('urn:example:complies'('urn:example:alice5002', true)). +answer('urn:example:complies'('urn:example:alice5003', true)). +answer('urn:example:complies'('urn:example:alice5004', true)). +answer('urn:example:complies'('urn:example:alice5005', true)). +answer('urn:example:complies'('urn:example:alice5006', true)). +answer('urn:example:complies'('urn:example:alice5007', true)). +answer('urn:example:complies'('urn:example:alice5008', true)). +answer('urn:example:complies'('urn:example:alice5009', true)). +answer('urn:example:complies'('urn:example:alice5010', true)). +answer('urn:example:complies'('urn:example:alice5011', true)). +answer('urn:example:complies'('urn:example:alice5012', true)). +answer('urn:example:complies'('urn:example:alice5013', true)). +answer('urn:example:complies'('urn:example:alice5014', true)). +answer('urn:example:complies'('urn:example:alice5015', true)). +answer('urn:example:complies'('urn:example:alice5016', true)). +answer('urn:example:complies'('urn:example:alice5017', true)). +answer('urn:example:complies'('urn:example:alice5018', true)). +answer('urn:example:complies'('urn:example:alice5019', true)). +answer('urn:example:complies'('urn:example:alice5020', true)). +answer('urn:example:complies'('urn:example:alice5021', true)). +answer('urn:example:complies'('urn:example:alice5022', true)). +answer('urn:example:complies'('urn:example:alice5023', true)). +answer('urn:example:complies'('urn:example:alice5024', true)). +answer('urn:example:complies'('urn:example:alice5025', true)). +answer('urn:example:complies'('urn:example:alice5026', true)). +answer('urn:example:complies'('urn:example:alice5027', true)). +answer('urn:example:complies'('urn:example:alice5028', true)). +answer('urn:example:complies'('urn:example:alice5029', true)). +answer('urn:example:complies'('urn:example:alice5030', true)). +answer('urn:example:complies'('urn:example:alice5031', true)). +answer('urn:example:complies'('urn:example:alice5032', true)). +answer('urn:example:complies'('urn:example:alice5033', true)). +answer('urn:example:complies'('urn:example:alice5034', true)). +answer('urn:example:complies'('urn:example:alice5035', true)). +answer('urn:example:complies'('urn:example:alice5036', true)). +answer('urn:example:complies'('urn:example:alice5037', true)). +answer('urn:example:complies'('urn:example:alice5038', true)). +answer('urn:example:complies'('urn:example:alice5039', true)). +answer('urn:example:complies'('urn:example:alice5040', true)). +answer('urn:example:complies'('urn:example:alice5041', true)). +answer('urn:example:complies'('urn:example:alice5042', true)). +answer('urn:example:complies'('urn:example:alice5043', true)). +answer('urn:example:complies'('urn:example:alice5044', true)). +answer('urn:example:complies'('urn:example:alice5045', true)). +answer('urn:example:complies'('urn:example:alice5046', true)). +answer('urn:example:complies'('urn:example:alice5047', true)). +answer('urn:example:complies'('urn:example:alice5048', true)). +answer('urn:example:complies'('urn:example:alice5049', true)). +answer('urn:example:complies'('urn:example:alice5050', true)). +answer('urn:example:complies'('urn:example:alice5051', true)). +answer('urn:example:complies'('urn:example:alice5052', true)). +answer('urn:example:complies'('urn:example:alice5053', true)). +answer('urn:example:complies'('urn:example:alice5054', true)). +answer('urn:example:complies'('urn:example:alice5055', true)). +answer('urn:example:complies'('urn:example:alice5056', true)). +answer('urn:example:complies'('urn:example:alice5057', true)). +answer('urn:example:complies'('urn:example:alice5058', true)). +answer('urn:example:complies'('urn:example:alice5059', true)). +answer('urn:example:complies'('urn:example:alice5060', true)). +answer('urn:example:complies'('urn:example:alice5061', true)). +answer('urn:example:complies'('urn:example:alice5062', true)). +answer('urn:example:complies'('urn:example:alice5063', true)). +answer('urn:example:complies'('urn:example:alice5064', true)). +answer('urn:example:complies'('urn:example:alice5065', true)). +answer('urn:example:complies'('urn:example:alice5066', true)). +answer('urn:example:complies'('urn:example:alice5067', true)). +answer('urn:example:complies'('urn:example:alice5068', true)). +answer('urn:example:complies'('urn:example:alice5069', true)). +answer('urn:example:complies'('urn:example:alice5070', true)). +answer('urn:example:complies'('urn:example:alice5071', true)). +answer('urn:example:complies'('urn:example:alice5072', true)). +answer('urn:example:complies'('urn:example:alice5073', true)). +answer('urn:example:complies'('urn:example:alice5074', true)). +answer('urn:example:complies'('urn:example:alice5075', true)). +answer('urn:example:complies'('urn:example:alice5076', true)). +answer('urn:example:complies'('urn:example:alice5077', true)). +answer('urn:example:complies'('urn:example:alice5078', true)). +answer('urn:example:complies'('urn:example:alice5079', true)). +answer('urn:example:complies'('urn:example:alice5080', true)). +answer('urn:example:complies'('urn:example:alice5081', true)). +answer('urn:example:complies'('urn:example:alice5082', true)). +answer('urn:example:complies'('urn:example:alice5083', true)). +answer('urn:example:complies'('urn:example:alice5084', true)). +answer('urn:example:complies'('urn:example:alice5085', true)). +answer('urn:example:complies'('urn:example:alice5086', true)). +answer('urn:example:complies'('urn:example:alice5087', true)). +answer('urn:example:complies'('urn:example:alice5088', true)). +answer('urn:example:complies'('urn:example:alice5089', true)). +answer('urn:example:complies'('urn:example:alice5090', true)). +answer('urn:example:complies'('urn:example:alice5091', true)). +answer('urn:example:complies'('urn:example:alice5092', true)). +answer('urn:example:complies'('urn:example:alice5093', true)). +answer('urn:example:complies'('urn:example:alice5094', true)). +answer('urn:example:complies'('urn:example:alice5095', true)). +answer('urn:example:complies'('urn:example:alice5096', true)). +answer('urn:example:complies'('urn:example:alice5097', true)). +answer('urn:example:complies'('urn:example:alice5098', true)). +answer('urn:example:complies'('urn:example:alice5099', true)). +answer('urn:example:complies'('urn:example:alice5100', true)). +answer('urn:example:complies'('urn:example:alice5101', true)). +answer('urn:example:complies'('urn:example:alice5102', true)). +answer('urn:example:complies'('urn:example:alice5103', true)). +answer('urn:example:complies'('urn:example:alice5104', true)). +answer('urn:example:complies'('urn:example:alice5105', true)). +answer('urn:example:complies'('urn:example:alice5106', true)). +answer('urn:example:complies'('urn:example:alice5107', true)). +answer('urn:example:complies'('urn:example:alice5108', true)). +answer('urn:example:complies'('urn:example:alice5109', true)). +answer('urn:example:complies'('urn:example:alice5110', true)). +answer('urn:example:complies'('urn:example:alice5111', true)). +answer('urn:example:complies'('urn:example:alice5112', true)). +answer('urn:example:complies'('urn:example:alice5113', true)). +answer('urn:example:complies'('urn:example:alice5114', true)). +answer('urn:example:complies'('urn:example:alice5115', true)). +answer('urn:example:complies'('urn:example:alice5116', true)). +answer('urn:example:complies'('urn:example:alice5117', true)). +answer('urn:example:complies'('urn:example:alice5118', true)). +answer('urn:example:complies'('urn:example:alice5119', true)). +answer('urn:example:complies'('urn:example:alice5120', true)). +answer('urn:example:complies'('urn:example:alice5121', true)). +answer('urn:example:complies'('urn:example:alice5122', true)). +answer('urn:example:complies'('urn:example:alice5123', true)). +answer('urn:example:complies'('urn:example:alice5124', true)). +answer('urn:example:complies'('urn:example:alice5125', true)). +answer('urn:example:complies'('urn:example:alice5126', true)). +answer('urn:example:complies'('urn:example:alice5127', true)). +answer('urn:example:complies'('urn:example:alice5128', true)). +answer('urn:example:complies'('urn:example:alice5129', true)). +answer('urn:example:complies'('urn:example:alice5130', true)). +answer('urn:example:complies'('urn:example:alice5131', true)). +answer('urn:example:complies'('urn:example:alice5132', true)). +answer('urn:example:complies'('urn:example:alice5133', true)). +answer('urn:example:complies'('urn:example:alice5134', true)). +answer('urn:example:complies'('urn:example:alice5135', true)). +answer('urn:example:complies'('urn:example:alice5136', true)). +answer('urn:example:complies'('urn:example:alice5137', true)). +answer('urn:example:complies'('urn:example:alice5138', true)). +answer('urn:example:complies'('urn:example:alice5139', true)). +answer('urn:example:complies'('urn:example:alice5140', true)). +answer('urn:example:complies'('urn:example:alice5141', true)). +answer('urn:example:complies'('urn:example:alice5142', true)). +answer('urn:example:complies'('urn:example:alice5143', true)). +answer('urn:example:complies'('urn:example:alice5144', true)). +answer('urn:example:complies'('urn:example:alice5145', true)). +answer('urn:example:complies'('urn:example:alice5146', true)). +answer('urn:example:complies'('urn:example:alice5147', true)). +answer('urn:example:complies'('urn:example:alice5148', true)). +answer('urn:example:complies'('urn:example:alice5149', true)). +answer('urn:example:complies'('urn:example:alice5150', true)). +answer('urn:example:complies'('urn:example:alice5151', true)). +answer('urn:example:complies'('urn:example:alice5152', true)). +answer('urn:example:complies'('urn:example:alice5153', true)). +answer('urn:example:complies'('urn:example:alice5154', true)). +answer('urn:example:complies'('urn:example:alice5155', true)). +answer('urn:example:complies'('urn:example:alice5156', true)). +answer('urn:example:complies'('urn:example:alice5157', true)). +answer('urn:example:complies'('urn:example:alice5158', true)). +answer('urn:example:complies'('urn:example:alice5159', true)). +answer('urn:example:complies'('urn:example:alice5160', true)). +answer('urn:example:complies'('urn:example:alice5161', true)). +answer('urn:example:complies'('urn:example:alice5162', true)). +answer('urn:example:complies'('urn:example:alice5163', true)). +answer('urn:example:complies'('urn:example:alice5164', true)). +answer('urn:example:complies'('urn:example:alice5165', true)). +answer('urn:example:complies'('urn:example:alice5166', true)). +answer('urn:example:complies'('urn:example:alice5167', true)). +answer('urn:example:complies'('urn:example:alice5168', true)). +answer('urn:example:complies'('urn:example:alice5169', true)). +answer('urn:example:complies'('urn:example:alice5170', true)). +answer('urn:example:complies'('urn:example:alice5171', true)). +answer('urn:example:complies'('urn:example:alice5172', true)). +answer('urn:example:complies'('urn:example:alice5173', true)). +answer('urn:example:complies'('urn:example:alice5174', true)). +answer('urn:example:complies'('urn:example:alice5175', true)). +answer('urn:example:complies'('urn:example:alice5176', true)). +answer('urn:example:complies'('urn:example:alice5177', true)). +answer('urn:example:complies'('urn:example:alice5178', true)). +answer('urn:example:complies'('urn:example:alice5179', true)). +answer('urn:example:complies'('urn:example:alice5180', true)). +answer('urn:example:complies'('urn:example:alice5181', true)). +answer('urn:example:complies'('urn:example:alice5182', true)). +answer('urn:example:complies'('urn:example:alice5183', true)). +answer('urn:example:complies'('urn:example:alice5184', true)). +answer('urn:example:complies'('urn:example:alice5185', true)). +answer('urn:example:complies'('urn:example:alice5186', true)). +answer('urn:example:complies'('urn:example:alice5187', true)). +answer('urn:example:complies'('urn:example:alice5188', true)). +answer('urn:example:complies'('urn:example:alice5189', true)). +answer('urn:example:complies'('urn:example:alice5190', true)). +answer('urn:example:complies'('urn:example:alice5191', true)). +answer('urn:example:complies'('urn:example:alice5192', true)). +answer('urn:example:complies'('urn:example:alice5193', true)). +answer('urn:example:complies'('urn:example:alice5194', true)). +answer('urn:example:complies'('urn:example:alice5195', true)). +answer('urn:example:complies'('urn:example:alice5196', true)). +answer('urn:example:complies'('urn:example:alice5197', true)). +answer('urn:example:complies'('urn:example:alice5198', true)). +answer('urn:example:complies'('urn:example:alice5199', true)). +answer('urn:example:complies'('urn:example:alice5200', true)). +answer('urn:example:complies'('urn:example:alice5201', true)). +answer('urn:example:complies'('urn:example:alice5202', true)). +answer('urn:example:complies'('urn:example:alice5203', true)). +answer('urn:example:complies'('urn:example:alice5204', true)). +answer('urn:example:complies'('urn:example:alice5205', true)). +answer('urn:example:complies'('urn:example:alice5206', true)). +answer('urn:example:complies'('urn:example:alice5207', true)). +answer('urn:example:complies'('urn:example:alice5208', true)). +answer('urn:example:complies'('urn:example:alice5209', true)). +answer('urn:example:complies'('urn:example:alice5210', true)). +answer('urn:example:complies'('urn:example:alice5211', true)). +answer('urn:example:complies'('urn:example:alice5212', true)). +answer('urn:example:complies'('urn:example:alice5213', true)). +answer('urn:example:complies'('urn:example:alice5214', true)). +answer('urn:example:complies'('urn:example:alice5215', true)). +answer('urn:example:complies'('urn:example:alice5216', true)). +answer('urn:example:complies'('urn:example:alice5217', true)). +answer('urn:example:complies'('urn:example:alice5218', true)). +answer('urn:example:complies'('urn:example:alice5219', true)). +answer('urn:example:complies'('urn:example:alice5220', true)). +answer('urn:example:complies'('urn:example:alice5221', true)). +answer('urn:example:complies'('urn:example:alice5222', true)). +answer('urn:example:complies'('urn:example:alice5223', true)). +answer('urn:example:complies'('urn:example:alice5224', true)). +answer('urn:example:complies'('urn:example:alice5225', true)). +answer('urn:example:complies'('urn:example:alice5226', true)). +answer('urn:example:complies'('urn:example:alice5227', true)). +answer('urn:example:complies'('urn:example:alice5228', true)). +answer('urn:example:complies'('urn:example:alice5229', true)). +answer('urn:example:complies'('urn:example:alice5230', true)). +answer('urn:example:complies'('urn:example:alice5231', true)). +answer('urn:example:complies'('urn:example:alice5232', true)). +answer('urn:example:complies'('urn:example:alice5233', true)). +answer('urn:example:complies'('urn:example:alice5234', true)). +answer('urn:example:complies'('urn:example:alice5235', true)). +answer('urn:example:complies'('urn:example:alice5236', true)). +answer('urn:example:complies'('urn:example:alice5237', true)). +answer('urn:example:complies'('urn:example:alice5238', true)). +answer('urn:example:complies'('urn:example:alice5239', true)). +answer('urn:example:complies'('urn:example:alice5240', true)). +answer('urn:example:complies'('urn:example:alice5241', true)). +answer('urn:example:complies'('urn:example:alice5242', true)). +answer('urn:example:complies'('urn:example:alice5243', true)). +answer('urn:example:complies'('urn:example:alice5244', true)). +answer('urn:example:complies'('urn:example:alice5245', true)). +answer('urn:example:complies'('urn:example:alice5246', true)). +answer('urn:example:complies'('urn:example:alice5247', true)). +answer('urn:example:complies'('urn:example:alice5248', true)). +answer('urn:example:complies'('urn:example:alice5249', true)). +answer('urn:example:complies'('urn:example:alice5250', true)). +answer('urn:example:complies'('urn:example:alice5251', true)). +answer('urn:example:complies'('urn:example:alice5252', true)). +answer('urn:example:complies'('urn:example:alice5253', true)). +answer('urn:example:complies'('urn:example:alice5254', true)). +answer('urn:example:complies'('urn:example:alice5255', true)). +answer('urn:example:complies'('urn:example:alice5256', true)). +answer('urn:example:complies'('urn:example:alice5257', true)). +answer('urn:example:complies'('urn:example:alice5258', true)). +answer('urn:example:complies'('urn:example:alice5259', true)). +answer('urn:example:complies'('urn:example:alice5260', true)). +answer('urn:example:complies'('urn:example:alice5261', true)). +answer('urn:example:complies'('urn:example:alice5262', true)). +answer('urn:example:complies'('urn:example:alice5263', true)). +answer('urn:example:complies'('urn:example:alice5264', true)). +answer('urn:example:complies'('urn:example:alice5265', true)). +answer('urn:example:complies'('urn:example:alice5266', true)). +answer('urn:example:complies'('urn:example:alice5267', true)). +answer('urn:example:complies'('urn:example:alice5268', true)). +answer('urn:example:complies'('urn:example:alice5269', true)). +answer('urn:example:complies'('urn:example:alice5270', true)). +answer('urn:example:complies'('urn:example:alice5271', true)). +answer('urn:example:complies'('urn:example:alice5272', true)). +answer('urn:example:complies'('urn:example:alice5273', true)). +answer('urn:example:complies'('urn:example:alice5274', true)). +answer('urn:example:complies'('urn:example:alice5275', true)). +answer('urn:example:complies'('urn:example:alice5276', true)). +answer('urn:example:complies'('urn:example:alice5277', true)). +answer('urn:example:complies'('urn:example:alice5278', true)). +answer('urn:example:complies'('urn:example:alice5279', true)). +answer('urn:example:complies'('urn:example:alice5280', true)). +answer('urn:example:complies'('urn:example:alice5281', true)). +answer('urn:example:complies'('urn:example:alice5282', true)). +answer('urn:example:complies'('urn:example:alice5283', true)). +answer('urn:example:complies'('urn:example:alice5284', true)). +answer('urn:example:complies'('urn:example:alice5285', true)). +answer('urn:example:complies'('urn:example:alice5286', true)). +answer('urn:example:complies'('urn:example:alice5287', true)). +answer('urn:example:complies'('urn:example:alice5288', true)). +answer('urn:example:complies'('urn:example:alice5289', true)). +answer('urn:example:complies'('urn:example:alice5290', true)). +answer('urn:example:complies'('urn:example:alice5291', true)). +answer('urn:example:complies'('urn:example:alice5292', true)). +answer('urn:example:complies'('urn:example:alice5293', true)). +answer('urn:example:complies'('urn:example:alice5294', true)). +answer('urn:example:complies'('urn:example:alice5295', true)). +answer('urn:example:complies'('urn:example:alice5296', true)). +answer('urn:example:complies'('urn:example:alice5297', true)). +answer('urn:example:complies'('urn:example:alice5298', true)). +answer('urn:example:complies'('urn:example:alice5299', true)). +answer('urn:example:complies'('urn:example:alice5300', true)). +answer('urn:example:complies'('urn:example:alice5301', true)). +answer('urn:example:complies'('urn:example:alice5302', true)). +answer('urn:example:complies'('urn:example:alice5303', true)). +answer('urn:example:complies'('urn:example:alice5304', true)). +answer('urn:example:complies'('urn:example:alice5305', true)). +answer('urn:example:complies'('urn:example:alice5306', true)). +answer('urn:example:complies'('urn:example:alice5307', true)). +answer('urn:example:complies'('urn:example:alice5308', true)). +answer('urn:example:complies'('urn:example:alice5309', true)). +answer('urn:example:complies'('urn:example:alice5310', true)). +answer('urn:example:complies'('urn:example:alice5311', true)). +answer('urn:example:complies'('urn:example:alice5312', true)). +answer('urn:example:complies'('urn:example:alice5313', true)). +answer('urn:example:complies'('urn:example:alice5314', true)). +answer('urn:example:complies'('urn:example:alice5315', true)). +answer('urn:example:complies'('urn:example:alice5316', true)). +answer('urn:example:complies'('urn:example:alice5317', true)). +answer('urn:example:complies'('urn:example:alice5318', true)). +answer('urn:example:complies'('urn:example:alice5319', true)). +answer('urn:example:complies'('urn:example:alice5320', true)). +answer('urn:example:complies'('urn:example:alice5321', true)). +answer('urn:example:complies'('urn:example:alice5322', true)). +answer('urn:example:complies'('urn:example:alice5323', true)). +answer('urn:example:complies'('urn:example:alice5324', true)). +answer('urn:example:complies'('urn:example:alice5325', true)). +answer('urn:example:complies'('urn:example:alice5326', true)). +answer('urn:example:complies'('urn:example:alice5327', true)). +answer('urn:example:complies'('urn:example:alice5328', true)). +answer('urn:example:complies'('urn:example:alice5329', true)). +answer('urn:example:complies'('urn:example:alice5330', true)). +answer('urn:example:complies'('urn:example:alice5331', true)). +answer('urn:example:complies'('urn:example:alice5332', true)). +answer('urn:example:complies'('urn:example:alice5333', true)). +answer('urn:example:complies'('urn:example:alice5334', true)). +answer('urn:example:complies'('urn:example:alice5335', true)). +answer('urn:example:complies'('urn:example:alice5336', true)). +answer('urn:example:complies'('urn:example:alice5337', true)). +answer('urn:example:complies'('urn:example:alice5338', true)). +answer('urn:example:complies'('urn:example:alice5339', true)). +answer('urn:example:complies'('urn:example:alice5340', true)). +answer('urn:example:complies'('urn:example:alice5341', true)). +answer('urn:example:complies'('urn:example:alice5342', true)). +answer('urn:example:complies'('urn:example:alice5343', true)). +answer('urn:example:complies'('urn:example:alice5344', true)). +answer('urn:example:complies'('urn:example:alice5345', true)). +answer('urn:example:complies'('urn:example:alice5346', true)). +answer('urn:example:complies'('urn:example:alice5347', true)). +answer('urn:example:complies'('urn:example:alice5348', true)). +answer('urn:example:complies'('urn:example:alice5349', true)). +answer('urn:example:complies'('urn:example:alice5350', true)). +answer('urn:example:complies'('urn:example:alice5351', true)). +answer('urn:example:complies'('urn:example:alice5352', true)). +answer('urn:example:complies'('urn:example:alice5353', true)). +answer('urn:example:complies'('urn:example:alice5354', true)). +answer('urn:example:complies'('urn:example:alice5355', true)). +answer('urn:example:complies'('urn:example:alice5356', true)). +answer('urn:example:complies'('urn:example:alice5357', true)). +answer('urn:example:complies'('urn:example:alice5358', true)). +answer('urn:example:complies'('urn:example:alice5359', true)). +answer('urn:example:complies'('urn:example:alice5360', true)). +answer('urn:example:complies'('urn:example:alice5361', true)). +answer('urn:example:complies'('urn:example:alice5362', true)). +answer('urn:example:complies'('urn:example:alice5363', true)). +answer('urn:example:complies'('urn:example:alice5364', true)). +answer('urn:example:complies'('urn:example:alice5365', true)). +answer('urn:example:complies'('urn:example:alice5366', true)). +answer('urn:example:complies'('urn:example:alice5367', true)). +answer('urn:example:complies'('urn:example:alice5368', true)). +answer('urn:example:complies'('urn:example:alice5369', true)). +answer('urn:example:complies'('urn:example:alice5370', true)). +answer('urn:example:complies'('urn:example:alice5371', true)). +answer('urn:example:complies'('urn:example:alice5372', true)). +answer('urn:example:complies'('urn:example:alice5373', true)). +answer('urn:example:complies'('urn:example:alice5374', true)). +answer('urn:example:complies'('urn:example:alice5375', true)). +answer('urn:example:complies'('urn:example:alice5376', true)). +answer('urn:example:complies'('urn:example:alice5377', true)). +answer('urn:example:complies'('urn:example:alice5378', true)). +answer('urn:example:complies'('urn:example:alice5379', true)). +answer('urn:example:complies'('urn:example:alice5380', true)). +answer('urn:example:complies'('urn:example:alice5381', true)). +answer('urn:example:complies'('urn:example:alice5382', true)). +answer('urn:example:complies'('urn:example:alice5383', true)). +answer('urn:example:complies'('urn:example:alice5384', true)). +answer('urn:example:complies'('urn:example:alice5385', true)). +answer('urn:example:complies'('urn:example:alice5386', true)). +answer('urn:example:complies'('urn:example:alice5387', true)). +answer('urn:example:complies'('urn:example:alice5388', true)). +answer('urn:example:complies'('urn:example:alice5389', true)). +answer('urn:example:complies'('urn:example:alice5390', true)). +answer('urn:example:complies'('urn:example:alice5391', true)). +answer('urn:example:complies'('urn:example:alice5392', true)). +answer('urn:example:complies'('urn:example:alice5393', true)). +answer('urn:example:complies'('urn:example:alice5394', true)). +answer('urn:example:complies'('urn:example:alice5395', true)). +answer('urn:example:complies'('urn:example:alice5396', true)). +answer('urn:example:complies'('urn:example:alice5397', true)). +answer('urn:example:complies'('urn:example:alice5398', true)). +answer('urn:example:complies'('urn:example:alice5399', true)). +answer('urn:example:complies'('urn:example:alice5400', true)). +answer('urn:example:complies'('urn:example:alice5401', true)). +answer('urn:example:complies'('urn:example:alice5402', true)). +answer('urn:example:complies'('urn:example:alice5403', true)). +answer('urn:example:complies'('urn:example:alice5404', true)). +answer('urn:example:complies'('urn:example:alice5405', true)). +answer('urn:example:complies'('urn:example:alice5406', true)). +answer('urn:example:complies'('urn:example:alice5407', true)). +answer('urn:example:complies'('urn:example:alice5408', true)). +answer('urn:example:complies'('urn:example:alice5409', true)). +answer('urn:example:complies'('urn:example:alice5410', true)). +answer('urn:example:complies'('urn:example:alice5411', true)). +answer('urn:example:complies'('urn:example:alice5412', true)). +answer('urn:example:complies'('urn:example:alice5413', true)). +answer('urn:example:complies'('urn:example:alice5414', true)). +answer('urn:example:complies'('urn:example:alice5415', true)). +answer('urn:example:complies'('urn:example:alice5416', true)). +answer('urn:example:complies'('urn:example:alice5417', true)). +answer('urn:example:complies'('urn:example:alice5418', true)). +answer('urn:example:complies'('urn:example:alice5419', true)). +answer('urn:example:complies'('urn:example:alice5420', true)). +answer('urn:example:complies'('urn:example:alice5421', true)). +answer('urn:example:complies'('urn:example:alice5422', true)). +answer('urn:example:complies'('urn:example:alice5423', true)). +answer('urn:example:complies'('urn:example:alice5424', true)). +answer('urn:example:complies'('urn:example:alice5425', true)). +answer('urn:example:complies'('urn:example:alice5426', true)). +answer('urn:example:complies'('urn:example:alice5427', true)). +answer('urn:example:complies'('urn:example:alice5428', true)). +answer('urn:example:complies'('urn:example:alice5429', true)). +answer('urn:example:complies'('urn:example:alice5430', true)). +answer('urn:example:complies'('urn:example:alice5431', true)). +answer('urn:example:complies'('urn:example:alice5432', true)). +answer('urn:example:complies'('urn:example:alice5433', true)). +answer('urn:example:complies'('urn:example:alice5434', true)). +answer('urn:example:complies'('urn:example:alice5435', true)). +answer('urn:example:complies'('urn:example:alice5436', true)). +answer('urn:example:complies'('urn:example:alice5437', true)). +answer('urn:example:complies'('urn:example:alice5438', true)). +answer('urn:example:complies'('urn:example:alice5439', true)). +answer('urn:example:complies'('urn:example:alice5440', true)). +answer('urn:example:complies'('urn:example:alice5441', true)). +answer('urn:example:complies'('urn:example:alice5442', true)). +answer('urn:example:complies'('urn:example:alice5443', true)). +answer('urn:example:complies'('urn:example:alice5444', true)). +answer('urn:example:complies'('urn:example:alice5445', true)). +answer('urn:example:complies'('urn:example:alice5446', true)). +answer('urn:example:complies'('urn:example:alice5447', true)). +answer('urn:example:complies'('urn:example:alice5448', true)). +answer('urn:example:complies'('urn:example:alice5449', true)). +answer('urn:example:complies'('urn:example:alice5450', true)). +answer('urn:example:complies'('urn:example:alice5451', true)). +answer('urn:example:complies'('urn:example:alice5452', true)). +answer('urn:example:complies'('urn:example:alice5453', true)). +answer('urn:example:complies'('urn:example:alice5454', true)). +answer('urn:example:complies'('urn:example:alice5455', true)). +answer('urn:example:complies'('urn:example:alice5456', true)). +answer('urn:example:complies'('urn:example:alice5457', true)). +answer('urn:example:complies'('urn:example:alice5458', true)). +answer('urn:example:complies'('urn:example:alice5459', true)). +answer('urn:example:complies'('urn:example:alice5460', true)). +answer('urn:example:complies'('urn:example:alice5461', true)). +answer('urn:example:complies'('urn:example:alice5462', true)). +answer('urn:example:complies'('urn:example:alice5463', true)). +answer('urn:example:complies'('urn:example:alice5464', true)). +answer('urn:example:complies'('urn:example:alice5465', true)). +answer('urn:example:complies'('urn:example:alice5466', true)). +answer('urn:example:complies'('urn:example:alice5467', true)). +answer('urn:example:complies'('urn:example:alice5468', true)). +answer('urn:example:complies'('urn:example:alice5469', true)). +answer('urn:example:complies'('urn:example:alice5470', true)). +answer('urn:example:complies'('urn:example:alice5471', true)). +answer('urn:example:complies'('urn:example:alice5472', true)). +answer('urn:example:complies'('urn:example:alice5473', true)). +answer('urn:example:complies'('urn:example:alice5474', true)). +answer('urn:example:complies'('urn:example:alice5475', true)). +answer('urn:example:complies'('urn:example:alice5476', true)). +answer('urn:example:complies'('urn:example:alice5477', true)). +answer('urn:example:complies'('urn:example:alice5478', true)). +answer('urn:example:complies'('urn:example:alice5479', true)). +answer('urn:example:complies'('urn:example:alice5480', true)). +answer('urn:example:complies'('urn:example:alice5481', true)). +answer('urn:example:complies'('urn:example:alice5482', true)). +answer('urn:example:complies'('urn:example:alice5483', true)). +answer('urn:example:complies'('urn:example:alice5484', true)). +answer('urn:example:complies'('urn:example:alice5485', true)). +answer('urn:example:complies'('urn:example:alice5486', true)). +answer('urn:example:complies'('urn:example:alice5487', true)). +answer('urn:example:complies'('urn:example:alice5488', true)). +answer('urn:example:complies'('urn:example:alice5489', true)). +answer('urn:example:complies'('urn:example:alice5490', true)). +answer('urn:example:complies'('urn:example:alice5491', true)). +answer('urn:example:complies'('urn:example:alice5492', true)). +answer('urn:example:complies'('urn:example:alice5493', true)). +answer('urn:example:complies'('urn:example:alice5494', true)). +answer('urn:example:complies'('urn:example:alice5495', true)). +answer('urn:example:complies'('urn:example:alice5496', true)). +answer('urn:example:complies'('urn:example:alice5497', true)). +answer('urn:example:complies'('urn:example:alice5498', true)). +answer('urn:example:complies'('urn:example:alice5499', true)). +answer('urn:example:complies'('urn:example:alice5500', true)). +answer('urn:example:complies'('urn:example:alice5501', true)). +answer('urn:example:complies'('urn:example:alice5502', true)). +answer('urn:example:complies'('urn:example:alice5503', true)). +answer('urn:example:complies'('urn:example:alice5504', true)). +answer('urn:example:complies'('urn:example:alice5505', true)). +answer('urn:example:complies'('urn:example:alice5506', true)). +answer('urn:example:complies'('urn:example:alice5507', true)). +answer('urn:example:complies'('urn:example:alice5508', true)). +answer('urn:example:complies'('urn:example:alice5509', true)). +answer('urn:example:complies'('urn:example:alice5510', true)). +answer('urn:example:complies'('urn:example:alice5511', true)). +answer('urn:example:complies'('urn:example:alice5512', true)). +answer('urn:example:complies'('urn:example:alice5513', true)). +answer('urn:example:complies'('urn:example:alice5514', true)). +answer('urn:example:complies'('urn:example:alice5515', true)). +answer('urn:example:complies'('urn:example:alice5516', true)). +answer('urn:example:complies'('urn:example:alice5517', true)). +answer('urn:example:complies'('urn:example:alice5518', true)). +answer('urn:example:complies'('urn:example:alice5519', true)). +answer('urn:example:complies'('urn:example:alice5520', true)). +answer('urn:example:complies'('urn:example:alice5521', true)). +answer('urn:example:complies'('urn:example:alice5522', true)). +answer('urn:example:complies'('urn:example:alice5523', true)). +answer('urn:example:complies'('urn:example:alice5524', true)). +answer('urn:example:complies'('urn:example:alice5525', true)). +answer('urn:example:complies'('urn:example:alice5526', true)). +answer('urn:example:complies'('urn:example:alice5527', true)). +answer('urn:example:complies'('urn:example:alice5528', true)). +answer('urn:example:complies'('urn:example:alice5529', true)). +answer('urn:example:complies'('urn:example:alice5530', true)). +answer('urn:example:complies'('urn:example:alice5531', true)). +answer('urn:example:complies'('urn:example:alice5532', true)). +answer('urn:example:complies'('urn:example:alice5533', true)). +answer('urn:example:complies'('urn:example:alice5534', true)). +answer('urn:example:complies'('urn:example:alice5535', true)). +answer('urn:example:complies'('urn:example:alice5536', true)). +answer('urn:example:complies'('urn:example:alice5537', true)). +answer('urn:example:complies'('urn:example:alice5538', true)). +answer('urn:example:complies'('urn:example:alice5539', true)). +answer('urn:example:complies'('urn:example:alice5540', true)). +answer('urn:example:complies'('urn:example:alice5541', true)). +answer('urn:example:complies'('urn:example:alice5542', true)). +answer('urn:example:complies'('urn:example:alice5543', true)). +answer('urn:example:complies'('urn:example:alice5544', true)). +answer('urn:example:complies'('urn:example:alice5545', true)). +answer('urn:example:complies'('urn:example:alice5546', true)). +answer('urn:example:complies'('urn:example:alice5547', true)). +answer('urn:example:complies'('urn:example:alice5548', true)). +answer('urn:example:complies'('urn:example:alice5549', true)). +answer('urn:example:complies'('urn:example:alice5550', true)). +answer('urn:example:complies'('urn:example:alice5551', true)). +answer('urn:example:complies'('urn:example:alice5552', true)). +answer('urn:example:complies'('urn:example:alice5553', true)). +answer('urn:example:complies'('urn:example:alice5554', true)). +answer('urn:example:complies'('urn:example:alice5555', true)). +answer('urn:example:complies'('urn:example:alice5556', true)). +answer('urn:example:complies'('urn:example:alice5557', true)). +answer('urn:example:complies'('urn:example:alice5558', true)). +answer('urn:example:complies'('urn:example:alice5559', true)). +answer('urn:example:complies'('urn:example:alice5560', true)). +answer('urn:example:complies'('urn:example:alice5561', true)). +answer('urn:example:complies'('urn:example:alice5562', true)). +answer('urn:example:complies'('urn:example:alice5563', true)). +answer('urn:example:complies'('urn:example:alice5564', true)). +answer('urn:example:complies'('urn:example:alice5565', true)). +answer('urn:example:complies'('urn:example:alice5566', true)). +answer('urn:example:complies'('urn:example:alice5567', true)). +answer('urn:example:complies'('urn:example:alice5568', true)). +answer('urn:example:complies'('urn:example:alice5569', true)). +answer('urn:example:complies'('urn:example:alice5570', true)). +answer('urn:example:complies'('urn:example:alice5571', true)). +answer('urn:example:complies'('urn:example:alice5572', true)). +answer('urn:example:complies'('urn:example:alice5573', true)). +answer('urn:example:complies'('urn:example:alice5574', true)). +answer('urn:example:complies'('urn:example:alice5575', true)). +answer('urn:example:complies'('urn:example:alice5576', true)). +answer('urn:example:complies'('urn:example:alice5577', true)). +answer('urn:example:complies'('urn:example:alice5578', true)). +answer('urn:example:complies'('urn:example:alice5579', true)). +answer('urn:example:complies'('urn:example:alice5580', true)). +answer('urn:example:complies'('urn:example:alice5581', true)). +answer('urn:example:complies'('urn:example:alice5582', true)). +answer('urn:example:complies'('urn:example:alice5583', true)). +answer('urn:example:complies'('urn:example:alice5584', true)). +answer('urn:example:complies'('urn:example:alice5585', true)). +answer('urn:example:complies'('urn:example:alice5586', true)). +answer('urn:example:complies'('urn:example:alice5587', true)). +answer('urn:example:complies'('urn:example:alice5588', true)). +answer('urn:example:complies'('urn:example:alice5589', true)). +answer('urn:example:complies'('urn:example:alice5590', true)). +answer('urn:example:complies'('urn:example:alice5591', true)). +answer('urn:example:complies'('urn:example:alice5592', true)). +answer('urn:example:complies'('urn:example:alice5593', true)). +answer('urn:example:complies'('urn:example:alice5594', true)). +answer('urn:example:complies'('urn:example:alice5595', true)). +answer('urn:example:complies'('urn:example:alice5596', true)). +answer('urn:example:complies'('urn:example:alice5597', true)). +answer('urn:example:complies'('urn:example:alice5598', true)). +answer('urn:example:complies'('urn:example:alice5599', true)). +answer('urn:example:complies'('urn:example:alice5600', true)). +answer('urn:example:complies'('urn:example:alice5601', true)). +answer('urn:example:complies'('urn:example:alice5602', true)). +answer('urn:example:complies'('urn:example:alice5603', true)). +answer('urn:example:complies'('urn:example:alice5604', true)). +answer('urn:example:complies'('urn:example:alice5605', true)). +answer('urn:example:complies'('urn:example:alice5606', true)). +answer('urn:example:complies'('urn:example:alice5607', true)). +answer('urn:example:complies'('urn:example:alice5608', true)). +answer('urn:example:complies'('urn:example:alice5609', true)). +answer('urn:example:complies'('urn:example:alice5610', true)). +answer('urn:example:complies'('urn:example:alice5611', true)). +answer('urn:example:complies'('urn:example:alice5612', true)). +answer('urn:example:complies'('urn:example:alice5613', true)). +answer('urn:example:complies'('urn:example:alice5614', true)). +answer('urn:example:complies'('urn:example:alice5615', true)). +answer('urn:example:complies'('urn:example:alice5616', true)). +answer('urn:example:complies'('urn:example:alice5617', true)). +answer('urn:example:complies'('urn:example:alice5618', true)). +answer('urn:example:complies'('urn:example:alice5619', true)). +answer('urn:example:complies'('urn:example:alice5620', true)). +answer('urn:example:complies'('urn:example:alice5621', true)). +answer('urn:example:complies'('urn:example:alice5622', true)). +answer('urn:example:complies'('urn:example:alice5623', true)). +answer('urn:example:complies'('urn:example:alice5624', true)). +answer('urn:example:complies'('urn:example:alice5625', true)). +answer('urn:example:complies'('urn:example:alice5626', true)). +answer('urn:example:complies'('urn:example:alice5627', true)). +answer('urn:example:complies'('urn:example:alice5628', true)). +answer('urn:example:complies'('urn:example:alice5629', true)). +answer('urn:example:complies'('urn:example:alice5630', true)). +answer('urn:example:complies'('urn:example:alice5631', true)). +answer('urn:example:complies'('urn:example:alice5632', true)). +answer('urn:example:complies'('urn:example:alice5633', true)). +answer('urn:example:complies'('urn:example:alice5634', true)). +answer('urn:example:complies'('urn:example:alice5635', true)). +answer('urn:example:complies'('urn:example:alice5636', true)). +answer('urn:example:complies'('urn:example:alice5637', true)). +answer('urn:example:complies'('urn:example:alice5638', true)). +answer('urn:example:complies'('urn:example:alice5639', true)). +answer('urn:example:complies'('urn:example:alice5640', true)). +answer('urn:example:complies'('urn:example:alice5641', true)). +answer('urn:example:complies'('urn:example:alice5642', true)). +answer('urn:example:complies'('urn:example:alice5643', true)). +answer('urn:example:complies'('urn:example:alice5644', true)). +answer('urn:example:complies'('urn:example:alice5645', true)). +answer('urn:example:complies'('urn:example:alice5646', true)). +answer('urn:example:complies'('urn:example:alice5647', true)). +answer('urn:example:complies'('urn:example:alice5648', true)). +answer('urn:example:complies'('urn:example:alice5649', true)). +answer('urn:example:complies'('urn:example:alice5650', true)). +answer('urn:example:complies'('urn:example:alice5651', true)). +answer('urn:example:complies'('urn:example:alice5652', true)). +answer('urn:example:complies'('urn:example:alice5653', true)). +answer('urn:example:complies'('urn:example:alice5654', true)). +answer('urn:example:complies'('urn:example:alice5655', true)). +answer('urn:example:complies'('urn:example:alice5656', true)). +answer('urn:example:complies'('urn:example:alice5657', true)). +answer('urn:example:complies'('urn:example:alice5658', true)). +answer('urn:example:complies'('urn:example:alice5659', true)). +answer('urn:example:complies'('urn:example:alice5660', true)). +answer('urn:example:complies'('urn:example:alice5661', true)). +answer('urn:example:complies'('urn:example:alice5662', true)). +answer('urn:example:complies'('urn:example:alice5663', true)). +answer('urn:example:complies'('urn:example:alice5664', true)). +answer('urn:example:complies'('urn:example:alice5665', true)). +answer('urn:example:complies'('urn:example:alice5666', true)). +answer('urn:example:complies'('urn:example:alice5667', true)). +answer('urn:example:complies'('urn:example:alice5668', true)). +answer('urn:example:complies'('urn:example:alice5669', true)). +answer('urn:example:complies'('urn:example:alice5670', true)). +answer('urn:example:complies'('urn:example:alice5671', true)). +answer('urn:example:complies'('urn:example:alice5672', true)). +answer('urn:example:complies'('urn:example:alice5673', true)). +answer('urn:example:complies'('urn:example:alice5674', true)). +answer('urn:example:complies'('urn:example:alice5675', true)). +answer('urn:example:complies'('urn:example:alice5676', true)). +answer('urn:example:complies'('urn:example:alice5677', true)). +answer('urn:example:complies'('urn:example:alice5678', true)). +answer('urn:example:complies'('urn:example:alice5679', true)). +answer('urn:example:complies'('urn:example:alice5680', true)). +answer('urn:example:complies'('urn:example:alice5681', true)). +answer('urn:example:complies'('urn:example:alice5682', true)). +answer('urn:example:complies'('urn:example:alice5683', true)). +answer('urn:example:complies'('urn:example:alice5684', true)). +answer('urn:example:complies'('urn:example:alice5685', true)). +answer('urn:example:complies'('urn:example:alice5686', true)). +answer('urn:example:complies'('urn:example:alice5687', true)). +answer('urn:example:complies'('urn:example:alice5688', true)). +answer('urn:example:complies'('urn:example:alice5689', true)). +answer('urn:example:complies'('urn:example:alice5690', true)). +answer('urn:example:complies'('urn:example:alice5691', true)). +answer('urn:example:complies'('urn:example:alice5692', true)). +answer('urn:example:complies'('urn:example:alice5693', true)). +answer('urn:example:complies'('urn:example:alice5694', true)). +answer('urn:example:complies'('urn:example:alice5695', true)). +answer('urn:example:complies'('urn:example:alice5696', true)). +answer('urn:example:complies'('urn:example:alice5697', true)). +answer('urn:example:complies'('urn:example:alice5698', true)). +answer('urn:example:complies'('urn:example:alice5699', true)). +answer('urn:example:complies'('urn:example:alice5700', true)). +answer('urn:example:complies'('urn:example:alice5701', true)). +answer('urn:example:complies'('urn:example:alice5702', true)). +answer('urn:example:complies'('urn:example:alice5703', true)). +answer('urn:example:complies'('urn:example:alice5704', true)). +answer('urn:example:complies'('urn:example:alice5705', true)). +answer('urn:example:complies'('urn:example:alice5706', true)). +answer('urn:example:complies'('urn:example:alice5707', true)). +answer('urn:example:complies'('urn:example:alice5708', true)). +answer('urn:example:complies'('urn:example:alice5709', true)). +answer('urn:example:complies'('urn:example:alice5710', true)). +answer('urn:example:complies'('urn:example:alice5711', true)). +answer('urn:example:complies'('urn:example:alice5712', true)). +answer('urn:example:complies'('urn:example:alice5713', true)). +answer('urn:example:complies'('urn:example:alice5714', true)). +answer('urn:example:complies'('urn:example:alice5715', true)). +answer('urn:example:complies'('urn:example:alice5716', true)). +answer('urn:example:complies'('urn:example:alice5717', true)). +answer('urn:example:complies'('urn:example:alice5718', true)). +answer('urn:example:complies'('urn:example:alice5719', true)). +answer('urn:example:complies'('urn:example:alice5720', true)). +answer('urn:example:complies'('urn:example:alice5721', true)). +answer('urn:example:complies'('urn:example:alice5722', true)). +answer('urn:example:complies'('urn:example:alice5723', true)). +answer('urn:example:complies'('urn:example:alice5724', true)). +answer('urn:example:complies'('urn:example:alice5725', true)). +answer('urn:example:complies'('urn:example:alice5726', true)). +answer('urn:example:complies'('urn:example:alice5727', true)). +answer('urn:example:complies'('urn:example:alice5728', true)). +answer('urn:example:complies'('urn:example:alice5729', true)). +answer('urn:example:complies'('urn:example:alice5730', true)). +answer('urn:example:complies'('urn:example:alice5731', true)). +answer('urn:example:complies'('urn:example:alice5732', true)). +answer('urn:example:complies'('urn:example:alice5733', true)). +answer('urn:example:complies'('urn:example:alice5734', true)). +answer('urn:example:complies'('urn:example:alice5735', true)). +answer('urn:example:complies'('urn:example:alice5736', true)). +answer('urn:example:complies'('urn:example:alice5737', true)). +answer('urn:example:complies'('urn:example:alice5738', true)). +answer('urn:example:complies'('urn:example:alice5739', true)). +answer('urn:example:complies'('urn:example:alice5740', true)). +answer('urn:example:complies'('urn:example:alice5741', true)). +answer('urn:example:complies'('urn:example:alice5742', true)). +answer('urn:example:complies'('urn:example:alice5743', true)). +answer('urn:example:complies'('urn:example:alice5744', true)). +answer('urn:example:complies'('urn:example:alice5745', true)). +answer('urn:example:complies'('urn:example:alice5746', true)). +answer('urn:example:complies'('urn:example:alice5747', true)). +answer('urn:example:complies'('urn:example:alice5748', true)). +answer('urn:example:complies'('urn:example:alice5749', true)). +answer('urn:example:complies'('urn:example:alice5750', true)). +answer('urn:example:complies'('urn:example:alice5751', true)). +answer('urn:example:complies'('urn:example:alice5752', true)). +answer('urn:example:complies'('urn:example:alice5753', true)). +answer('urn:example:complies'('urn:example:alice5754', true)). +answer('urn:example:complies'('urn:example:alice5755', true)). +answer('urn:example:complies'('urn:example:alice5756', true)). +answer('urn:example:complies'('urn:example:alice5757', true)). +answer('urn:example:complies'('urn:example:alice5758', true)). +answer('urn:example:complies'('urn:example:alice5759', true)). +answer('urn:example:complies'('urn:example:alice5760', true)). +answer('urn:example:complies'('urn:example:alice5761', true)). +answer('urn:example:complies'('urn:example:alice5762', true)). +answer('urn:example:complies'('urn:example:alice5763', true)). +answer('urn:example:complies'('urn:example:alice5764', true)). +answer('urn:example:complies'('urn:example:alice5765', true)). +answer('urn:example:complies'('urn:example:alice5766', true)). +answer('urn:example:complies'('urn:example:alice5767', true)). +answer('urn:example:complies'('urn:example:alice5768', true)). +answer('urn:example:complies'('urn:example:alice5769', true)). +answer('urn:example:complies'('urn:example:alice5770', true)). +answer('urn:example:complies'('urn:example:alice5771', true)). +answer('urn:example:complies'('urn:example:alice5772', true)). +answer('urn:example:complies'('urn:example:alice5773', true)). +answer('urn:example:complies'('urn:example:alice5774', true)). +answer('urn:example:complies'('urn:example:alice5775', true)). +answer('urn:example:complies'('urn:example:alice5776', true)). +answer('urn:example:complies'('urn:example:alice5777', true)). +answer('urn:example:complies'('urn:example:alice5778', true)). +answer('urn:example:complies'('urn:example:alice5779', true)). +answer('urn:example:complies'('urn:example:alice5780', true)). +answer('urn:example:complies'('urn:example:alice5781', true)). +answer('urn:example:complies'('urn:example:alice5782', true)). +answer('urn:example:complies'('urn:example:alice5783', true)). +answer('urn:example:complies'('urn:example:alice5784', true)). +answer('urn:example:complies'('urn:example:alice5785', true)). +answer('urn:example:complies'('urn:example:alice5786', true)). +answer('urn:example:complies'('urn:example:alice5787', true)). +answer('urn:example:complies'('urn:example:alice5788', true)). +answer('urn:example:complies'('urn:example:alice5789', true)). +answer('urn:example:complies'('urn:example:alice5790', true)). +answer('urn:example:complies'('urn:example:alice5791', true)). +answer('urn:example:complies'('urn:example:alice5792', true)). +answer('urn:example:complies'('urn:example:alice5793', true)). +answer('urn:example:complies'('urn:example:alice5794', true)). +answer('urn:example:complies'('urn:example:alice5795', true)). +answer('urn:example:complies'('urn:example:alice5796', true)). +answer('urn:example:complies'('urn:example:alice5797', true)). +answer('urn:example:complies'('urn:example:alice5798', true)). +answer('urn:example:complies'('urn:example:alice5799', true)). +answer('urn:example:complies'('urn:example:alice5800', true)). +answer('urn:example:complies'('urn:example:alice5801', true)). +answer('urn:example:complies'('urn:example:alice5802', true)). +answer('urn:example:complies'('urn:example:alice5803', true)). +answer('urn:example:complies'('urn:example:alice5804', true)). +answer('urn:example:complies'('urn:example:alice5805', true)). +answer('urn:example:complies'('urn:example:alice5806', true)). +answer('urn:example:complies'('urn:example:alice5807', true)). +answer('urn:example:complies'('urn:example:alice5808', true)). +answer('urn:example:complies'('urn:example:alice5809', true)). +answer('urn:example:complies'('urn:example:alice5810', true)). +answer('urn:example:complies'('urn:example:alice5811', true)). +answer('urn:example:complies'('urn:example:alice5812', true)). +answer('urn:example:complies'('urn:example:alice5813', true)). +answer('urn:example:complies'('urn:example:alice5814', true)). +answer('urn:example:complies'('urn:example:alice5815', true)). +answer('urn:example:complies'('urn:example:alice5816', true)). +answer('urn:example:complies'('urn:example:alice5817', true)). +answer('urn:example:complies'('urn:example:alice5818', true)). +answer('urn:example:complies'('urn:example:alice5819', true)). +answer('urn:example:complies'('urn:example:alice5820', true)). +answer('urn:example:complies'('urn:example:alice5821', true)). +answer('urn:example:complies'('urn:example:alice5822', true)). +answer('urn:example:complies'('urn:example:alice5823', true)). +answer('urn:example:complies'('urn:example:alice5824', true)). +answer('urn:example:complies'('urn:example:alice5825', true)). +answer('urn:example:complies'('urn:example:alice5826', true)). +answer('urn:example:complies'('urn:example:alice5827', true)). +answer('urn:example:complies'('urn:example:alice5828', true)). +answer('urn:example:complies'('urn:example:alice5829', true)). +answer('urn:example:complies'('urn:example:alice5830', true)). +answer('urn:example:complies'('urn:example:alice5831', true)). +answer('urn:example:complies'('urn:example:alice5832', true)). +answer('urn:example:complies'('urn:example:alice5833', true)). +answer('urn:example:complies'('urn:example:alice5834', true)). +answer('urn:example:complies'('urn:example:alice5835', true)). +answer('urn:example:complies'('urn:example:alice5836', true)). +answer('urn:example:complies'('urn:example:alice5837', true)). +answer('urn:example:complies'('urn:example:alice5838', true)). +answer('urn:example:complies'('urn:example:alice5839', true)). +answer('urn:example:complies'('urn:example:alice5840', true)). +answer('urn:example:complies'('urn:example:alice5841', true)). +answer('urn:example:complies'('urn:example:alice5842', true)). +answer('urn:example:complies'('urn:example:alice5843', true)). +answer('urn:example:complies'('urn:example:alice5844', true)). +answer('urn:example:complies'('urn:example:alice5845', true)). +answer('urn:example:complies'('urn:example:alice5846', true)). +answer('urn:example:complies'('urn:example:alice5847', true)). +answer('urn:example:complies'('urn:example:alice5848', true)). +answer('urn:example:complies'('urn:example:alice5849', true)). +answer('urn:example:complies'('urn:example:alice5850', true)). +answer('urn:example:complies'('urn:example:alice5851', true)). +answer('urn:example:complies'('urn:example:alice5852', true)). +answer('urn:example:complies'('urn:example:alice5853', true)). +answer('urn:example:complies'('urn:example:alice5854', true)). +answer('urn:example:complies'('urn:example:alice5855', true)). +answer('urn:example:complies'('urn:example:alice5856', true)). +answer('urn:example:complies'('urn:example:alice5857', true)). +answer('urn:example:complies'('urn:example:alice5858', true)). +answer('urn:example:complies'('urn:example:alice5859', true)). +answer('urn:example:complies'('urn:example:alice5860', true)). +answer('urn:example:complies'('urn:example:alice5861', true)). +answer('urn:example:complies'('urn:example:alice5862', true)). +answer('urn:example:complies'('urn:example:alice5863', true)). +answer('urn:example:complies'('urn:example:alice5864', true)). +answer('urn:example:complies'('urn:example:alice5865', true)). +answer('urn:example:complies'('urn:example:alice5866', true)). +answer('urn:example:complies'('urn:example:alice5867', true)). +answer('urn:example:complies'('urn:example:alice5868', true)). +answer('urn:example:complies'('urn:example:alice5869', true)). +answer('urn:example:complies'('urn:example:alice5870', true)). +answer('urn:example:complies'('urn:example:alice5871', true)). +answer('urn:example:complies'('urn:example:alice5872', true)). +answer('urn:example:complies'('urn:example:alice5873', true)). +answer('urn:example:complies'('urn:example:alice5874', true)). +answer('urn:example:complies'('urn:example:alice5875', true)). +answer('urn:example:complies'('urn:example:alice5876', true)). +answer('urn:example:complies'('urn:example:alice5877', true)). +answer('urn:example:complies'('urn:example:alice5878', true)). +answer('urn:example:complies'('urn:example:alice5879', true)). +answer('urn:example:complies'('urn:example:alice5880', true)). +answer('urn:example:complies'('urn:example:alice5881', true)). +answer('urn:example:complies'('urn:example:alice5882', true)). +answer('urn:example:complies'('urn:example:alice5883', true)). +answer('urn:example:complies'('urn:example:alice5884', true)). +answer('urn:example:complies'('urn:example:alice5885', true)). +answer('urn:example:complies'('urn:example:alice5886', true)). +answer('urn:example:complies'('urn:example:alice5887', true)). +answer('urn:example:complies'('urn:example:alice5888', true)). +answer('urn:example:complies'('urn:example:alice5889', true)). +answer('urn:example:complies'('urn:example:alice5890', true)). +answer('urn:example:complies'('urn:example:alice5891', true)). +answer('urn:example:complies'('urn:example:alice5892', true)). +answer('urn:example:complies'('urn:example:alice5893', true)). +answer('urn:example:complies'('urn:example:alice5894', true)). +answer('urn:example:complies'('urn:example:alice5895', true)). +answer('urn:example:complies'('urn:example:alice5896', true)). +answer('urn:example:complies'('urn:example:alice5897', true)). +answer('urn:example:complies'('urn:example:alice5898', true)). +answer('urn:example:complies'('urn:example:alice5899', true)). +answer('urn:example:complies'('urn:example:alice5900', true)). +answer('urn:example:complies'('urn:example:alice5901', true)). +answer('urn:example:complies'('urn:example:alice5902', true)). +answer('urn:example:complies'('urn:example:alice5903', true)). +answer('urn:example:complies'('urn:example:alice5904', true)). +answer('urn:example:complies'('urn:example:alice5905', true)). +answer('urn:example:complies'('urn:example:alice5906', true)). +answer('urn:example:complies'('urn:example:alice5907', true)). +answer('urn:example:complies'('urn:example:alice5908', true)). +answer('urn:example:complies'('urn:example:alice5909', true)). +answer('urn:example:complies'('urn:example:alice5910', true)). +answer('urn:example:complies'('urn:example:alice5911', true)). +answer('urn:example:complies'('urn:example:alice5912', true)). +answer('urn:example:complies'('urn:example:alice5913', true)). +answer('urn:example:complies'('urn:example:alice5914', true)). +answer('urn:example:complies'('urn:example:alice5915', true)). +answer('urn:example:complies'('urn:example:alice5916', true)). +answer('urn:example:complies'('urn:example:alice5917', true)). +answer('urn:example:complies'('urn:example:alice5918', true)). +answer('urn:example:complies'('urn:example:alice5919', true)). +answer('urn:example:complies'('urn:example:alice5920', true)). +answer('urn:example:complies'('urn:example:alice5921', true)). +answer('urn:example:complies'('urn:example:alice5922', true)). +answer('urn:example:complies'('urn:example:alice5923', true)). +answer('urn:example:complies'('urn:example:alice5924', true)). +answer('urn:example:complies'('urn:example:alice5925', true)). +answer('urn:example:complies'('urn:example:alice5926', true)). +answer('urn:example:complies'('urn:example:alice5927', true)). +answer('urn:example:complies'('urn:example:alice5928', true)). +answer('urn:example:complies'('urn:example:alice5929', true)). +answer('urn:example:complies'('urn:example:alice5930', true)). +answer('urn:example:complies'('urn:example:alice5931', true)). +answer('urn:example:complies'('urn:example:alice5932', true)). +answer('urn:example:complies'('urn:example:alice5933', true)). +answer('urn:example:complies'('urn:example:alice5934', true)). +answer('urn:example:complies'('urn:example:alice5935', true)). +answer('urn:example:complies'('urn:example:alice5936', true)). +answer('urn:example:complies'('urn:example:alice5937', true)). +answer('urn:example:complies'('urn:example:alice5938', true)). +answer('urn:example:complies'('urn:example:alice5939', true)). +answer('urn:example:complies'('urn:example:alice5940', true)). +answer('urn:example:complies'('urn:example:alice5941', true)). +answer('urn:example:complies'('urn:example:alice5942', true)). +answer('urn:example:complies'('urn:example:alice5943', true)). +answer('urn:example:complies'('urn:example:alice5944', true)). +answer('urn:example:complies'('urn:example:alice5945', true)). +answer('urn:example:complies'('urn:example:alice5946', true)). +answer('urn:example:complies'('urn:example:alice5947', true)). +answer('urn:example:complies'('urn:example:alice5948', true)). +answer('urn:example:complies'('urn:example:alice5949', true)). +answer('urn:example:complies'('urn:example:alice5950', true)). +answer('urn:example:complies'('urn:example:alice5951', true)). +answer('urn:example:complies'('urn:example:alice5952', true)). +answer('urn:example:complies'('urn:example:alice5953', true)). +answer('urn:example:complies'('urn:example:alice5954', true)). +answer('urn:example:complies'('urn:example:alice5955', true)). +answer('urn:example:complies'('urn:example:alice5956', true)). +answer('urn:example:complies'('urn:example:alice5957', true)). +answer('urn:example:complies'('urn:example:alice5958', true)). +answer('urn:example:complies'('urn:example:alice5959', true)). +answer('urn:example:complies'('urn:example:alice5960', true)). +answer('urn:example:complies'('urn:example:alice5961', true)). +answer('urn:example:complies'('urn:example:alice5962', true)). +answer('urn:example:complies'('urn:example:alice5963', true)). +answer('urn:example:complies'('urn:example:alice5964', true)). +answer('urn:example:complies'('urn:example:alice5965', true)). +answer('urn:example:complies'('urn:example:alice5966', true)). +answer('urn:example:complies'('urn:example:alice5967', true)). +answer('urn:example:complies'('urn:example:alice5968', true)). +answer('urn:example:complies'('urn:example:alice5969', true)). +answer('urn:example:complies'('urn:example:alice5970', true)). +answer('urn:example:complies'('urn:example:alice5971', true)). +answer('urn:example:complies'('urn:example:alice5972', true)). +answer('urn:example:complies'('urn:example:alice5973', true)). +answer('urn:example:complies'('urn:example:alice5974', true)). +answer('urn:example:complies'('urn:example:alice5975', true)). +answer('urn:example:complies'('urn:example:alice5976', true)). +answer('urn:example:complies'('urn:example:alice5977', true)). +answer('urn:example:complies'('urn:example:alice5978', true)). +answer('urn:example:complies'('urn:example:alice5979', true)). +answer('urn:example:complies'('urn:example:alice5980', true)). +answer('urn:example:complies'('urn:example:alice5981', true)). +answer('urn:example:complies'('urn:example:alice5982', true)). +answer('urn:example:complies'('urn:example:alice5983', true)). +answer('urn:example:complies'('urn:example:alice5984', true)). +answer('urn:example:complies'('urn:example:alice5985', true)). +answer('urn:example:complies'('urn:example:alice5986', true)). +answer('urn:example:complies'('urn:example:alice5987', true)). +answer('urn:example:complies'('urn:example:alice5988', true)). +answer('urn:example:complies'('urn:example:alice5989', true)). +answer('urn:example:complies'('urn:example:alice5990', true)). +answer('urn:example:complies'('urn:example:alice5991', true)). +answer('urn:example:complies'('urn:example:alice5992', true)). +answer('urn:example:complies'('urn:example:alice5993', true)). +answer('urn:example:complies'('urn:example:alice5994', true)). +answer('urn:example:complies'('urn:example:alice5995', true)). +answer('urn:example:complies'('urn:example:alice5996', true)). +answer('urn:example:complies'('urn:example:alice5997', true)). +answer('urn:example:complies'('urn:example:alice5998', true)). +answer('urn:example:complies'('urn:example:alice5999', true)). +answer('urn:example:complies'('urn:example:alice6000', true)). +answer('urn:example:complies'('urn:example:alice6001', true)). +answer('urn:example:complies'('urn:example:alice6002', true)). +answer('urn:example:complies'('urn:example:alice6003', true)). +answer('urn:example:complies'('urn:example:alice6004', true)). +answer('urn:example:complies'('urn:example:alice6005', true)). +answer('urn:example:complies'('urn:example:alice6006', true)). +answer('urn:example:complies'('urn:example:alice6007', true)). +answer('urn:example:complies'('urn:example:alice6008', true)). +answer('urn:example:complies'('urn:example:alice6009', true)). +answer('urn:example:complies'('urn:example:alice6010', true)). +answer('urn:example:complies'('urn:example:alice6011', true)). +answer('urn:example:complies'('urn:example:alice6012', true)). +answer('urn:example:complies'('urn:example:alice6013', true)). +answer('urn:example:complies'('urn:example:alice6014', true)). +answer('urn:example:complies'('urn:example:alice6015', true)). +answer('urn:example:complies'('urn:example:alice6016', true)). +answer('urn:example:complies'('urn:example:alice6017', true)). +answer('urn:example:complies'('urn:example:alice6018', true)). +answer('urn:example:complies'('urn:example:alice6019', true)). +answer('urn:example:complies'('urn:example:alice6020', true)). +answer('urn:example:complies'('urn:example:alice6021', true)). +answer('urn:example:complies'('urn:example:alice6022', true)). +answer('urn:example:complies'('urn:example:alice6023', true)). +answer('urn:example:complies'('urn:example:alice6024', true)). +answer('urn:example:complies'('urn:example:alice6025', true)). +answer('urn:example:complies'('urn:example:alice6026', true)). +answer('urn:example:complies'('urn:example:alice6027', true)). +answer('urn:example:complies'('urn:example:alice6028', true)). +answer('urn:example:complies'('urn:example:alice6029', true)). +answer('urn:example:complies'('urn:example:alice6030', true)). +answer('urn:example:complies'('urn:example:alice6031', true)). +answer('urn:example:complies'('urn:example:alice6032', true)). +answer('urn:example:complies'('urn:example:alice6033', true)). +answer('urn:example:complies'('urn:example:alice6034', true)). +answer('urn:example:complies'('urn:example:alice6035', true)). +answer('urn:example:complies'('urn:example:alice6036', true)). +answer('urn:example:complies'('urn:example:alice6037', true)). +answer('urn:example:complies'('urn:example:alice6038', true)). +answer('urn:example:complies'('urn:example:alice6039', true)). +answer('urn:example:complies'('urn:example:alice6040', true)). +answer('urn:example:complies'('urn:example:alice6041', true)). +answer('urn:example:complies'('urn:example:alice6042', true)). +answer('urn:example:complies'('urn:example:alice6043', true)). +answer('urn:example:complies'('urn:example:alice6044', true)). +answer('urn:example:complies'('urn:example:alice6045', true)). +answer('urn:example:complies'('urn:example:alice6046', true)). +answer('urn:example:complies'('urn:example:alice6047', true)). +answer('urn:example:complies'('urn:example:alice6048', true)). +answer('urn:example:complies'('urn:example:alice6049', true)). +answer('urn:example:complies'('urn:example:alice6050', true)). +answer('urn:example:complies'('urn:example:alice6051', true)). +answer('urn:example:complies'('urn:example:alice6052', true)). +answer('urn:example:complies'('urn:example:alice6053', true)). +answer('urn:example:complies'('urn:example:alice6054', true)). +answer('urn:example:complies'('urn:example:alice6055', true)). +answer('urn:example:complies'('urn:example:alice6056', true)). +answer('urn:example:complies'('urn:example:alice6057', true)). +answer('urn:example:complies'('urn:example:alice6058', true)). +answer('urn:example:complies'('urn:example:alice6059', true)). +answer('urn:example:complies'('urn:example:alice6060', true)). +answer('urn:example:complies'('urn:example:alice6061', true)). +answer('urn:example:complies'('urn:example:alice6062', true)). +answer('urn:example:complies'('urn:example:alice6063', true)). +answer('urn:example:complies'('urn:example:alice6064', true)). +answer('urn:example:complies'('urn:example:alice6065', true)). +answer('urn:example:complies'('urn:example:alice6066', true)). +answer('urn:example:complies'('urn:example:alice6067', true)). +answer('urn:example:complies'('urn:example:alice6068', true)). +answer('urn:example:complies'('urn:example:alice6069', true)). +answer('urn:example:complies'('urn:example:alice6070', true)). +answer('urn:example:complies'('urn:example:alice6071', true)). +answer('urn:example:complies'('urn:example:alice6072', true)). +answer('urn:example:complies'('urn:example:alice6073', true)). +answer('urn:example:complies'('urn:example:alice6074', true)). +answer('urn:example:complies'('urn:example:alice6075', true)). +answer('urn:example:complies'('urn:example:alice6076', true)). +answer('urn:example:complies'('urn:example:alice6077', true)). +answer('urn:example:complies'('urn:example:alice6078', true)). +answer('urn:example:complies'('urn:example:alice6079', true)). +answer('urn:example:complies'('urn:example:alice6080', true)). +answer('urn:example:complies'('urn:example:alice6081', true)). +answer('urn:example:complies'('urn:example:alice6082', true)). +answer('urn:example:complies'('urn:example:alice6083', true)). +answer('urn:example:complies'('urn:example:alice6084', true)). +answer('urn:example:complies'('urn:example:alice6085', true)). +answer('urn:example:complies'('urn:example:alice6086', true)). +answer('urn:example:complies'('urn:example:alice6087', true)). +answer('urn:example:complies'('urn:example:alice6088', true)). +answer('urn:example:complies'('urn:example:alice6089', true)). +answer('urn:example:complies'('urn:example:alice6090', true)). +answer('urn:example:complies'('urn:example:alice6091', true)). +answer('urn:example:complies'('urn:example:alice6092', true)). +answer('urn:example:complies'('urn:example:alice6093', true)). +answer('urn:example:complies'('urn:example:alice6094', true)). +answer('urn:example:complies'('urn:example:alice6095', true)). +answer('urn:example:complies'('urn:example:alice6096', true)). +answer('urn:example:complies'('urn:example:alice6097', true)). +answer('urn:example:complies'('urn:example:alice6098', true)). +answer('urn:example:complies'('urn:example:alice6099', true)). +answer('urn:example:complies'('urn:example:alice6100', true)). +answer('urn:example:complies'('urn:example:alice6101', true)). +answer('urn:example:complies'('urn:example:alice6102', true)). +answer('urn:example:complies'('urn:example:alice6103', true)). +answer('urn:example:complies'('urn:example:alice6104', true)). +answer('urn:example:complies'('urn:example:alice6105', true)). +answer('urn:example:complies'('urn:example:alice6106', true)). +answer('urn:example:complies'('urn:example:alice6107', true)). +answer('urn:example:complies'('urn:example:alice6108', true)). +answer('urn:example:complies'('urn:example:alice6109', true)). +answer('urn:example:complies'('urn:example:alice6110', true)). +answer('urn:example:complies'('urn:example:alice6111', true)). +answer('urn:example:complies'('urn:example:alice6112', true)). +answer('urn:example:complies'('urn:example:alice6113', true)). +answer('urn:example:complies'('urn:example:alice6114', true)). +answer('urn:example:complies'('urn:example:alice6115', true)). +answer('urn:example:complies'('urn:example:alice6116', true)). +answer('urn:example:complies'('urn:example:alice6117', true)). +answer('urn:example:complies'('urn:example:alice6118', true)). +answer('urn:example:complies'('urn:example:alice6119', true)). +answer('urn:example:complies'('urn:example:alice6120', true)). +answer('urn:example:complies'('urn:example:alice6121', true)). +answer('urn:example:complies'('urn:example:alice6122', true)). +answer('urn:example:complies'('urn:example:alice6123', true)). +answer('urn:example:complies'('urn:example:alice6124', true)). +answer('urn:example:complies'('urn:example:alice6125', true)). +answer('urn:example:complies'('urn:example:alice6126', true)). +answer('urn:example:complies'('urn:example:alice6127', true)). +answer('urn:example:complies'('urn:example:alice6128', true)). +answer('urn:example:complies'('urn:example:alice6129', true)). +answer('urn:example:complies'('urn:example:alice6130', true)). +answer('urn:example:complies'('urn:example:alice6131', true)). +answer('urn:example:complies'('urn:example:alice6132', true)). +answer('urn:example:complies'('urn:example:alice6133', true)). +answer('urn:example:complies'('urn:example:alice6134', true)). +answer('urn:example:complies'('urn:example:alice6135', true)). +answer('urn:example:complies'('urn:example:alice6136', true)). +answer('urn:example:complies'('urn:example:alice6137', true)). +answer('urn:example:complies'('urn:example:alice6138', true)). +answer('urn:example:complies'('urn:example:alice6139', true)). +answer('urn:example:complies'('urn:example:alice6140', true)). +answer('urn:example:complies'('urn:example:alice6141', true)). +answer('urn:example:complies'('urn:example:alice6142', true)). +answer('urn:example:complies'('urn:example:alice6143', true)). +answer('urn:example:complies'('urn:example:alice6144', true)). +answer('urn:example:complies'('urn:example:alice6145', true)). +answer('urn:example:complies'('urn:example:alice6146', true)). +answer('urn:example:complies'('urn:example:alice6147', true)). +answer('urn:example:complies'('urn:example:alice6148', true)). +answer('urn:example:complies'('urn:example:alice6149', true)). +answer('urn:example:complies'('urn:example:alice6150', true)). +answer('urn:example:complies'('urn:example:alice6151', true)). +answer('urn:example:complies'('urn:example:alice6152', true)). +answer('urn:example:complies'('urn:example:alice6153', true)). +answer('urn:example:complies'('urn:example:alice6154', true)). +answer('urn:example:complies'('urn:example:alice6155', true)). +answer('urn:example:complies'('urn:example:alice6156', true)). +answer('urn:example:complies'('urn:example:alice6157', true)). +answer('urn:example:complies'('urn:example:alice6158', true)). +answer('urn:example:complies'('urn:example:alice6159', true)). +answer('urn:example:complies'('urn:example:alice6160', true)). +answer('urn:example:complies'('urn:example:alice6161', true)). +answer('urn:example:complies'('urn:example:alice6162', true)). +answer('urn:example:complies'('urn:example:alice6163', true)). +answer('urn:example:complies'('urn:example:alice6164', true)). +answer('urn:example:complies'('urn:example:alice6165', true)). +answer('urn:example:complies'('urn:example:alice6166', true)). +answer('urn:example:complies'('urn:example:alice6167', true)). +answer('urn:example:complies'('urn:example:alice6168', true)). +answer('urn:example:complies'('urn:example:alice6169', true)). +answer('urn:example:complies'('urn:example:alice6170', true)). +answer('urn:example:complies'('urn:example:alice6171', true)). +answer('urn:example:complies'('urn:example:alice6172', true)). +answer('urn:example:complies'('urn:example:alice6173', true)). +answer('urn:example:complies'('urn:example:alice6174', true)). +answer('urn:example:complies'('urn:example:alice6175', true)). +answer('urn:example:complies'('urn:example:alice6176', true)). +answer('urn:example:complies'('urn:example:alice6177', true)). +answer('urn:example:complies'('urn:example:alice6178', true)). +answer('urn:example:complies'('urn:example:alice6179', true)). +answer('urn:example:complies'('urn:example:alice6180', true)). +answer('urn:example:complies'('urn:example:alice6181', true)). +answer('urn:example:complies'('urn:example:alice6182', true)). +answer('urn:example:complies'('urn:example:alice6183', true)). +answer('urn:example:complies'('urn:example:alice6184', true)). +answer('urn:example:complies'('urn:example:alice6185', true)). +answer('urn:example:complies'('urn:example:alice6186', true)). +answer('urn:example:complies'('urn:example:alice6187', true)). +answer('urn:example:complies'('urn:example:alice6188', true)). +answer('urn:example:complies'('urn:example:alice6189', true)). +answer('urn:example:complies'('urn:example:alice6190', true)). +answer('urn:example:complies'('urn:example:alice6191', true)). +answer('urn:example:complies'('urn:example:alice6192', true)). +answer('urn:example:complies'('urn:example:alice6193', true)). +answer('urn:example:complies'('urn:example:alice6194', true)). +answer('urn:example:complies'('urn:example:alice6195', true)). +answer('urn:example:complies'('urn:example:alice6196', true)). +answer('urn:example:complies'('urn:example:alice6197', true)). +answer('urn:example:complies'('urn:example:alice6198', true)). +answer('urn:example:complies'('urn:example:alice6199', true)). +answer('urn:example:complies'('urn:example:alice6200', true)). +answer('urn:example:complies'('urn:example:alice6201', true)). +answer('urn:example:complies'('urn:example:alice6202', true)). +answer('urn:example:complies'('urn:example:alice6203', true)). +answer('urn:example:complies'('urn:example:alice6204', true)). +answer('urn:example:complies'('urn:example:alice6205', true)). +answer('urn:example:complies'('urn:example:alice6206', true)). +answer('urn:example:complies'('urn:example:alice6207', true)). +answer('urn:example:complies'('urn:example:alice6208', true)). +answer('urn:example:complies'('urn:example:alice6209', true)). +answer('urn:example:complies'('urn:example:alice6210', true)). +answer('urn:example:complies'('urn:example:alice6211', true)). +answer('urn:example:complies'('urn:example:alice6212', true)). +answer('urn:example:complies'('urn:example:alice6213', true)). +answer('urn:example:complies'('urn:example:alice6214', true)). +answer('urn:example:complies'('urn:example:alice6215', true)). +answer('urn:example:complies'('urn:example:alice6216', true)). +answer('urn:example:complies'('urn:example:alice6217', true)). +answer('urn:example:complies'('urn:example:alice6218', true)). +answer('urn:example:complies'('urn:example:alice6219', true)). +answer('urn:example:complies'('urn:example:alice6220', true)). +answer('urn:example:complies'('urn:example:alice6221', true)). +answer('urn:example:complies'('urn:example:alice6222', true)). +answer('urn:example:complies'('urn:example:alice6223', true)). +answer('urn:example:complies'('urn:example:alice6224', true)). +answer('urn:example:complies'('urn:example:alice6225', true)). +answer('urn:example:complies'('urn:example:alice6226', true)). +answer('urn:example:complies'('urn:example:alice6227', true)). +answer('urn:example:complies'('urn:example:alice6228', true)). +answer('urn:example:complies'('urn:example:alice6229', true)). +answer('urn:example:complies'('urn:example:alice6230', true)). +answer('urn:example:complies'('urn:example:alice6231', true)). +answer('urn:example:complies'('urn:example:alice6232', true)). +answer('urn:example:complies'('urn:example:alice6233', true)). +answer('urn:example:complies'('urn:example:alice6234', true)). +answer('urn:example:complies'('urn:example:alice6235', true)). +answer('urn:example:complies'('urn:example:alice6236', true)). +answer('urn:example:complies'('urn:example:alice6237', true)). +answer('urn:example:complies'('urn:example:alice6238', true)). +answer('urn:example:complies'('urn:example:alice6239', true)). +answer('urn:example:complies'('urn:example:alice6240', true)). +answer('urn:example:complies'('urn:example:alice6241', true)). +answer('urn:example:complies'('urn:example:alice6242', true)). +answer('urn:example:complies'('urn:example:alice6243', true)). +answer('urn:example:complies'('urn:example:alice6244', true)). +answer('urn:example:complies'('urn:example:alice6245', true)). +answer('urn:example:complies'('urn:example:alice6246', true)). +answer('urn:example:complies'('urn:example:alice6247', true)). +answer('urn:example:complies'('urn:example:alice6248', true)). +answer('urn:example:complies'('urn:example:alice6249', true)). +answer('urn:example:complies'('urn:example:alice6250', true)). +answer('urn:example:complies'('urn:example:alice6251', true)). +answer('urn:example:complies'('urn:example:alice6252', true)). +answer('urn:example:complies'('urn:example:alice6253', true)). +answer('urn:example:complies'('urn:example:alice6254', true)). +answer('urn:example:complies'('urn:example:alice6255', true)). +answer('urn:example:complies'('urn:example:alice6256', true)). +answer('urn:example:complies'('urn:example:alice6257', true)). +answer('urn:example:complies'('urn:example:alice6258', true)). +answer('urn:example:complies'('urn:example:alice6259', true)). +answer('urn:example:complies'('urn:example:alice6260', true)). +answer('urn:example:complies'('urn:example:alice6261', true)). +answer('urn:example:complies'('urn:example:alice6262', true)). +answer('urn:example:complies'('urn:example:alice6263', true)). +answer('urn:example:complies'('urn:example:alice6264', true)). +answer('urn:example:complies'('urn:example:alice6265', true)). +answer('urn:example:complies'('urn:example:alice6266', true)). +answer('urn:example:complies'('urn:example:alice6267', true)). +answer('urn:example:complies'('urn:example:alice6268', true)). +answer('urn:example:complies'('urn:example:alice6269', true)). +answer('urn:example:complies'('urn:example:alice6270', true)). +answer('urn:example:complies'('urn:example:alice6271', true)). +answer('urn:example:complies'('urn:example:alice6272', true)). +answer('urn:example:complies'('urn:example:alice6273', true)). +answer('urn:example:complies'('urn:example:alice6274', true)). +answer('urn:example:complies'('urn:example:alice6275', true)). +answer('urn:example:complies'('urn:example:alice6276', true)). +answer('urn:example:complies'('urn:example:alice6277', true)). +answer('urn:example:complies'('urn:example:alice6278', true)). +answer('urn:example:complies'('urn:example:alice6279', true)). +answer('urn:example:complies'('urn:example:alice6280', true)). +answer('urn:example:complies'('urn:example:alice6281', true)). +answer('urn:example:complies'('urn:example:alice6282', true)). +answer('urn:example:complies'('urn:example:alice6283', true)). +answer('urn:example:complies'('urn:example:alice6284', true)). +answer('urn:example:complies'('urn:example:alice6285', true)). +answer('urn:example:complies'('urn:example:alice6286', true)). +answer('urn:example:complies'('urn:example:alice6287', true)). +answer('urn:example:complies'('urn:example:alice6288', true)). +answer('urn:example:complies'('urn:example:alice6289', true)). +answer('urn:example:complies'('urn:example:alice6290', true)). +answer('urn:example:complies'('urn:example:alice6291', true)). +answer('urn:example:complies'('urn:example:alice6292', true)). +answer('urn:example:complies'('urn:example:alice6293', true)). +answer('urn:example:complies'('urn:example:alice6294', true)). +answer('urn:example:complies'('urn:example:alice6295', true)). +answer('urn:example:complies'('urn:example:alice6296', true)). +answer('urn:example:complies'('urn:example:alice6297', true)). +answer('urn:example:complies'('urn:example:alice6298', true)). +answer('urn:example:complies'('urn:example:alice6299', true)). +answer('urn:example:complies'('urn:example:alice6300', true)). +answer('urn:example:complies'('urn:example:alice6301', true)). +answer('urn:example:complies'('urn:example:alice6302', true)). +answer('urn:example:complies'('urn:example:alice6303', true)). +answer('urn:example:complies'('urn:example:alice6304', true)). +answer('urn:example:complies'('urn:example:alice6305', true)). +answer('urn:example:complies'('urn:example:alice6306', true)). +answer('urn:example:complies'('urn:example:alice6307', true)). +answer('urn:example:complies'('urn:example:alice6308', true)). +answer('urn:example:complies'('urn:example:alice6309', true)). +answer('urn:example:complies'('urn:example:alice6310', true)). +answer('urn:example:complies'('urn:example:alice6311', true)). +answer('urn:example:complies'('urn:example:alice6312', true)). +answer('urn:example:complies'('urn:example:alice6313', true)). +answer('urn:example:complies'('urn:example:alice6314', true)). +answer('urn:example:complies'('urn:example:alice6315', true)). +answer('urn:example:complies'('urn:example:alice6316', true)). +answer('urn:example:complies'('urn:example:alice6317', true)). +answer('urn:example:complies'('urn:example:alice6318', true)). +answer('urn:example:complies'('urn:example:alice6319', true)). +answer('urn:example:complies'('urn:example:alice6320', true)). +answer('urn:example:complies'('urn:example:alice6321', true)). +answer('urn:example:complies'('urn:example:alice6322', true)). +answer('urn:example:complies'('urn:example:alice6323', true)). +answer('urn:example:complies'('urn:example:alice6324', true)). +answer('urn:example:complies'('urn:example:alice6325', true)). +answer('urn:example:complies'('urn:example:alice6326', true)). +answer('urn:example:complies'('urn:example:alice6327', true)). +answer('urn:example:complies'('urn:example:alice6328', true)). +answer('urn:example:complies'('urn:example:alice6329', true)). +answer('urn:example:complies'('urn:example:alice6330', true)). +answer('urn:example:complies'('urn:example:alice6331', true)). +answer('urn:example:complies'('urn:example:alice6332', true)). +answer('urn:example:complies'('urn:example:alice6333', true)). +answer('urn:example:complies'('urn:example:alice6334', true)). +answer('urn:example:complies'('urn:example:alice6335', true)). +answer('urn:example:complies'('urn:example:alice6336', true)). +answer('urn:example:complies'('urn:example:alice6337', true)). +answer('urn:example:complies'('urn:example:alice6338', true)). +answer('urn:example:complies'('urn:example:alice6339', true)). +answer('urn:example:complies'('urn:example:alice6340', true)). +answer('urn:example:complies'('urn:example:alice6341', true)). +answer('urn:example:complies'('urn:example:alice6342', true)). +answer('urn:example:complies'('urn:example:alice6343', true)). +answer('urn:example:complies'('urn:example:alice6344', true)). +answer('urn:example:complies'('urn:example:alice6345', true)). +answer('urn:example:complies'('urn:example:alice6346', true)). +answer('urn:example:complies'('urn:example:alice6347', true)). +answer('urn:example:complies'('urn:example:alice6348', true)). +answer('urn:example:complies'('urn:example:alice6349', true)). +answer('urn:example:complies'('urn:example:alice6350', true)). +answer('urn:example:complies'('urn:example:alice6351', true)). +answer('urn:example:complies'('urn:example:alice6352', true)). +answer('urn:example:complies'('urn:example:alice6353', true)). +answer('urn:example:complies'('urn:example:alice6354', true)). +answer('urn:example:complies'('urn:example:alice6355', true)). +answer('urn:example:complies'('urn:example:alice6356', true)). +answer('urn:example:complies'('urn:example:alice6357', true)). +answer('urn:example:complies'('urn:example:alice6358', true)). +answer('urn:example:complies'('urn:example:alice6359', true)). +answer('urn:example:complies'('urn:example:alice6360', true)). +answer('urn:example:complies'('urn:example:alice6361', true)). +answer('urn:example:complies'('urn:example:alice6362', true)). +answer('urn:example:complies'('urn:example:alice6363', true)). +answer('urn:example:complies'('urn:example:alice6364', true)). +answer('urn:example:complies'('urn:example:alice6365', true)). +answer('urn:example:complies'('urn:example:alice6366', true)). +answer('urn:example:complies'('urn:example:alice6367', true)). +answer('urn:example:complies'('urn:example:alice6368', true)). +answer('urn:example:complies'('urn:example:alice6369', true)). +answer('urn:example:complies'('urn:example:alice6370', true)). +answer('urn:example:complies'('urn:example:alice6371', true)). +answer('urn:example:complies'('urn:example:alice6372', true)). +answer('urn:example:complies'('urn:example:alice6373', true)). +answer('urn:example:complies'('urn:example:alice6374', true)). +answer('urn:example:complies'('urn:example:alice6375', true)). +answer('urn:example:complies'('urn:example:alice6376', true)). +answer('urn:example:complies'('urn:example:alice6377', true)). +answer('urn:example:complies'('urn:example:alice6378', true)). +answer('urn:example:complies'('urn:example:alice6379', true)). +answer('urn:example:complies'('urn:example:alice6380', true)). +answer('urn:example:complies'('urn:example:alice6381', true)). +answer('urn:example:complies'('urn:example:alice6382', true)). +answer('urn:example:complies'('urn:example:alice6383', true)). +answer('urn:example:complies'('urn:example:alice6384', true)). +answer('urn:example:complies'('urn:example:alice6385', true)). +answer('urn:example:complies'('urn:example:alice6386', true)). +answer('urn:example:complies'('urn:example:alice6387', true)). +answer('urn:example:complies'('urn:example:alice6388', true)). +answer('urn:example:complies'('urn:example:alice6389', true)). +answer('urn:example:complies'('urn:example:alice6390', true)). +answer('urn:example:complies'('urn:example:alice6391', true)). +answer('urn:example:complies'('urn:example:alice6392', true)). +answer('urn:example:complies'('urn:example:alice6393', true)). +answer('urn:example:complies'('urn:example:alice6394', true)). +answer('urn:example:complies'('urn:example:alice6395', true)). +answer('urn:example:complies'('urn:example:alice6396', true)). +answer('urn:example:complies'('urn:example:alice6397', true)). +answer('urn:example:complies'('urn:example:alice6398', true)). +answer('urn:example:complies'('urn:example:alice6399', true)). +answer('urn:example:complies'('urn:example:alice6400', true)). +answer('urn:example:complies'('urn:example:alice6401', true)). +answer('urn:example:complies'('urn:example:alice6402', true)). +answer('urn:example:complies'('urn:example:alice6403', true)). +answer('urn:example:complies'('urn:example:alice6404', true)). +answer('urn:example:complies'('urn:example:alice6405', true)). +answer('urn:example:complies'('urn:example:alice6406', true)). +answer('urn:example:complies'('urn:example:alice6407', true)). +answer('urn:example:complies'('urn:example:alice6408', true)). +answer('urn:example:complies'('urn:example:alice6409', true)). +answer('urn:example:complies'('urn:example:alice6410', true)). +answer('urn:example:complies'('urn:example:alice6411', true)). +answer('urn:example:complies'('urn:example:alice6412', true)). +answer('urn:example:complies'('urn:example:alice6413', true)). +answer('urn:example:complies'('urn:example:alice6414', true)). +answer('urn:example:complies'('urn:example:alice6415', true)). +answer('urn:example:complies'('urn:example:alice6416', true)). +answer('urn:example:complies'('urn:example:alice6417', true)). +answer('urn:example:complies'('urn:example:alice6418', true)). +answer('urn:example:complies'('urn:example:alice6419', true)). +answer('urn:example:complies'('urn:example:alice6420', true)). +answer('urn:example:complies'('urn:example:alice6421', true)). +answer('urn:example:complies'('urn:example:alice6422', true)). +answer('urn:example:complies'('urn:example:alice6423', true)). +answer('urn:example:complies'('urn:example:alice6424', true)). +answer('urn:example:complies'('urn:example:alice6425', true)). +answer('urn:example:complies'('urn:example:alice6426', true)). +answer('urn:example:complies'('urn:example:alice6427', true)). +answer('urn:example:complies'('urn:example:alice6428', true)). +answer('urn:example:complies'('urn:example:alice6429', true)). +answer('urn:example:complies'('urn:example:alice6430', true)). +answer('urn:example:complies'('urn:example:alice6431', true)). +answer('urn:example:complies'('urn:example:alice6432', true)). +answer('urn:example:complies'('urn:example:alice6433', true)). +answer('urn:example:complies'('urn:example:alice6434', true)). +answer('urn:example:complies'('urn:example:alice6435', true)). +answer('urn:example:complies'('urn:example:alice6436', true)). +answer('urn:example:complies'('urn:example:alice6437', true)). +answer('urn:example:complies'('urn:example:alice6438', true)). +answer('urn:example:complies'('urn:example:alice6439', true)). +answer('urn:example:complies'('urn:example:alice6440', true)). +answer('urn:example:complies'('urn:example:alice6441', true)). +answer('urn:example:complies'('urn:example:alice6442', true)). +answer('urn:example:complies'('urn:example:alice6443', true)). +answer('urn:example:complies'('urn:example:alice6444', true)). +answer('urn:example:complies'('urn:example:alice6445', true)). +answer('urn:example:complies'('urn:example:alice6446', true)). +answer('urn:example:complies'('urn:example:alice6447', true)). +answer('urn:example:complies'('urn:example:alice6448', true)). +answer('urn:example:complies'('urn:example:alice6449', true)). +answer('urn:example:complies'('urn:example:alice6450', true)). +answer('urn:example:complies'('urn:example:alice6451', true)). +answer('urn:example:complies'('urn:example:alice6452', true)). +answer('urn:example:complies'('urn:example:alice6453', true)). +answer('urn:example:complies'('urn:example:alice6454', true)). +answer('urn:example:complies'('urn:example:alice6455', true)). +answer('urn:example:complies'('urn:example:alice6456', true)). +answer('urn:example:complies'('urn:example:alice6457', true)). +answer('urn:example:complies'('urn:example:alice6458', true)). +answer('urn:example:complies'('urn:example:alice6459', true)). +answer('urn:example:complies'('urn:example:alice6460', true)). +answer('urn:example:complies'('urn:example:alice6461', true)). +answer('urn:example:complies'('urn:example:alice6462', true)). +answer('urn:example:complies'('urn:example:alice6463', true)). +answer('urn:example:complies'('urn:example:alice6464', true)). +answer('urn:example:complies'('urn:example:alice6465', true)). +answer('urn:example:complies'('urn:example:alice6466', true)). +answer('urn:example:complies'('urn:example:alice6467', true)). +answer('urn:example:complies'('urn:example:alice6468', true)). +answer('urn:example:complies'('urn:example:alice6469', true)). +answer('urn:example:complies'('urn:example:alice6470', true)). +answer('urn:example:complies'('urn:example:alice6471', true)). +answer('urn:example:complies'('urn:example:alice6472', true)). +answer('urn:example:complies'('urn:example:alice6473', true)). +answer('urn:example:complies'('urn:example:alice6474', true)). +answer('urn:example:complies'('urn:example:alice6475', true)). +answer('urn:example:complies'('urn:example:alice6476', true)). +answer('urn:example:complies'('urn:example:alice6477', true)). +answer('urn:example:complies'('urn:example:alice6478', true)). +answer('urn:example:complies'('urn:example:alice6479', true)). +answer('urn:example:complies'('urn:example:alice6480', true)). +answer('urn:example:complies'('urn:example:alice6481', true)). +answer('urn:example:complies'('urn:example:alice6482', true)). +answer('urn:example:complies'('urn:example:alice6483', true)). +answer('urn:example:complies'('urn:example:alice6484', true)). +answer('urn:example:complies'('urn:example:alice6485', true)). +answer('urn:example:complies'('urn:example:alice6486', true)). +answer('urn:example:complies'('urn:example:alice6487', true)). +answer('urn:example:complies'('urn:example:alice6488', true)). +answer('urn:example:complies'('urn:example:alice6489', true)). +answer('urn:example:complies'('urn:example:alice6490', true)). +answer('urn:example:complies'('urn:example:alice6491', true)). +answer('urn:example:complies'('urn:example:alice6492', true)). +answer('urn:example:complies'('urn:example:alice6493', true)). +answer('urn:example:complies'('urn:example:alice6494', true)). +answer('urn:example:complies'('urn:example:alice6495', true)). +answer('urn:example:complies'('urn:example:alice6496', true)). +answer('urn:example:complies'('urn:example:alice6497', true)). +answer('urn:example:complies'('urn:example:alice6498', true)). +answer('urn:example:complies'('urn:example:alice6499', true)). +answer('urn:example:complies'('urn:example:alice6500', true)). +answer('urn:example:complies'('urn:example:alice6501', true)). +answer('urn:example:complies'('urn:example:alice6502', true)). +answer('urn:example:complies'('urn:example:alice6503', true)). +answer('urn:example:complies'('urn:example:alice6504', true)). +answer('urn:example:complies'('urn:example:alice6505', true)). +answer('urn:example:complies'('urn:example:alice6506', true)). +answer('urn:example:complies'('urn:example:alice6507', true)). +answer('urn:example:complies'('urn:example:alice6508', true)). +answer('urn:example:complies'('urn:example:alice6509', true)). +answer('urn:example:complies'('urn:example:alice6510', true)). +answer('urn:example:complies'('urn:example:alice6511', true)). +answer('urn:example:complies'('urn:example:alice6512', true)). +answer('urn:example:complies'('urn:example:alice6513', true)). +answer('urn:example:complies'('urn:example:alice6514', true)). +answer('urn:example:complies'('urn:example:alice6515', true)). +answer('urn:example:complies'('urn:example:alice6516', true)). +answer('urn:example:complies'('urn:example:alice6517', true)). +answer('urn:example:complies'('urn:example:alice6518', true)). +answer('urn:example:complies'('urn:example:alice6519', true)). +answer('urn:example:complies'('urn:example:alice6520', true)). +answer('urn:example:complies'('urn:example:alice6521', true)). +answer('urn:example:complies'('urn:example:alice6522', true)). +answer('urn:example:complies'('urn:example:alice6523', true)). +answer('urn:example:complies'('urn:example:alice6524', true)). +answer('urn:example:complies'('urn:example:alice6525', true)). +answer('urn:example:complies'('urn:example:alice6526', true)). +answer('urn:example:complies'('urn:example:alice6527', true)). +answer('urn:example:complies'('urn:example:alice6528', true)). +answer('urn:example:complies'('urn:example:alice6529', true)). +answer('urn:example:complies'('urn:example:alice6530', true)). +answer('urn:example:complies'('urn:example:alice6531', true)). +answer('urn:example:complies'('urn:example:alice6532', true)). +answer('urn:example:complies'('urn:example:alice6533', true)). +answer('urn:example:complies'('urn:example:alice6534', true)). +answer('urn:example:complies'('urn:example:alice6535', true)). +answer('urn:example:complies'('urn:example:alice6536', true)). +answer('urn:example:complies'('urn:example:alice6537', true)). +answer('urn:example:complies'('urn:example:alice6538', true)). +answer('urn:example:complies'('urn:example:alice6539', true)). +answer('urn:example:complies'('urn:example:alice6540', true)). +answer('urn:example:complies'('urn:example:alice6541', true)). +answer('urn:example:complies'('urn:example:alice6542', true)). +answer('urn:example:complies'('urn:example:alice6543', true)). +answer('urn:example:complies'('urn:example:alice6544', true)). +answer('urn:example:complies'('urn:example:alice6545', true)). +answer('urn:example:complies'('urn:example:alice6546', true)). +answer('urn:example:complies'('urn:example:alice6547', true)). +answer('urn:example:complies'('urn:example:alice6548', true)). +answer('urn:example:complies'('urn:example:alice6549', true)). +answer('urn:example:complies'('urn:example:alice6550', true)). +answer('urn:example:complies'('urn:example:alice6551', true)). +answer('urn:example:complies'('urn:example:alice6552', true)). +answer('urn:example:complies'('urn:example:alice6553', true)). +answer('urn:example:complies'('urn:example:alice6554', true)). +answer('urn:example:complies'('urn:example:alice6555', true)). +answer('urn:example:complies'('urn:example:alice6556', true)). +answer('urn:example:complies'('urn:example:alice6557', true)). +answer('urn:example:complies'('urn:example:alice6558', true)). +answer('urn:example:complies'('urn:example:alice6559', true)). +answer('urn:example:complies'('urn:example:alice6560', true)). +answer('urn:example:complies'('urn:example:alice6561', true)). +answer('urn:example:complies'('urn:example:alice6562', true)). +answer('urn:example:complies'('urn:example:alice6563', true)). +answer('urn:example:complies'('urn:example:alice6564', true)). +answer('urn:example:complies'('urn:example:alice6565', true)). +answer('urn:example:complies'('urn:example:alice6566', true)). +answer('urn:example:complies'('urn:example:alice6567', true)). +answer('urn:example:complies'('urn:example:alice6568', true)). +answer('urn:example:complies'('urn:example:alice6569', true)). +answer('urn:example:complies'('urn:example:alice6570', true)). +answer('urn:example:complies'('urn:example:alice6571', true)). +answer('urn:example:complies'('urn:example:alice6572', true)). +answer('urn:example:complies'('urn:example:alice6573', true)). +answer('urn:example:complies'('urn:example:alice6574', true)). +answer('urn:example:complies'('urn:example:alice6575', true)). +answer('urn:example:complies'('urn:example:alice6576', true)). +answer('urn:example:complies'('urn:example:alice6577', true)). +answer('urn:example:complies'('urn:example:alice6578', true)). +answer('urn:example:complies'('urn:example:alice6579', true)). +answer('urn:example:complies'('urn:example:alice6580', true)). +answer('urn:example:complies'('urn:example:alice6581', true)). +answer('urn:example:complies'('urn:example:alice6582', true)). +answer('urn:example:complies'('urn:example:alice6583', true)). +answer('urn:example:complies'('urn:example:alice6584', true)). +answer('urn:example:complies'('urn:example:alice6585', true)). +answer('urn:example:complies'('urn:example:alice6586', true)). +answer('urn:example:complies'('urn:example:alice6587', true)). +answer('urn:example:complies'('urn:example:alice6588', true)). +answer('urn:example:complies'('urn:example:alice6589', true)). +answer('urn:example:complies'('urn:example:alice6590', true)). +answer('urn:example:complies'('urn:example:alice6591', true)). +answer('urn:example:complies'('urn:example:alice6592', true)). +answer('urn:example:complies'('urn:example:alice6593', true)). +answer('urn:example:complies'('urn:example:alice6594', true)). +answer('urn:example:complies'('urn:example:alice6595', true)). +answer('urn:example:complies'('urn:example:alice6596', true)). +answer('urn:example:complies'('urn:example:alice6597', true)). +answer('urn:example:complies'('urn:example:alice6598', true)). +answer('urn:example:complies'('urn:example:alice6599', true)). +answer('urn:example:complies'('urn:example:alice6600', true)). +answer('urn:example:complies'('urn:example:alice6601', true)). +answer('urn:example:complies'('urn:example:alice6602', true)). +answer('urn:example:complies'('urn:example:alice6603', true)). +answer('urn:example:complies'('urn:example:alice6604', true)). +answer('urn:example:complies'('urn:example:alice6605', true)). +answer('urn:example:complies'('urn:example:alice6606', true)). +answer('urn:example:complies'('urn:example:alice6607', true)). +answer('urn:example:complies'('urn:example:alice6608', true)). +answer('urn:example:complies'('urn:example:alice6609', true)). +answer('urn:example:complies'('urn:example:alice6610', true)). +answer('urn:example:complies'('urn:example:alice6611', true)). +answer('urn:example:complies'('urn:example:alice6612', true)). +answer('urn:example:complies'('urn:example:alice6613', true)). +answer('urn:example:complies'('urn:example:alice6614', true)). +answer('urn:example:complies'('urn:example:alice6615', true)). +answer('urn:example:complies'('urn:example:alice6616', true)). +answer('urn:example:complies'('urn:example:alice6617', true)). +answer('urn:example:complies'('urn:example:alice6618', true)). +answer('urn:example:complies'('urn:example:alice6619', true)). +answer('urn:example:complies'('urn:example:alice6620', true)). +answer('urn:example:complies'('urn:example:alice6621', true)). +answer('urn:example:complies'('urn:example:alice6622', true)). +answer('urn:example:complies'('urn:example:alice6623', true)). +answer('urn:example:complies'('urn:example:alice6624', true)). +answer('urn:example:complies'('urn:example:alice6625', true)). +answer('urn:example:complies'('urn:example:alice6626', true)). +answer('urn:example:complies'('urn:example:alice6627', true)). +answer('urn:example:complies'('urn:example:alice6628', true)). +answer('urn:example:complies'('urn:example:alice6629', true)). +answer('urn:example:complies'('urn:example:alice6630', true)). +answer('urn:example:complies'('urn:example:alice6631', true)). +answer('urn:example:complies'('urn:example:alice6632', true)). +answer('urn:example:complies'('urn:example:alice6633', true)). +answer('urn:example:complies'('urn:example:alice6634', true)). +answer('urn:example:complies'('urn:example:alice6635', true)). +answer('urn:example:complies'('urn:example:alice6636', true)). +answer('urn:example:complies'('urn:example:alice6637', true)). +answer('urn:example:complies'('urn:example:alice6638', true)). +answer('urn:example:complies'('urn:example:alice6639', true)). +answer('urn:example:complies'('urn:example:alice6640', true)). +answer('urn:example:complies'('urn:example:alice6641', true)). +answer('urn:example:complies'('urn:example:alice6642', true)). +answer('urn:example:complies'('urn:example:alice6643', true)). +answer('urn:example:complies'('urn:example:alice6644', true)). +answer('urn:example:complies'('urn:example:alice6645', true)). +answer('urn:example:complies'('urn:example:alice6646', true)). +answer('urn:example:complies'('urn:example:alice6647', true)). +answer('urn:example:complies'('urn:example:alice6648', true)). +answer('urn:example:complies'('urn:example:alice6649', true)). +answer('urn:example:complies'('urn:example:alice6650', true)). +answer('urn:example:complies'('urn:example:alice6651', true)). +answer('urn:example:complies'('urn:example:alice6652', true)). +answer('urn:example:complies'('urn:example:alice6653', true)). +answer('urn:example:complies'('urn:example:alice6654', true)). +answer('urn:example:complies'('urn:example:alice6655', true)). +answer('urn:example:complies'('urn:example:alice6656', true)). +answer('urn:example:complies'('urn:example:alice6657', true)). +answer('urn:example:complies'('urn:example:alice6658', true)). +answer('urn:example:complies'('urn:example:alice6659', true)). +answer('urn:example:complies'('urn:example:alice6660', true)). +answer('urn:example:complies'('urn:example:alice6661', true)). +answer('urn:example:complies'('urn:example:alice6662', true)). +answer('urn:example:complies'('urn:example:alice6663', true)). +answer('urn:example:complies'('urn:example:alice6664', true)). +answer('urn:example:complies'('urn:example:alice6665', true)). +answer('urn:example:complies'('urn:example:alice6666', true)). +answer('urn:example:complies'('urn:example:alice6667', true)). +answer('urn:example:complies'('urn:example:alice6668', true)). +answer('urn:example:complies'('urn:example:alice6669', true)). +answer('urn:example:complies'('urn:example:alice6670', true)). +answer('urn:example:complies'('urn:example:alice6671', true)). +answer('urn:example:complies'('urn:example:alice6672', true)). +answer('urn:example:complies'('urn:example:alice6673', true)). +answer('urn:example:complies'('urn:example:alice6674', true)). +answer('urn:example:complies'('urn:example:alice6675', true)). +answer('urn:example:complies'('urn:example:alice6676', true)). +answer('urn:example:complies'('urn:example:alice6677', true)). +answer('urn:example:complies'('urn:example:alice6678', true)). +answer('urn:example:complies'('urn:example:alice6679', true)). +answer('urn:example:complies'('urn:example:alice6680', true)). +answer('urn:example:complies'('urn:example:alice6681', true)). +answer('urn:example:complies'('urn:example:alice6682', true)). +answer('urn:example:complies'('urn:example:alice6683', true)). +answer('urn:example:complies'('urn:example:alice6684', true)). +answer('urn:example:complies'('urn:example:alice6685', true)). +answer('urn:example:complies'('urn:example:alice6686', true)). +answer('urn:example:complies'('urn:example:alice6687', true)). +answer('urn:example:complies'('urn:example:alice6688', true)). +answer('urn:example:complies'('urn:example:alice6689', true)). +answer('urn:example:complies'('urn:example:alice6690', true)). +answer('urn:example:complies'('urn:example:alice6691', true)). +answer('urn:example:complies'('urn:example:alice6692', true)). +answer('urn:example:complies'('urn:example:alice6693', true)). +answer('urn:example:complies'('urn:example:alice6694', true)). +answer('urn:example:complies'('urn:example:alice6695', true)). +answer('urn:example:complies'('urn:example:alice6696', true)). +answer('urn:example:complies'('urn:example:alice6697', true)). +answer('urn:example:complies'('urn:example:alice6698', true)). +answer('urn:example:complies'('urn:example:alice6699', true)). +answer('urn:example:complies'('urn:example:alice6700', true)). +answer('urn:example:complies'('urn:example:alice6701', true)). +answer('urn:example:complies'('urn:example:alice6702', true)). +answer('urn:example:complies'('urn:example:alice6703', true)). +answer('urn:example:complies'('urn:example:alice6704', true)). +answer('urn:example:complies'('urn:example:alice6705', true)). +answer('urn:example:complies'('urn:example:alice6706', true)). +answer('urn:example:complies'('urn:example:alice6707', true)). +answer('urn:example:complies'('urn:example:alice6708', true)). +answer('urn:example:complies'('urn:example:alice6709', true)). +answer('urn:example:complies'('urn:example:alice6710', true)). +answer('urn:example:complies'('urn:example:alice6711', true)). +answer('urn:example:complies'('urn:example:alice6712', true)). +answer('urn:example:complies'('urn:example:alice6713', true)). +answer('urn:example:complies'('urn:example:alice6714', true)). +answer('urn:example:complies'('urn:example:alice6715', true)). +answer('urn:example:complies'('urn:example:alice6716', true)). +answer('urn:example:complies'('urn:example:alice6717', true)). +answer('urn:example:complies'('urn:example:alice6718', true)). +answer('urn:example:complies'('urn:example:alice6719', true)). +answer('urn:example:complies'('urn:example:alice6720', true)). +answer('urn:example:complies'('urn:example:alice6721', true)). +answer('urn:example:complies'('urn:example:alice6722', true)). +answer('urn:example:complies'('urn:example:alice6723', true)). +answer('urn:example:complies'('urn:example:alice6724', true)). +answer('urn:example:complies'('urn:example:alice6725', true)). +answer('urn:example:complies'('urn:example:alice6726', true)). +answer('urn:example:complies'('urn:example:alice6727', true)). +answer('urn:example:complies'('urn:example:alice6728', true)). +answer('urn:example:complies'('urn:example:alice6729', true)). +answer('urn:example:complies'('urn:example:alice6730', true)). +answer('urn:example:complies'('urn:example:alice6731', true)). +answer('urn:example:complies'('urn:example:alice6732', true)). +answer('urn:example:complies'('urn:example:alice6733', true)). +answer('urn:example:complies'('urn:example:alice6734', true)). +answer('urn:example:complies'('urn:example:alice6735', true)). +answer('urn:example:complies'('urn:example:alice6736', true)). +answer('urn:example:complies'('urn:example:alice6737', true)). +answer('urn:example:complies'('urn:example:alice6738', true)). +answer('urn:example:complies'('urn:example:alice6739', true)). +answer('urn:example:complies'('urn:example:alice6740', true)). +answer('urn:example:complies'('urn:example:alice6741', true)). +answer('urn:example:complies'('urn:example:alice6742', true)). +answer('urn:example:complies'('urn:example:alice6743', true)). +answer('urn:example:complies'('urn:example:alice6744', true)). +answer('urn:example:complies'('urn:example:alice6745', true)). +answer('urn:example:complies'('urn:example:alice6746', true)). +answer('urn:example:complies'('urn:example:alice6747', true)). +answer('urn:example:complies'('urn:example:alice6748', true)). +answer('urn:example:complies'('urn:example:alice6749', true)). +answer('urn:example:complies'('urn:example:alice6750', true)). +answer('urn:example:complies'('urn:example:alice6751', true)). +answer('urn:example:complies'('urn:example:alice6752', true)). +answer('urn:example:complies'('urn:example:alice6753', true)). +answer('urn:example:complies'('urn:example:alice6754', true)). +answer('urn:example:complies'('urn:example:alice6755', true)). +answer('urn:example:complies'('urn:example:alice6756', true)). +answer('urn:example:complies'('urn:example:alice6757', true)). +answer('urn:example:complies'('urn:example:alice6758', true)). +answer('urn:example:complies'('urn:example:alice6759', true)). +answer('urn:example:complies'('urn:example:alice6760', true)). +answer('urn:example:complies'('urn:example:alice6761', true)). +answer('urn:example:complies'('urn:example:alice6762', true)). +answer('urn:example:complies'('urn:example:alice6763', true)). +answer('urn:example:complies'('urn:example:alice6764', true)). +answer('urn:example:complies'('urn:example:alice6765', true)). +answer('urn:example:complies'('urn:example:alice6766', true)). +answer('urn:example:complies'('urn:example:alice6767', true)). +answer('urn:example:complies'('urn:example:alice6768', true)). +answer('urn:example:complies'('urn:example:alice6769', true)). +answer('urn:example:complies'('urn:example:alice6770', true)). +answer('urn:example:complies'('urn:example:alice6771', true)). +answer('urn:example:complies'('urn:example:alice6772', true)). +answer('urn:example:complies'('urn:example:alice6773', true)). +answer('urn:example:complies'('urn:example:alice6774', true)). +answer('urn:example:complies'('urn:example:alice6775', true)). +answer('urn:example:complies'('urn:example:alice6776', true)). +answer('urn:example:complies'('urn:example:alice6777', true)). +answer('urn:example:complies'('urn:example:alice6778', true)). +answer('urn:example:complies'('urn:example:alice6779', true)). +answer('urn:example:complies'('urn:example:alice6780', true)). +answer('urn:example:complies'('urn:example:alice6781', true)). +answer('urn:example:complies'('urn:example:alice6782', true)). +answer('urn:example:complies'('urn:example:alice6783', true)). +answer('urn:example:complies'('urn:example:alice6784', true)). +answer('urn:example:complies'('urn:example:alice6785', true)). +answer('urn:example:complies'('urn:example:alice6786', true)). +answer('urn:example:complies'('urn:example:alice6787', true)). +answer('urn:example:complies'('urn:example:alice6788', true)). +answer('urn:example:complies'('urn:example:alice6789', true)). +answer('urn:example:complies'('urn:example:alice6790', true)). +answer('urn:example:complies'('urn:example:alice6791', true)). +answer('urn:example:complies'('urn:example:alice6792', true)). +answer('urn:example:complies'('urn:example:alice6793', true)). +answer('urn:example:complies'('urn:example:alice6794', true)). +answer('urn:example:complies'('urn:example:alice6795', true)). +answer('urn:example:complies'('urn:example:alice6796', true)). +answer('urn:example:complies'('urn:example:alice6797', true)). +answer('urn:example:complies'('urn:example:alice6798', true)). +answer('urn:example:complies'('urn:example:alice6799', true)). +answer('urn:example:complies'('urn:example:alice6800', true)). +answer('urn:example:complies'('urn:example:alice6801', true)). +answer('urn:example:complies'('urn:example:alice6802', true)). +answer('urn:example:complies'('urn:example:alice6803', true)). +answer('urn:example:complies'('urn:example:alice6804', true)). +answer('urn:example:complies'('urn:example:alice6805', true)). +answer('urn:example:complies'('urn:example:alice6806', true)). +answer('urn:example:complies'('urn:example:alice6807', true)). +answer('urn:example:complies'('urn:example:alice6808', true)). +answer('urn:example:complies'('urn:example:alice6809', true)). +answer('urn:example:complies'('urn:example:alice6810', true)). +answer('urn:example:complies'('urn:example:alice6811', true)). +answer('urn:example:complies'('urn:example:alice6812', true)). +answer('urn:example:complies'('urn:example:alice6813', true)). +answer('urn:example:complies'('urn:example:alice6814', true)). +answer('urn:example:complies'('urn:example:alice6815', true)). +answer('urn:example:complies'('urn:example:alice6816', true)). +answer('urn:example:complies'('urn:example:alice6817', true)). +answer('urn:example:complies'('urn:example:alice6818', true)). +answer('urn:example:complies'('urn:example:alice6819', true)). +answer('urn:example:complies'('urn:example:alice6820', true)). +answer('urn:example:complies'('urn:example:alice6821', true)). +answer('urn:example:complies'('urn:example:alice6822', true)). +answer('urn:example:complies'('urn:example:alice6823', true)). +answer('urn:example:complies'('urn:example:alice6824', true)). +answer('urn:example:complies'('urn:example:alice6825', true)). +answer('urn:example:complies'('urn:example:alice6826', true)). +answer('urn:example:complies'('urn:example:alice6827', true)). +answer('urn:example:complies'('urn:example:alice6828', true)). +answer('urn:example:complies'('urn:example:alice6829', true)). +answer('urn:example:complies'('urn:example:alice6830', true)). +answer('urn:example:complies'('urn:example:alice6831', true)). +answer('urn:example:complies'('urn:example:alice6832', true)). +answer('urn:example:complies'('urn:example:alice6833', true)). +answer('urn:example:complies'('urn:example:alice6834', true)). +answer('urn:example:complies'('urn:example:alice6835', true)). +answer('urn:example:complies'('urn:example:alice6836', true)). +answer('urn:example:complies'('urn:example:alice6837', true)). +answer('urn:example:complies'('urn:example:alice6838', true)). +answer('urn:example:complies'('urn:example:alice6839', true)). +answer('urn:example:complies'('urn:example:alice6840', true)). +answer('urn:example:complies'('urn:example:alice6841', true)). +answer('urn:example:complies'('urn:example:alice6842', true)). +answer('urn:example:complies'('urn:example:alice6843', true)). +answer('urn:example:complies'('urn:example:alice6844', true)). +answer('urn:example:complies'('urn:example:alice6845', true)). +answer('urn:example:complies'('urn:example:alice6846', true)). +answer('urn:example:complies'('urn:example:alice6847', true)). +answer('urn:example:complies'('urn:example:alice6848', true)). +answer('urn:example:complies'('urn:example:alice6849', true)). +answer('urn:example:complies'('urn:example:alice6850', true)). +answer('urn:example:complies'('urn:example:alice6851', true)). +answer('urn:example:complies'('urn:example:alice6852', true)). +answer('urn:example:complies'('urn:example:alice6853', true)). +answer('urn:example:complies'('urn:example:alice6854', true)). +answer('urn:example:complies'('urn:example:alice6855', true)). +answer('urn:example:complies'('urn:example:alice6856', true)). +answer('urn:example:complies'('urn:example:alice6857', true)). +answer('urn:example:complies'('urn:example:alice6858', true)). +answer('urn:example:complies'('urn:example:alice6859', true)). +answer('urn:example:complies'('urn:example:alice6860', true)). +answer('urn:example:complies'('urn:example:alice6861', true)). +answer('urn:example:complies'('urn:example:alice6862', true)). +answer('urn:example:complies'('urn:example:alice6863', true)). +answer('urn:example:complies'('urn:example:alice6864', true)). +answer('urn:example:complies'('urn:example:alice6865', true)). +answer('urn:example:complies'('urn:example:alice6866', true)). +answer('urn:example:complies'('urn:example:alice6867', true)). +answer('urn:example:complies'('urn:example:alice6868', true)). +answer('urn:example:complies'('urn:example:alice6869', true)). +answer('urn:example:complies'('urn:example:alice6870', true)). +answer('urn:example:complies'('urn:example:alice6871', true)). +answer('urn:example:complies'('urn:example:alice6872', true)). +answer('urn:example:complies'('urn:example:alice6873', true)). +answer('urn:example:complies'('urn:example:alice6874', true)). +answer('urn:example:complies'('urn:example:alice6875', true)). +answer('urn:example:complies'('urn:example:alice6876', true)). +answer('urn:example:complies'('urn:example:alice6877', true)). +answer('urn:example:complies'('urn:example:alice6878', true)). +answer('urn:example:complies'('urn:example:alice6879', true)). +answer('urn:example:complies'('urn:example:alice6880', true)). +answer('urn:example:complies'('urn:example:alice6881', true)). +answer('urn:example:complies'('urn:example:alice6882', true)). +answer('urn:example:complies'('urn:example:alice6883', true)). +answer('urn:example:complies'('urn:example:alice6884', true)). +answer('urn:example:complies'('urn:example:alice6885', true)). +answer('urn:example:complies'('urn:example:alice6886', true)). +answer('urn:example:complies'('urn:example:alice6887', true)). +answer('urn:example:complies'('urn:example:alice6888', true)). +answer('urn:example:complies'('urn:example:alice6889', true)). +answer('urn:example:complies'('urn:example:alice6890', true)). +answer('urn:example:complies'('urn:example:alice6891', true)). +answer('urn:example:complies'('urn:example:alice6892', true)). +answer('urn:example:complies'('urn:example:alice6893', true)). +answer('urn:example:complies'('urn:example:alice6894', true)). +answer('urn:example:complies'('urn:example:alice6895', true)). +answer('urn:example:complies'('urn:example:alice6896', true)). +answer('urn:example:complies'('urn:example:alice6897', true)). +answer('urn:example:complies'('urn:example:alice6898', true)). +answer('urn:example:complies'('urn:example:alice6899', true)). +answer('urn:example:complies'('urn:example:alice6900', true)). +answer('urn:example:complies'('urn:example:alice6901', true)). +answer('urn:example:complies'('urn:example:alice6902', true)). +answer('urn:example:complies'('urn:example:alice6903', true)). +answer('urn:example:complies'('urn:example:alice6904', true)). +answer('urn:example:complies'('urn:example:alice6905', true)). +answer('urn:example:complies'('urn:example:alice6906', true)). +answer('urn:example:complies'('urn:example:alice6907', true)). +answer('urn:example:complies'('urn:example:alice6908', true)). +answer('urn:example:complies'('urn:example:alice6909', true)). +answer('urn:example:complies'('urn:example:alice6910', true)). +answer('urn:example:complies'('urn:example:alice6911', true)). +answer('urn:example:complies'('urn:example:alice6912', true)). +answer('urn:example:complies'('urn:example:alice6913', true)). +answer('urn:example:complies'('urn:example:alice6914', true)). +answer('urn:example:complies'('urn:example:alice6915', true)). +answer('urn:example:complies'('urn:example:alice6916', true)). +answer('urn:example:complies'('urn:example:alice6917', true)). +answer('urn:example:complies'('urn:example:alice6918', true)). +answer('urn:example:complies'('urn:example:alice6919', true)). +answer('urn:example:complies'('urn:example:alice6920', true)). +answer('urn:example:complies'('urn:example:alice6921', true)). +answer('urn:example:complies'('urn:example:alice6922', true)). +answer('urn:example:complies'('urn:example:alice6923', true)). +answer('urn:example:complies'('urn:example:alice6924', true)). +answer('urn:example:complies'('urn:example:alice6925', true)). +answer('urn:example:complies'('urn:example:alice6926', true)). +answer('urn:example:complies'('urn:example:alice6927', true)). +answer('urn:example:complies'('urn:example:alice6928', true)). +answer('urn:example:complies'('urn:example:alice6929', true)). +answer('urn:example:complies'('urn:example:alice6930', true)). +answer('urn:example:complies'('urn:example:alice6931', true)). +answer('urn:example:complies'('urn:example:alice6932', true)). +answer('urn:example:complies'('urn:example:alice6933', true)). +answer('urn:example:complies'('urn:example:alice6934', true)). +answer('urn:example:complies'('urn:example:alice6935', true)). +answer('urn:example:complies'('urn:example:alice6936', true)). +answer('urn:example:complies'('urn:example:alice6937', true)). +answer('urn:example:complies'('urn:example:alice6938', true)). +answer('urn:example:complies'('urn:example:alice6939', true)). +answer('urn:example:complies'('urn:example:alice6940', true)). +answer('urn:example:complies'('urn:example:alice6941', true)). +answer('urn:example:complies'('urn:example:alice6942', true)). +answer('urn:example:complies'('urn:example:alice6943', true)). +answer('urn:example:complies'('urn:example:alice6944', true)). +answer('urn:example:complies'('urn:example:alice6945', true)). +answer('urn:example:complies'('urn:example:alice6946', true)). +answer('urn:example:complies'('urn:example:alice6947', true)). +answer('urn:example:complies'('urn:example:alice6948', true)). +answer('urn:example:complies'('urn:example:alice6949', true)). +answer('urn:example:complies'('urn:example:alice6950', true)). +answer('urn:example:complies'('urn:example:alice6951', true)). +answer('urn:example:complies'('urn:example:alice6952', true)). +answer('urn:example:complies'('urn:example:alice6953', true)). +answer('urn:example:complies'('urn:example:alice6954', true)). +answer('urn:example:complies'('urn:example:alice6955', true)). +answer('urn:example:complies'('urn:example:alice6956', true)). +answer('urn:example:complies'('urn:example:alice6957', true)). +answer('urn:example:complies'('urn:example:alice6958', true)). +answer('urn:example:complies'('urn:example:alice6959', true)). +answer('urn:example:complies'('urn:example:alice6960', true)). +answer('urn:example:complies'('urn:example:alice6961', true)). +answer('urn:example:complies'('urn:example:alice6962', true)). +answer('urn:example:complies'('urn:example:alice6963', true)). +answer('urn:example:complies'('urn:example:alice6964', true)). +answer('urn:example:complies'('urn:example:alice6965', true)). +answer('urn:example:complies'('urn:example:alice6966', true)). +answer('urn:example:complies'('urn:example:alice6967', true)). +answer('urn:example:complies'('urn:example:alice6968', true)). +answer('urn:example:complies'('urn:example:alice6969', true)). +answer('urn:example:complies'('urn:example:alice6970', true)). +answer('urn:example:complies'('urn:example:alice6971', true)). +answer('urn:example:complies'('urn:example:alice6972', true)). +answer('urn:example:complies'('urn:example:alice6973', true)). +answer('urn:example:complies'('urn:example:alice6974', true)). +answer('urn:example:complies'('urn:example:alice6975', true)). +answer('urn:example:complies'('urn:example:alice6976', true)). +answer('urn:example:complies'('urn:example:alice6977', true)). +answer('urn:example:complies'('urn:example:alice6978', true)). +answer('urn:example:complies'('urn:example:alice6979', true)). +answer('urn:example:complies'('urn:example:alice6980', true)). +answer('urn:example:complies'('urn:example:alice6981', true)). +answer('urn:example:complies'('urn:example:alice6982', true)). +answer('urn:example:complies'('urn:example:alice6983', true)). +answer('urn:example:complies'('urn:example:alice6984', true)). +answer('urn:example:complies'('urn:example:alice6985', true)). +answer('urn:example:complies'('urn:example:alice6986', true)). +answer('urn:example:complies'('urn:example:alice6987', true)). +answer('urn:example:complies'('urn:example:alice6988', true)). +answer('urn:example:complies'('urn:example:alice6989', true)). +answer('urn:example:complies'('urn:example:alice6990', true)). +answer('urn:example:complies'('urn:example:alice6991', true)). +answer('urn:example:complies'('urn:example:alice6992', true)). +answer('urn:example:complies'('urn:example:alice6993', true)). +answer('urn:example:complies'('urn:example:alice6994', true)). +answer('urn:example:complies'('urn:example:alice6995', true)). +answer('urn:example:complies'('urn:example:alice6996', true)). +answer('urn:example:complies'('urn:example:alice6997', true)). +answer('urn:example:complies'('urn:example:alice6998', true)). +answer('urn:example:complies'('urn:example:alice6999', true)). +answer('urn:example:complies'('urn:example:alice7000', true)). +answer('urn:example:complies'('urn:example:alice7001', true)). +answer('urn:example:complies'('urn:example:alice7002', true)). +answer('urn:example:complies'('urn:example:alice7003', true)). +answer('urn:example:complies'('urn:example:alice7004', true)). +answer('urn:example:complies'('urn:example:alice7005', true)). +answer('urn:example:complies'('urn:example:alice7006', true)). +answer('urn:example:complies'('urn:example:alice7007', true)). +answer('urn:example:complies'('urn:example:alice7008', true)). +answer('urn:example:complies'('urn:example:alice7009', true)). +answer('urn:example:complies'('urn:example:alice7010', true)). +answer('urn:example:complies'('urn:example:alice7011', true)). +answer('urn:example:complies'('urn:example:alice7012', true)). +answer('urn:example:complies'('urn:example:alice7013', true)). +answer('urn:example:complies'('urn:example:alice7014', true)). +answer('urn:example:complies'('urn:example:alice7015', true)). +answer('urn:example:complies'('urn:example:alice7016', true)). +answer('urn:example:complies'('urn:example:alice7017', true)). +answer('urn:example:complies'('urn:example:alice7018', true)). +answer('urn:example:complies'('urn:example:alice7019', true)). +answer('urn:example:complies'('urn:example:alice7020', true)). +answer('urn:example:complies'('urn:example:alice7021', true)). +answer('urn:example:complies'('urn:example:alice7022', true)). +answer('urn:example:complies'('urn:example:alice7023', true)). +answer('urn:example:complies'('urn:example:alice7024', true)). +answer('urn:example:complies'('urn:example:alice7025', true)). +answer('urn:example:complies'('urn:example:alice7026', true)). +answer('urn:example:complies'('urn:example:alice7027', true)). +answer('urn:example:complies'('urn:example:alice7028', true)). +answer('urn:example:complies'('urn:example:alice7029', true)). +answer('urn:example:complies'('urn:example:alice7030', true)). +answer('urn:example:complies'('urn:example:alice7031', true)). +answer('urn:example:complies'('urn:example:alice7032', true)). +answer('urn:example:complies'('urn:example:alice7033', true)). +answer('urn:example:complies'('urn:example:alice7034', true)). +answer('urn:example:complies'('urn:example:alice7035', true)). +answer('urn:example:complies'('urn:example:alice7036', true)). +answer('urn:example:complies'('urn:example:alice7037', true)). +answer('urn:example:complies'('urn:example:alice7038', true)). +answer('urn:example:complies'('urn:example:alice7039', true)). +answer('urn:example:complies'('urn:example:alice7040', true)). +answer('urn:example:complies'('urn:example:alice7041', true)). +answer('urn:example:complies'('urn:example:alice7042', true)). +answer('urn:example:complies'('urn:example:alice7043', true)). +answer('urn:example:complies'('urn:example:alice7044', true)). +answer('urn:example:complies'('urn:example:alice7045', true)). +answer('urn:example:complies'('urn:example:alice7046', true)). +answer('urn:example:complies'('urn:example:alice7047', true)). +answer('urn:example:complies'('urn:example:alice7048', true)). +answer('urn:example:complies'('urn:example:alice7049', true)). +answer('urn:example:complies'('urn:example:alice7050', true)). +answer('urn:example:complies'('urn:example:alice7051', true)). +answer('urn:example:complies'('urn:example:alice7052', true)). +answer('urn:example:complies'('urn:example:alice7053', true)). +answer('urn:example:complies'('urn:example:alice7054', true)). +answer('urn:example:complies'('urn:example:alice7055', true)). +answer('urn:example:complies'('urn:example:alice7056', true)). +answer('urn:example:complies'('urn:example:alice7057', true)). +answer('urn:example:complies'('urn:example:alice7058', true)). +answer('urn:example:complies'('urn:example:alice7059', true)). +answer('urn:example:complies'('urn:example:alice7060', true)). +answer('urn:example:complies'('urn:example:alice7061', true)). +answer('urn:example:complies'('urn:example:alice7062', true)). +answer('urn:example:complies'('urn:example:alice7063', true)). +answer('urn:example:complies'('urn:example:alice7064', true)). +answer('urn:example:complies'('urn:example:alice7065', true)). +answer('urn:example:complies'('urn:example:alice7066', true)). +answer('urn:example:complies'('urn:example:alice7067', true)). +answer('urn:example:complies'('urn:example:alice7068', true)). +answer('urn:example:complies'('urn:example:alice7069', true)). +answer('urn:example:complies'('urn:example:alice7070', true)). +answer('urn:example:complies'('urn:example:alice7071', true)). +answer('urn:example:complies'('urn:example:alice7072', true)). +answer('urn:example:complies'('urn:example:alice7073', true)). +answer('urn:example:complies'('urn:example:alice7074', true)). +answer('urn:example:complies'('urn:example:alice7075', true)). +answer('urn:example:complies'('urn:example:alice7076', true)). +answer('urn:example:complies'('urn:example:alice7077', true)). +answer('urn:example:complies'('urn:example:alice7078', true)). +answer('urn:example:complies'('urn:example:alice7079', true)). +answer('urn:example:complies'('urn:example:alice7080', true)). +answer('urn:example:complies'('urn:example:alice7081', true)). +answer('urn:example:complies'('urn:example:alice7082', true)). +answer('urn:example:complies'('urn:example:alice7083', true)). +answer('urn:example:complies'('urn:example:alice7084', true)). +answer('urn:example:complies'('urn:example:alice7085', true)). +answer('urn:example:complies'('urn:example:alice7086', true)). +answer('urn:example:complies'('urn:example:alice7087', true)). +answer('urn:example:complies'('urn:example:alice7088', true)). +answer('urn:example:complies'('urn:example:alice7089', true)). +answer('urn:example:complies'('urn:example:alice7090', true)). +answer('urn:example:complies'('urn:example:alice7091', true)). +answer('urn:example:complies'('urn:example:alice7092', true)). +answer('urn:example:complies'('urn:example:alice7093', true)). +answer('urn:example:complies'('urn:example:alice7094', true)). +answer('urn:example:complies'('urn:example:alice7095', true)). +answer('urn:example:complies'('urn:example:alice7096', true)). +answer('urn:example:complies'('urn:example:alice7097', true)). +answer('urn:example:complies'('urn:example:alice7098', true)). +answer('urn:example:complies'('urn:example:alice7099', true)). +answer('urn:example:complies'('urn:example:alice7100', true)). +answer('urn:example:complies'('urn:example:alice7101', true)). +answer('urn:example:complies'('urn:example:alice7102', true)). +answer('urn:example:complies'('urn:example:alice7103', true)). +answer('urn:example:complies'('urn:example:alice7104', true)). +answer('urn:example:complies'('urn:example:alice7105', true)). +answer('urn:example:complies'('urn:example:alice7106', true)). +answer('urn:example:complies'('urn:example:alice7107', true)). +answer('urn:example:complies'('urn:example:alice7108', true)). +answer('urn:example:complies'('urn:example:alice7109', true)). +answer('urn:example:complies'('urn:example:alice7110', true)). +answer('urn:example:complies'('urn:example:alice7111', true)). +answer('urn:example:complies'('urn:example:alice7112', true)). +answer('urn:example:complies'('urn:example:alice7113', true)). +answer('urn:example:complies'('urn:example:alice7114', true)). +answer('urn:example:complies'('urn:example:alice7115', true)). +answer('urn:example:complies'('urn:example:alice7116', true)). +answer('urn:example:complies'('urn:example:alice7117', true)). +answer('urn:example:complies'('urn:example:alice7118', true)). +answer('urn:example:complies'('urn:example:alice7119', true)). +answer('urn:example:complies'('urn:example:alice7120', true)). +answer('urn:example:complies'('urn:example:alice7121', true)). +answer('urn:example:complies'('urn:example:alice7122', true)). +answer('urn:example:complies'('urn:example:alice7123', true)). +answer('urn:example:complies'('urn:example:alice7124', true)). +answer('urn:example:complies'('urn:example:alice7125', true)). +answer('urn:example:complies'('urn:example:alice7126', true)). +answer('urn:example:complies'('urn:example:alice7127', true)). +answer('urn:example:complies'('urn:example:alice7128', true)). +answer('urn:example:complies'('urn:example:alice7129', true)). +answer('urn:example:complies'('urn:example:alice7130', true)). +answer('urn:example:complies'('urn:example:alice7131', true)). +answer('urn:example:complies'('urn:example:alice7132', true)). +answer('urn:example:complies'('urn:example:alice7133', true)). +answer('urn:example:complies'('urn:example:alice7134', true)). +answer('urn:example:complies'('urn:example:alice7135', true)). +answer('urn:example:complies'('urn:example:alice7136', true)). +answer('urn:example:complies'('urn:example:alice7137', true)). +answer('urn:example:complies'('urn:example:alice7138', true)). +answer('urn:example:complies'('urn:example:alice7139', true)). +answer('urn:example:complies'('urn:example:alice7140', true)). +answer('urn:example:complies'('urn:example:alice7141', true)). +answer('urn:example:complies'('urn:example:alice7142', true)). +answer('urn:example:complies'('urn:example:alice7143', true)). +answer('urn:example:complies'('urn:example:alice7144', true)). +answer('urn:example:complies'('urn:example:alice7145', true)). +answer('urn:example:complies'('urn:example:alice7146', true)). +answer('urn:example:complies'('urn:example:alice7147', true)). +answer('urn:example:complies'('urn:example:alice7148', true)). +answer('urn:example:complies'('urn:example:alice7149', true)). +answer('urn:example:complies'('urn:example:alice7150', true)). +answer('urn:example:complies'('urn:example:alice7151', true)). +answer('urn:example:complies'('urn:example:alice7152', true)). +answer('urn:example:complies'('urn:example:alice7153', true)). +answer('urn:example:complies'('urn:example:alice7154', true)). +answer('urn:example:complies'('urn:example:alice7155', true)). +answer('urn:example:complies'('urn:example:alice7156', true)). +answer('urn:example:complies'('urn:example:alice7157', true)). +answer('urn:example:complies'('urn:example:alice7158', true)). +answer('urn:example:complies'('urn:example:alice7159', true)). +answer('urn:example:complies'('urn:example:alice7160', true)). +answer('urn:example:complies'('urn:example:alice7161', true)). +answer('urn:example:complies'('urn:example:alice7162', true)). +answer('urn:example:complies'('urn:example:alice7163', true)). +answer('urn:example:complies'('urn:example:alice7164', true)). +answer('urn:example:complies'('urn:example:alice7165', true)). +answer('urn:example:complies'('urn:example:alice7166', true)). +answer('urn:example:complies'('urn:example:alice7167', true)). +answer('urn:example:complies'('urn:example:alice7168', true)). +answer('urn:example:complies'('urn:example:alice7169', true)). +answer('urn:example:complies'('urn:example:alice7170', true)). +answer('urn:example:complies'('urn:example:alice7171', true)). +answer('urn:example:complies'('urn:example:alice7172', true)). +answer('urn:example:complies'('urn:example:alice7173', true)). +answer('urn:example:complies'('urn:example:alice7174', true)). +answer('urn:example:complies'('urn:example:alice7175', true)). +answer('urn:example:complies'('urn:example:alice7176', true)). +answer('urn:example:complies'('urn:example:alice7177', true)). +answer('urn:example:complies'('urn:example:alice7178', true)). +answer('urn:example:complies'('urn:example:alice7179', true)). +answer('urn:example:complies'('urn:example:alice7180', true)). +answer('urn:example:complies'('urn:example:alice7181', true)). +answer('urn:example:complies'('urn:example:alice7182', true)). +answer('urn:example:complies'('urn:example:alice7183', true)). +answer('urn:example:complies'('urn:example:alice7184', true)). +answer('urn:example:complies'('urn:example:alice7185', true)). +answer('urn:example:complies'('urn:example:alice7186', true)). +answer('urn:example:complies'('urn:example:alice7187', true)). +answer('urn:example:complies'('urn:example:alice7188', true)). +answer('urn:example:complies'('urn:example:alice7189', true)). +answer('urn:example:complies'('urn:example:alice7190', true)). +answer('urn:example:complies'('urn:example:alice7191', true)). +answer('urn:example:complies'('urn:example:alice7192', true)). +answer('urn:example:complies'('urn:example:alice7193', true)). +answer('urn:example:complies'('urn:example:alice7194', true)). +answer('urn:example:complies'('urn:example:alice7195', true)). +answer('urn:example:complies'('urn:example:alice7196', true)). +answer('urn:example:complies'('urn:example:alice7197', true)). +answer('urn:example:complies'('urn:example:alice7198', true)). +answer('urn:example:complies'('urn:example:alice7199', true)). +answer('urn:example:complies'('urn:example:alice7200', true)). +answer('urn:example:complies'('urn:example:alice7201', true)). +answer('urn:example:complies'('urn:example:alice7202', true)). +answer('urn:example:complies'('urn:example:alice7203', true)). +answer('urn:example:complies'('urn:example:alice7204', true)). +answer('urn:example:complies'('urn:example:alice7205', true)). +answer('urn:example:complies'('urn:example:alice7206', true)). +answer('urn:example:complies'('urn:example:alice7207', true)). +answer('urn:example:complies'('urn:example:alice7208', true)). +answer('urn:example:complies'('urn:example:alice7209', true)). +answer('urn:example:complies'('urn:example:alice7210', true)). +answer('urn:example:complies'('urn:example:alice7211', true)). +answer('urn:example:complies'('urn:example:alice7212', true)). +answer('urn:example:complies'('urn:example:alice7213', true)). +answer('urn:example:complies'('urn:example:alice7214', true)). +answer('urn:example:complies'('urn:example:alice7215', true)). +answer('urn:example:complies'('urn:example:alice7216', true)). +answer('urn:example:complies'('urn:example:alice7217', true)). +answer('urn:example:complies'('urn:example:alice7218', true)). +answer('urn:example:complies'('urn:example:alice7219', true)). +answer('urn:example:complies'('urn:example:alice7220', true)). +answer('urn:example:complies'('urn:example:alice7221', true)). +answer('urn:example:complies'('urn:example:alice7222', true)). +answer('urn:example:complies'('urn:example:alice7223', true)). +answer('urn:example:complies'('urn:example:alice7224', true)). +answer('urn:example:complies'('urn:example:alice7225', true)). +answer('urn:example:complies'('urn:example:alice7226', true)). +answer('urn:example:complies'('urn:example:alice7227', true)). +answer('urn:example:complies'('urn:example:alice7228', true)). +answer('urn:example:complies'('urn:example:alice7229', true)). +answer('urn:example:complies'('urn:example:alice7230', true)). +answer('urn:example:complies'('urn:example:alice7231', true)). +answer('urn:example:complies'('urn:example:alice7232', true)). +answer('urn:example:complies'('urn:example:alice7233', true)). +answer('urn:example:complies'('urn:example:alice7234', true)). +answer('urn:example:complies'('urn:example:alice7235', true)). +answer('urn:example:complies'('urn:example:alice7236', true)). +answer('urn:example:complies'('urn:example:alice7237', true)). +answer('urn:example:complies'('urn:example:alice7238', true)). +answer('urn:example:complies'('urn:example:alice7239', true)). +answer('urn:example:complies'('urn:example:alice7240', true)). +answer('urn:example:complies'('urn:example:alice7241', true)). +answer('urn:example:complies'('urn:example:alice7242', true)). +answer('urn:example:complies'('urn:example:alice7243', true)). +answer('urn:example:complies'('urn:example:alice7244', true)). +answer('urn:example:complies'('urn:example:alice7245', true)). +answer('urn:example:complies'('urn:example:alice7246', true)). +answer('urn:example:complies'('urn:example:alice7247', true)). +answer('urn:example:complies'('urn:example:alice7248', true)). +answer('urn:example:complies'('urn:example:alice7249', true)). +answer('urn:example:complies'('urn:example:alice7250', true)). +answer('urn:example:complies'('urn:example:alice7251', true)). +answer('urn:example:complies'('urn:example:alice7252', true)). +answer('urn:example:complies'('urn:example:alice7253', true)). +answer('urn:example:complies'('urn:example:alice7254', true)). +answer('urn:example:complies'('urn:example:alice7255', true)). +answer('urn:example:complies'('urn:example:alice7256', true)). +answer('urn:example:complies'('urn:example:alice7257', true)). +answer('urn:example:complies'('urn:example:alice7258', true)). +answer('urn:example:complies'('urn:example:alice7259', true)). +answer('urn:example:complies'('urn:example:alice7260', true)). +answer('urn:example:complies'('urn:example:alice7261', true)). +answer('urn:example:complies'('urn:example:alice7262', true)). +answer('urn:example:complies'('urn:example:alice7263', true)). +answer('urn:example:complies'('urn:example:alice7264', true)). +answer('urn:example:complies'('urn:example:alice7265', true)). +answer('urn:example:complies'('urn:example:alice7266', true)). +answer('urn:example:complies'('urn:example:alice7267', true)). +answer('urn:example:complies'('urn:example:alice7268', true)). +answer('urn:example:complies'('urn:example:alice7269', true)). +answer('urn:example:complies'('urn:example:alice7270', true)). +answer('urn:example:complies'('urn:example:alice7271', true)). +answer('urn:example:complies'('urn:example:alice7272', true)). +answer('urn:example:complies'('urn:example:alice7273', true)). +answer('urn:example:complies'('urn:example:alice7274', true)). +answer('urn:example:complies'('urn:example:alice7275', true)). +answer('urn:example:complies'('urn:example:alice7276', true)). +answer('urn:example:complies'('urn:example:alice7277', true)). +answer('urn:example:complies'('urn:example:alice7278', true)). +answer('urn:example:complies'('urn:example:alice7279', true)). +answer('urn:example:complies'('urn:example:alice7280', true)). +answer('urn:example:complies'('urn:example:alice7281', true)). +answer('urn:example:complies'('urn:example:alice7282', true)). +answer('urn:example:complies'('urn:example:alice7283', true)). +answer('urn:example:complies'('urn:example:alice7284', true)). +answer('urn:example:complies'('urn:example:alice7285', true)). +answer('urn:example:complies'('urn:example:alice7286', true)). +answer('urn:example:complies'('urn:example:alice7287', true)). +answer('urn:example:complies'('urn:example:alice7288', true)). +answer('urn:example:complies'('urn:example:alice7289', true)). +answer('urn:example:complies'('urn:example:alice7290', true)). +answer('urn:example:complies'('urn:example:alice7291', true)). +answer('urn:example:complies'('urn:example:alice7292', true)). +answer('urn:example:complies'('urn:example:alice7293', true)). +answer('urn:example:complies'('urn:example:alice7294', true)). +answer('urn:example:complies'('urn:example:alice7295', true)). +answer('urn:example:complies'('urn:example:alice7296', true)). +answer('urn:example:complies'('urn:example:alice7297', true)). +answer('urn:example:complies'('urn:example:alice7298', true)). +answer('urn:example:complies'('urn:example:alice7299', true)). +answer('urn:example:complies'('urn:example:alice7300', true)). +answer('urn:example:complies'('urn:example:alice7301', true)). +answer('urn:example:complies'('urn:example:alice7302', true)). +answer('urn:example:complies'('urn:example:alice7303', true)). +answer('urn:example:complies'('urn:example:alice7304', true)). +answer('urn:example:complies'('urn:example:alice7305', true)). +answer('urn:example:complies'('urn:example:alice7306', true)). +answer('urn:example:complies'('urn:example:alice7307', true)). +answer('urn:example:complies'('urn:example:alice7308', true)). +answer('urn:example:complies'('urn:example:alice7309', true)). +answer('urn:example:complies'('urn:example:alice7310', true)). +answer('urn:example:complies'('urn:example:alice7311', true)). +answer('urn:example:complies'('urn:example:alice7312', true)). +answer('urn:example:complies'('urn:example:alice7313', true)). +answer('urn:example:complies'('urn:example:alice7314', true)). +answer('urn:example:complies'('urn:example:alice7315', true)). +answer('urn:example:complies'('urn:example:alice7316', true)). +answer('urn:example:complies'('urn:example:alice7317', true)). +answer('urn:example:complies'('urn:example:alice7318', true)). +answer('urn:example:complies'('urn:example:alice7319', true)). +answer('urn:example:complies'('urn:example:alice7320', true)). +answer('urn:example:complies'('urn:example:alice7321', true)). +answer('urn:example:complies'('urn:example:alice7322', true)). +answer('urn:example:complies'('urn:example:alice7323', true)). +answer('urn:example:complies'('urn:example:alice7324', true)). +answer('urn:example:complies'('urn:example:alice7325', true)). +answer('urn:example:complies'('urn:example:alice7326', true)). +answer('urn:example:complies'('urn:example:alice7327', true)). +answer('urn:example:complies'('urn:example:alice7328', true)). +answer('urn:example:complies'('urn:example:alice7329', true)). +answer('urn:example:complies'('urn:example:alice7330', true)). +answer('urn:example:complies'('urn:example:alice7331', true)). +answer('urn:example:complies'('urn:example:alice7332', true)). +answer('urn:example:complies'('urn:example:alice7333', true)). +answer('urn:example:complies'('urn:example:alice7334', true)). +answer('urn:example:complies'('urn:example:alice7335', true)). +answer('urn:example:complies'('urn:example:alice7336', true)). +answer('urn:example:complies'('urn:example:alice7337', true)). +answer('urn:example:complies'('urn:example:alice7338', true)). +answer('urn:example:complies'('urn:example:alice7339', true)). +answer('urn:example:complies'('urn:example:alice7340', true)). +answer('urn:example:complies'('urn:example:alice7341', true)). +answer('urn:example:complies'('urn:example:alice7342', true)). +answer('urn:example:complies'('urn:example:alice7343', true)). +answer('urn:example:complies'('urn:example:alice7344', true)). +answer('urn:example:complies'('urn:example:alice7345', true)). +answer('urn:example:complies'('urn:example:alice7346', true)). +answer('urn:example:complies'('urn:example:alice7347', true)). +answer('urn:example:complies'('urn:example:alice7348', true)). +answer('urn:example:complies'('urn:example:alice7349', true)). +answer('urn:example:complies'('urn:example:alice7350', true)). +answer('urn:example:complies'('urn:example:alice7351', true)). +answer('urn:example:complies'('urn:example:alice7352', true)). +answer('urn:example:complies'('urn:example:alice7353', true)). +answer('urn:example:complies'('urn:example:alice7354', true)). +answer('urn:example:complies'('urn:example:alice7355', true)). +answer('urn:example:complies'('urn:example:alice7356', true)). +answer('urn:example:complies'('urn:example:alice7357', true)). +answer('urn:example:complies'('urn:example:alice7358', true)). +answer('urn:example:complies'('urn:example:alice7359', true)). +answer('urn:example:complies'('urn:example:alice7360', true)). +answer('urn:example:complies'('urn:example:alice7361', true)). +answer('urn:example:complies'('urn:example:alice7362', true)). +answer('urn:example:complies'('urn:example:alice7363', true)). +answer('urn:example:complies'('urn:example:alice7364', true)). +answer('urn:example:complies'('urn:example:alice7365', true)). +answer('urn:example:complies'('urn:example:alice7366', true)). +answer('urn:example:complies'('urn:example:alice7367', true)). +answer('urn:example:complies'('urn:example:alice7368', true)). +answer('urn:example:complies'('urn:example:alice7369', true)). +answer('urn:example:complies'('urn:example:alice7370', true)). +answer('urn:example:complies'('urn:example:alice7371', true)). +answer('urn:example:complies'('urn:example:alice7372', true)). +answer('urn:example:complies'('urn:example:alice7373', true)). +answer('urn:example:complies'('urn:example:alice7374', true)). +answer('urn:example:complies'('urn:example:alice7375', true)). +answer('urn:example:complies'('urn:example:alice7376', true)). +answer('urn:example:complies'('urn:example:alice7377', true)). +answer('urn:example:complies'('urn:example:alice7378', true)). +answer('urn:example:complies'('urn:example:alice7379', true)). +answer('urn:example:complies'('urn:example:alice7380', true)). +answer('urn:example:complies'('urn:example:alice7381', true)). +answer('urn:example:complies'('urn:example:alice7382', true)). +answer('urn:example:complies'('urn:example:alice7383', true)). +answer('urn:example:complies'('urn:example:alice7384', true)). +answer('urn:example:complies'('urn:example:alice7385', true)). +answer('urn:example:complies'('urn:example:alice7386', true)). +answer('urn:example:complies'('urn:example:alice7387', true)). +answer('urn:example:complies'('urn:example:alice7388', true)). +answer('urn:example:complies'('urn:example:alice7389', true)). +answer('urn:example:complies'('urn:example:alice7390', true)). +answer('urn:example:complies'('urn:example:alice7391', true)). +answer('urn:example:complies'('urn:example:alice7392', true)). +answer('urn:example:complies'('urn:example:alice7393', true)). +answer('urn:example:complies'('urn:example:alice7394', true)). +answer('urn:example:complies'('urn:example:alice7395', true)). +answer('urn:example:complies'('urn:example:alice7396', true)). +answer('urn:example:complies'('urn:example:alice7397', true)). +answer('urn:example:complies'('urn:example:alice7398', true)). +answer('urn:example:complies'('urn:example:alice7399', true)). +answer('urn:example:complies'('urn:example:alice7400', true)). +answer('urn:example:complies'('urn:example:alice7401', true)). +answer('urn:example:complies'('urn:example:alice7402', true)). +answer('urn:example:complies'('urn:example:alice7403', true)). +answer('urn:example:complies'('urn:example:alice7404', true)). +answer('urn:example:complies'('urn:example:alice7405', true)). +answer('urn:example:complies'('urn:example:alice7406', true)). +answer('urn:example:complies'('urn:example:alice7407', true)). +answer('urn:example:complies'('urn:example:alice7408', true)). +answer('urn:example:complies'('urn:example:alice7409', true)). +answer('urn:example:complies'('urn:example:alice7410', true)). +answer('urn:example:complies'('urn:example:alice7411', true)). +answer('urn:example:complies'('urn:example:alice7412', true)). +answer('urn:example:complies'('urn:example:alice7413', true)). +answer('urn:example:complies'('urn:example:alice7414', true)). +answer('urn:example:complies'('urn:example:alice7415', true)). +answer('urn:example:complies'('urn:example:alice7416', true)). +answer('urn:example:complies'('urn:example:alice7417', true)). +answer('urn:example:complies'('urn:example:alice7418', true)). +answer('urn:example:complies'('urn:example:alice7419', true)). +answer('urn:example:complies'('urn:example:alice7420', true)). +answer('urn:example:complies'('urn:example:alice7421', true)). +answer('urn:example:complies'('urn:example:alice7422', true)). +answer('urn:example:complies'('urn:example:alice7423', true)). +answer('urn:example:complies'('urn:example:alice7424', true)). +answer('urn:example:complies'('urn:example:alice7425', true)). +answer('urn:example:complies'('urn:example:alice7426', true)). +answer('urn:example:complies'('urn:example:alice7427', true)). +answer('urn:example:complies'('urn:example:alice7428', true)). +answer('urn:example:complies'('urn:example:alice7429', true)). +answer('urn:example:complies'('urn:example:alice7430', true)). +answer('urn:example:complies'('urn:example:alice7431', true)). +answer('urn:example:complies'('urn:example:alice7432', true)). +answer('urn:example:complies'('urn:example:alice7433', true)). +answer('urn:example:complies'('urn:example:alice7434', true)). +answer('urn:example:complies'('urn:example:alice7435', true)). +answer('urn:example:complies'('urn:example:alice7436', true)). +answer('urn:example:complies'('urn:example:alice7437', true)). +answer('urn:example:complies'('urn:example:alice7438', true)). +answer('urn:example:complies'('urn:example:alice7439', true)). +answer('urn:example:complies'('urn:example:alice7440', true)). +answer('urn:example:complies'('urn:example:alice7441', true)). +answer('urn:example:complies'('urn:example:alice7442', true)). +answer('urn:example:complies'('urn:example:alice7443', true)). +answer('urn:example:complies'('urn:example:alice7444', true)). +answer('urn:example:complies'('urn:example:alice7445', true)). +answer('urn:example:complies'('urn:example:alice7446', true)). +answer('urn:example:complies'('urn:example:alice7447', true)). +answer('urn:example:complies'('urn:example:alice7448', true)). +answer('urn:example:complies'('urn:example:alice7449', true)). +answer('urn:example:complies'('urn:example:alice7450', true)). +answer('urn:example:complies'('urn:example:alice7451', true)). +answer('urn:example:complies'('urn:example:alice7452', true)). +answer('urn:example:complies'('urn:example:alice7453', true)). +answer('urn:example:complies'('urn:example:alice7454', true)). +answer('urn:example:complies'('urn:example:alice7455', true)). +answer('urn:example:complies'('urn:example:alice7456', true)). +answer('urn:example:complies'('urn:example:alice7457', true)). +answer('urn:example:complies'('urn:example:alice7458', true)). +answer('urn:example:complies'('urn:example:alice7459', true)). +answer('urn:example:complies'('urn:example:alice7460', true)). +answer('urn:example:complies'('urn:example:alice7461', true)). +answer('urn:example:complies'('urn:example:alice7462', true)). +answer('urn:example:complies'('urn:example:alice7463', true)). +answer('urn:example:complies'('urn:example:alice7464', true)). +answer('urn:example:complies'('urn:example:alice7465', true)). +answer('urn:example:complies'('urn:example:alice7466', true)). +answer('urn:example:complies'('urn:example:alice7467', true)). +answer('urn:example:complies'('urn:example:alice7468', true)). +answer('urn:example:complies'('urn:example:alice7469', true)). +answer('urn:example:complies'('urn:example:alice7470', true)). +answer('urn:example:complies'('urn:example:alice7471', true)). +answer('urn:example:complies'('urn:example:alice7472', true)). +answer('urn:example:complies'('urn:example:alice7473', true)). +answer('urn:example:complies'('urn:example:alice7474', true)). +answer('urn:example:complies'('urn:example:alice7475', true)). +answer('urn:example:complies'('urn:example:alice7476', true)). +answer('urn:example:complies'('urn:example:alice7477', true)). +answer('urn:example:complies'('urn:example:alice7478', true)). +answer('urn:example:complies'('urn:example:alice7479', true)). +answer('urn:example:complies'('urn:example:alice7480', true)). +answer('urn:example:complies'('urn:example:alice7481', true)). +answer('urn:example:complies'('urn:example:alice7482', true)). +answer('urn:example:complies'('urn:example:alice7483', true)). +answer('urn:example:complies'('urn:example:alice7484', true)). +answer('urn:example:complies'('urn:example:alice7485', true)). +answer('urn:example:complies'('urn:example:alice7486', true)). +answer('urn:example:complies'('urn:example:alice7487', true)). +answer('urn:example:complies'('urn:example:alice7488', true)). +answer('urn:example:complies'('urn:example:alice7489', true)). +answer('urn:example:complies'('urn:example:alice7490', true)). +answer('urn:example:complies'('urn:example:alice7491', true)). +answer('urn:example:complies'('urn:example:alice7492', true)). +answer('urn:example:complies'('urn:example:alice7493', true)). +answer('urn:example:complies'('urn:example:alice7494', true)). +answer('urn:example:complies'('urn:example:alice7495', true)). +answer('urn:example:complies'('urn:example:alice7496', true)). +answer('urn:example:complies'('urn:example:alice7497', true)). +answer('urn:example:complies'('urn:example:alice7498', true)). +answer('urn:example:complies'('urn:example:alice7499', true)). +answer('urn:example:complies'('urn:example:alice7500', true)). +answer('urn:example:complies'('urn:example:alice7501', true)). +answer('urn:example:complies'('urn:example:alice7502', true)). +answer('urn:example:complies'('urn:example:alice7503', true)). +answer('urn:example:complies'('urn:example:alice7504', true)). +answer('urn:example:complies'('urn:example:alice7505', true)). +answer('urn:example:complies'('urn:example:alice7506', true)). +answer('urn:example:complies'('urn:example:alice7507', true)). +answer('urn:example:complies'('urn:example:alice7508', true)). +answer('urn:example:complies'('urn:example:alice7509', true)). +answer('urn:example:complies'('urn:example:alice7510', true)). +answer('urn:example:complies'('urn:example:alice7511', true)). +answer('urn:example:complies'('urn:example:alice7512', true)). +answer('urn:example:complies'('urn:example:alice7513', true)). +answer('urn:example:complies'('urn:example:alice7514', true)). +answer('urn:example:complies'('urn:example:alice7515', true)). +answer('urn:example:complies'('urn:example:alice7516', true)). +answer('urn:example:complies'('urn:example:alice7517', true)). +answer('urn:example:complies'('urn:example:alice7518', true)). +answer('urn:example:complies'('urn:example:alice7519', true)). +answer('urn:example:complies'('urn:example:alice7520', true)). +answer('urn:example:complies'('urn:example:alice7521', true)). +answer('urn:example:complies'('urn:example:alice7522', true)). +answer('urn:example:complies'('urn:example:alice7523', true)). +answer('urn:example:complies'('urn:example:alice7524', true)). +answer('urn:example:complies'('urn:example:alice7525', true)). +answer('urn:example:complies'('urn:example:alice7526', true)). +answer('urn:example:complies'('urn:example:alice7527', true)). +answer('urn:example:complies'('urn:example:alice7528', true)). +answer('urn:example:complies'('urn:example:alice7529', true)). +answer('urn:example:complies'('urn:example:alice7530', true)). +answer('urn:example:complies'('urn:example:alice7531', true)). +answer('urn:example:complies'('urn:example:alice7532', true)). +answer('urn:example:complies'('urn:example:alice7533', true)). +answer('urn:example:complies'('urn:example:alice7534', true)). +answer('urn:example:complies'('urn:example:alice7535', true)). +answer('urn:example:complies'('urn:example:alice7536', true)). +answer('urn:example:complies'('urn:example:alice7537', true)). +answer('urn:example:complies'('urn:example:alice7538', true)). +answer('urn:example:complies'('urn:example:alice7539', true)). +answer('urn:example:complies'('urn:example:alice7540', true)). +answer('urn:example:complies'('urn:example:alice7541', true)). +answer('urn:example:complies'('urn:example:alice7542', true)). +answer('urn:example:complies'('urn:example:alice7543', true)). +answer('urn:example:complies'('urn:example:alice7544', true)). +answer('urn:example:complies'('urn:example:alice7545', true)). +answer('urn:example:complies'('urn:example:alice7546', true)). +answer('urn:example:complies'('urn:example:alice7547', true)). +answer('urn:example:complies'('urn:example:alice7548', true)). +answer('urn:example:complies'('urn:example:alice7549', true)). +answer('urn:example:complies'('urn:example:alice7550', true)). +answer('urn:example:complies'('urn:example:alice7551', true)). +answer('urn:example:complies'('urn:example:alice7552', true)). +answer('urn:example:complies'('urn:example:alice7553', true)). +answer('urn:example:complies'('urn:example:alice7554', true)). +answer('urn:example:complies'('urn:example:alice7555', true)). +answer('urn:example:complies'('urn:example:alice7556', true)). +answer('urn:example:complies'('urn:example:alice7557', true)). +answer('urn:example:complies'('urn:example:alice7558', true)). +answer('urn:example:complies'('urn:example:alice7559', true)). +answer('urn:example:complies'('urn:example:alice7560', true)). +answer('urn:example:complies'('urn:example:alice7561', true)). +answer('urn:example:complies'('urn:example:alice7562', true)). +answer('urn:example:complies'('urn:example:alice7563', true)). +answer('urn:example:complies'('urn:example:alice7564', true)). +answer('urn:example:complies'('urn:example:alice7565', true)). +answer('urn:example:complies'('urn:example:alice7566', true)). +answer('urn:example:complies'('urn:example:alice7567', true)). +answer('urn:example:complies'('urn:example:alice7568', true)). +answer('urn:example:complies'('urn:example:alice7569', true)). +answer('urn:example:complies'('urn:example:alice7570', true)). +answer('urn:example:complies'('urn:example:alice7571', true)). +answer('urn:example:complies'('urn:example:alice7572', true)). +answer('urn:example:complies'('urn:example:alice7573', true)). +answer('urn:example:complies'('urn:example:alice7574', true)). +answer('urn:example:complies'('urn:example:alice7575', true)). +answer('urn:example:complies'('urn:example:alice7576', true)). +answer('urn:example:complies'('urn:example:alice7577', true)). +answer('urn:example:complies'('urn:example:alice7578', true)). +answer('urn:example:complies'('urn:example:alice7579', true)). +answer('urn:example:complies'('urn:example:alice7580', true)). +answer('urn:example:complies'('urn:example:alice7581', true)). +answer('urn:example:complies'('urn:example:alice7582', true)). +answer('urn:example:complies'('urn:example:alice7583', true)). +answer('urn:example:complies'('urn:example:alice7584', true)). +answer('urn:example:complies'('urn:example:alice7585', true)). +answer('urn:example:complies'('urn:example:alice7586', true)). +answer('urn:example:complies'('urn:example:alice7587', true)). +answer('urn:example:complies'('urn:example:alice7588', true)). +answer('urn:example:complies'('urn:example:alice7589', true)). +answer('urn:example:complies'('urn:example:alice7590', true)). +answer('urn:example:complies'('urn:example:alice7591', true)). +answer('urn:example:complies'('urn:example:alice7592', true)). +answer('urn:example:complies'('urn:example:alice7593', true)). +answer('urn:example:complies'('urn:example:alice7594', true)). +answer('urn:example:complies'('urn:example:alice7595', true)). +answer('urn:example:complies'('urn:example:alice7596', true)). +answer('urn:example:complies'('urn:example:alice7597', true)). +answer('urn:example:complies'('urn:example:alice7598', true)). +answer('urn:example:complies'('urn:example:alice7599', true)). +answer('urn:example:complies'('urn:example:alice7600', true)). +answer('urn:example:complies'('urn:example:alice7601', true)). +answer('urn:example:complies'('urn:example:alice7602', true)). +answer('urn:example:complies'('urn:example:alice7603', true)). +answer('urn:example:complies'('urn:example:alice7604', true)). +answer('urn:example:complies'('urn:example:alice7605', true)). +answer('urn:example:complies'('urn:example:alice7606', true)). +answer('urn:example:complies'('urn:example:alice7607', true)). +answer('urn:example:complies'('urn:example:alice7608', true)). +answer('urn:example:complies'('urn:example:alice7609', true)). +answer('urn:example:complies'('urn:example:alice7610', true)). +answer('urn:example:complies'('urn:example:alice7611', true)). +answer('urn:example:complies'('urn:example:alice7612', true)). +answer('urn:example:complies'('urn:example:alice7613', true)). +answer('urn:example:complies'('urn:example:alice7614', true)). +answer('urn:example:complies'('urn:example:alice7615', true)). +answer('urn:example:complies'('urn:example:alice7616', true)). +answer('urn:example:complies'('urn:example:alice7617', true)). +answer('urn:example:complies'('urn:example:alice7618', true)). +answer('urn:example:complies'('urn:example:alice7619', true)). +answer('urn:example:complies'('urn:example:alice7620', true)). +answer('urn:example:complies'('urn:example:alice7621', true)). +answer('urn:example:complies'('urn:example:alice7622', true)). +answer('urn:example:complies'('urn:example:alice7623', true)). +answer('urn:example:complies'('urn:example:alice7624', true)). +answer('urn:example:complies'('urn:example:alice7625', true)). +answer('urn:example:complies'('urn:example:alice7626', true)). +answer('urn:example:complies'('urn:example:alice7627', true)). +answer('urn:example:complies'('urn:example:alice7628', true)). +answer('urn:example:complies'('urn:example:alice7629', true)). +answer('urn:example:complies'('urn:example:alice7630', true)). +answer('urn:example:complies'('urn:example:alice7631', true)). +answer('urn:example:complies'('urn:example:alice7632', true)). +answer('urn:example:complies'('urn:example:alice7633', true)). +answer('urn:example:complies'('urn:example:alice7634', true)). +answer('urn:example:complies'('urn:example:alice7635', true)). +answer('urn:example:complies'('urn:example:alice7636', true)). +answer('urn:example:complies'('urn:example:alice7637', true)). +answer('urn:example:complies'('urn:example:alice7638', true)). +answer('urn:example:complies'('urn:example:alice7639', true)). +answer('urn:example:complies'('urn:example:alice7640', true)). +answer('urn:example:complies'('urn:example:alice7641', true)). +answer('urn:example:complies'('urn:example:alice7642', true)). +answer('urn:example:complies'('urn:example:alice7643', true)). +answer('urn:example:complies'('urn:example:alice7644', true)). +answer('urn:example:complies'('urn:example:alice7645', true)). +answer('urn:example:complies'('urn:example:alice7646', true)). +answer('urn:example:complies'('urn:example:alice7647', true)). +answer('urn:example:complies'('urn:example:alice7648', true)). +answer('urn:example:complies'('urn:example:alice7649', true)). +answer('urn:example:complies'('urn:example:alice7650', true)). +answer('urn:example:complies'('urn:example:alice7651', true)). +answer('urn:example:complies'('urn:example:alice7652', true)). +answer('urn:example:complies'('urn:example:alice7653', true)). +answer('urn:example:complies'('urn:example:alice7654', true)). +answer('urn:example:complies'('urn:example:alice7655', true)). +answer('urn:example:complies'('urn:example:alice7656', true)). +answer('urn:example:complies'('urn:example:alice7657', true)). +answer('urn:example:complies'('urn:example:alice7658', true)). +answer('urn:example:complies'('urn:example:alice7659', true)). +answer('urn:example:complies'('urn:example:alice7660', true)). +answer('urn:example:complies'('urn:example:alice7661', true)). +answer('urn:example:complies'('urn:example:alice7662', true)). +answer('urn:example:complies'('urn:example:alice7663', true)). +answer('urn:example:complies'('urn:example:alice7664', true)). +answer('urn:example:complies'('urn:example:alice7665', true)). +answer('urn:example:complies'('urn:example:alice7666', true)). +answer('urn:example:complies'('urn:example:alice7667', true)). +answer('urn:example:complies'('urn:example:alice7668', true)). +answer('urn:example:complies'('urn:example:alice7669', true)). +answer('urn:example:complies'('urn:example:alice7670', true)). +answer('urn:example:complies'('urn:example:alice7671', true)). +answer('urn:example:complies'('urn:example:alice7672', true)). +answer('urn:example:complies'('urn:example:alice7673', true)). +answer('urn:example:complies'('urn:example:alice7674', true)). +answer('urn:example:complies'('urn:example:alice7675', true)). +answer('urn:example:complies'('urn:example:alice7676', true)). +answer('urn:example:complies'('urn:example:alice7677', true)). +answer('urn:example:complies'('urn:example:alice7678', true)). +answer('urn:example:complies'('urn:example:alice7679', true)). +answer('urn:example:complies'('urn:example:alice7680', true)). +answer('urn:example:complies'('urn:example:alice7681', true)). +answer('urn:example:complies'('urn:example:alice7682', true)). +answer('urn:example:complies'('urn:example:alice7683', true)). +answer('urn:example:complies'('urn:example:alice7684', true)). +answer('urn:example:complies'('urn:example:alice7685', true)). +answer('urn:example:complies'('urn:example:alice7686', true)). +answer('urn:example:complies'('urn:example:alice7687', true)). +answer('urn:example:complies'('urn:example:alice7688', true)). +answer('urn:example:complies'('urn:example:alice7689', true)). +answer('urn:example:complies'('urn:example:alice7690', true)). +answer('urn:example:complies'('urn:example:alice7691', true)). +answer('urn:example:complies'('urn:example:alice7692', true)). +answer('urn:example:complies'('urn:example:alice7693', true)). +answer('urn:example:complies'('urn:example:alice7694', true)). +answer('urn:example:complies'('urn:example:alice7695', true)). +answer('urn:example:complies'('urn:example:alice7696', true)). +answer('urn:example:complies'('urn:example:alice7697', true)). +answer('urn:example:complies'('urn:example:alice7698', true)). +answer('urn:example:complies'('urn:example:alice7699', true)). +answer('urn:example:complies'('urn:example:alice7700', true)). +answer('urn:example:complies'('urn:example:alice7701', true)). +answer('urn:example:complies'('urn:example:alice7702', true)). +answer('urn:example:complies'('urn:example:alice7703', true)). +answer('urn:example:complies'('urn:example:alice7704', true)). +answer('urn:example:complies'('urn:example:alice7705', true)). +answer('urn:example:complies'('urn:example:alice7706', true)). +answer('urn:example:complies'('urn:example:alice7707', true)). +answer('urn:example:complies'('urn:example:alice7708', true)). +answer('urn:example:complies'('urn:example:alice7709', true)). +answer('urn:example:complies'('urn:example:alice7710', true)). +answer('urn:example:complies'('urn:example:alice7711', true)). +answer('urn:example:complies'('urn:example:alice7712', true)). +answer('urn:example:complies'('urn:example:alice7713', true)). +answer('urn:example:complies'('urn:example:alice7714', true)). +answer('urn:example:complies'('urn:example:alice7715', true)). +answer('urn:example:complies'('urn:example:alice7716', true)). +answer('urn:example:complies'('urn:example:alice7717', true)). +answer('urn:example:complies'('urn:example:alice7718', true)). +answer('urn:example:complies'('urn:example:alice7719', true)). +answer('urn:example:complies'('urn:example:alice7720', true)). +answer('urn:example:complies'('urn:example:alice7721', true)). +answer('urn:example:complies'('urn:example:alice7722', true)). +answer('urn:example:complies'('urn:example:alice7723', true)). +answer('urn:example:complies'('urn:example:alice7724', true)). +answer('urn:example:complies'('urn:example:alice7725', true)). +answer('urn:example:complies'('urn:example:alice7726', true)). +answer('urn:example:complies'('urn:example:alice7727', true)). +answer('urn:example:complies'('urn:example:alice7728', true)). +answer('urn:example:complies'('urn:example:alice7729', true)). +answer('urn:example:complies'('urn:example:alice7730', true)). +answer('urn:example:complies'('urn:example:alice7731', true)). +answer('urn:example:complies'('urn:example:alice7732', true)). +answer('urn:example:complies'('urn:example:alice7733', true)). +answer('urn:example:complies'('urn:example:alice7734', true)). +answer('urn:example:complies'('urn:example:alice7735', true)). +answer('urn:example:complies'('urn:example:alice7736', true)). +answer('urn:example:complies'('urn:example:alice7737', true)). +answer('urn:example:complies'('urn:example:alice7738', true)). +answer('urn:example:complies'('urn:example:alice7739', true)). +answer('urn:example:complies'('urn:example:alice7740', true)). +answer('urn:example:complies'('urn:example:alice7741', true)). +answer('urn:example:complies'('urn:example:alice7742', true)). +answer('urn:example:complies'('urn:example:alice7743', true)). +answer('urn:example:complies'('urn:example:alice7744', true)). +answer('urn:example:complies'('urn:example:alice7745', true)). +answer('urn:example:complies'('urn:example:alice7746', true)). +answer('urn:example:complies'('urn:example:alice7747', true)). +answer('urn:example:complies'('urn:example:alice7748', true)). +answer('urn:example:complies'('urn:example:alice7749', true)). +answer('urn:example:complies'('urn:example:alice7750', true)). +answer('urn:example:complies'('urn:example:alice7751', true)). +answer('urn:example:complies'('urn:example:alice7752', true)). +answer('urn:example:complies'('urn:example:alice7753', true)). +answer('urn:example:complies'('urn:example:alice7754', true)). +answer('urn:example:complies'('urn:example:alice7755', true)). +answer('urn:example:complies'('urn:example:alice7756', true)). +answer('urn:example:complies'('urn:example:alice7757', true)). +answer('urn:example:complies'('urn:example:alice7758', true)). +answer('urn:example:complies'('urn:example:alice7759', true)). +answer('urn:example:complies'('urn:example:alice7760', true)). +answer('urn:example:complies'('urn:example:alice7761', true)). +answer('urn:example:complies'('urn:example:alice7762', true)). +answer('urn:example:complies'('urn:example:alice7763', true)). +answer('urn:example:complies'('urn:example:alice7764', true)). +answer('urn:example:complies'('urn:example:alice7765', true)). +answer('urn:example:complies'('urn:example:alice7766', true)). +answer('urn:example:complies'('urn:example:alice7767', true)). +answer('urn:example:complies'('urn:example:alice7768', true)). +answer('urn:example:complies'('urn:example:alice7769', true)). +answer('urn:example:complies'('urn:example:alice7770', true)). +answer('urn:example:complies'('urn:example:alice7771', true)). +answer('urn:example:complies'('urn:example:alice7772', true)). +answer('urn:example:complies'('urn:example:alice7773', true)). +answer('urn:example:complies'('urn:example:alice7774', true)). +answer('urn:example:complies'('urn:example:alice7775', true)). +answer('urn:example:complies'('urn:example:alice7776', true)). +answer('urn:example:complies'('urn:example:alice7777', true)). +answer('urn:example:complies'('urn:example:alice7778', true)). +answer('urn:example:complies'('urn:example:alice7779', true)). +answer('urn:example:complies'('urn:example:alice7780', true)). +answer('urn:example:complies'('urn:example:alice7781', true)). +answer('urn:example:complies'('urn:example:alice7782', true)). +answer('urn:example:complies'('urn:example:alice7783', true)). +answer('urn:example:complies'('urn:example:alice7784', true)). +answer('urn:example:complies'('urn:example:alice7785', true)). +answer('urn:example:complies'('urn:example:alice7786', true)). +answer('urn:example:complies'('urn:example:alice7787', true)). +answer('urn:example:complies'('urn:example:alice7788', true)). +answer('urn:example:complies'('urn:example:alice7789', true)). +answer('urn:example:complies'('urn:example:alice7790', true)). +answer('urn:example:complies'('urn:example:alice7791', true)). +answer('urn:example:complies'('urn:example:alice7792', true)). +answer('urn:example:complies'('urn:example:alice7793', true)). +answer('urn:example:complies'('urn:example:alice7794', true)). +answer('urn:example:complies'('urn:example:alice7795', true)). +answer('urn:example:complies'('urn:example:alice7796', true)). +answer('urn:example:complies'('urn:example:alice7797', true)). +answer('urn:example:complies'('urn:example:alice7798', true)). +answer('urn:example:complies'('urn:example:alice7799', true)). +answer('urn:example:complies'('urn:example:alice7800', true)). +answer('urn:example:complies'('urn:example:alice7801', true)). +answer('urn:example:complies'('urn:example:alice7802', true)). +answer('urn:example:complies'('urn:example:alice7803', true)). +answer('urn:example:complies'('urn:example:alice7804', true)). +answer('urn:example:complies'('urn:example:alice7805', true)). +answer('urn:example:complies'('urn:example:alice7806', true)). +answer('urn:example:complies'('urn:example:alice7807', true)). +answer('urn:example:complies'('urn:example:alice7808', true)). +answer('urn:example:complies'('urn:example:alice7809', true)). +answer('urn:example:complies'('urn:example:alice7810', true)). +answer('urn:example:complies'('urn:example:alice7811', true)). +answer('urn:example:complies'('urn:example:alice7812', true)). +answer('urn:example:complies'('urn:example:alice7813', true)). +answer('urn:example:complies'('urn:example:alice7814', true)). +answer('urn:example:complies'('urn:example:alice7815', true)). +answer('urn:example:complies'('urn:example:alice7816', true)). +answer('urn:example:complies'('urn:example:alice7817', true)). +answer('urn:example:complies'('urn:example:alice7818', true)). +answer('urn:example:complies'('urn:example:alice7819', true)). +answer('urn:example:complies'('urn:example:alice7820', true)). +answer('urn:example:complies'('urn:example:alice7821', true)). +answer('urn:example:complies'('urn:example:alice7822', true)). +answer('urn:example:complies'('urn:example:alice7823', true)). +answer('urn:example:complies'('urn:example:alice7824', true)). +answer('urn:example:complies'('urn:example:alice7825', true)). +answer('urn:example:complies'('urn:example:alice7826', true)). +answer('urn:example:complies'('urn:example:alice7827', true)). +answer('urn:example:complies'('urn:example:alice7828', true)). +answer('urn:example:complies'('urn:example:alice7829', true)). +answer('urn:example:complies'('urn:example:alice7830', true)). +answer('urn:example:complies'('urn:example:alice7831', true)). +answer('urn:example:complies'('urn:example:alice7832', true)). +answer('urn:example:complies'('urn:example:alice7833', true)). +answer('urn:example:complies'('urn:example:alice7834', true)). +answer('urn:example:complies'('urn:example:alice7835', true)). +answer('urn:example:complies'('urn:example:alice7836', true)). +answer('urn:example:complies'('urn:example:alice7837', true)). +answer('urn:example:complies'('urn:example:alice7838', true)). +answer('urn:example:complies'('urn:example:alice7839', true)). +answer('urn:example:complies'('urn:example:alice7840', true)). +answer('urn:example:complies'('urn:example:alice7841', true)). +answer('urn:example:complies'('urn:example:alice7842', true)). +answer('urn:example:complies'('urn:example:alice7843', true)). +answer('urn:example:complies'('urn:example:alice7844', true)). +answer('urn:example:complies'('urn:example:alice7845', true)). +answer('urn:example:complies'('urn:example:alice7846', true)). +answer('urn:example:complies'('urn:example:alice7847', true)). +answer('urn:example:complies'('urn:example:alice7848', true)). +answer('urn:example:complies'('urn:example:alice7849', true)). +answer('urn:example:complies'('urn:example:alice7850', true)). +answer('urn:example:complies'('urn:example:alice7851', true)). +answer('urn:example:complies'('urn:example:alice7852', true)). +answer('urn:example:complies'('urn:example:alice7853', true)). +answer('urn:example:complies'('urn:example:alice7854', true)). +answer('urn:example:complies'('urn:example:alice7855', true)). +answer('urn:example:complies'('urn:example:alice7856', true)). +answer('urn:example:complies'('urn:example:alice7857', true)). +answer('urn:example:complies'('urn:example:alice7858', true)). +answer('urn:example:complies'('urn:example:alice7859', true)). +answer('urn:example:complies'('urn:example:alice7860', true)). +answer('urn:example:complies'('urn:example:alice7861', true)). +answer('urn:example:complies'('urn:example:alice7862', true)). +answer('urn:example:complies'('urn:example:alice7863', true)). +answer('urn:example:complies'('urn:example:alice7864', true)). +answer('urn:example:complies'('urn:example:alice7865', true)). +answer('urn:example:complies'('urn:example:alice7866', true)). +answer('urn:example:complies'('urn:example:alice7867', true)). +answer('urn:example:complies'('urn:example:alice7868', true)). +answer('urn:example:complies'('urn:example:alice7869', true)). +answer('urn:example:complies'('urn:example:alice7870', true)). +answer('urn:example:complies'('urn:example:alice7871', true)). +answer('urn:example:complies'('urn:example:alice7872', true)). +answer('urn:example:complies'('urn:example:alice7873', true)). +answer('urn:example:complies'('urn:example:alice7874', true)). +answer('urn:example:complies'('urn:example:alice7875', true)). +answer('urn:example:complies'('urn:example:alice7876', true)). +answer('urn:example:complies'('urn:example:alice7877', true)). +answer('urn:example:complies'('urn:example:alice7878', true)). +answer('urn:example:complies'('urn:example:alice7879', true)). +answer('urn:example:complies'('urn:example:alice7880', true)). +answer('urn:example:complies'('urn:example:alice7881', true)). +answer('urn:example:complies'('urn:example:alice7882', true)). +answer('urn:example:complies'('urn:example:alice7883', true)). +answer('urn:example:complies'('urn:example:alice7884', true)). +answer('urn:example:complies'('urn:example:alice7885', true)). +answer('urn:example:complies'('urn:example:alice7886', true)). +answer('urn:example:complies'('urn:example:alice7887', true)). +answer('urn:example:complies'('urn:example:alice7888', true)). +answer('urn:example:complies'('urn:example:alice7889', true)). +answer('urn:example:complies'('urn:example:alice7890', true)). +answer('urn:example:complies'('urn:example:alice7891', true)). +answer('urn:example:complies'('urn:example:alice7892', true)). +answer('urn:example:complies'('urn:example:alice7893', true)). +answer('urn:example:complies'('urn:example:alice7894', true)). +answer('urn:example:complies'('urn:example:alice7895', true)). +answer('urn:example:complies'('urn:example:alice7896', true)). +answer('urn:example:complies'('urn:example:alice7897', true)). +answer('urn:example:complies'('urn:example:alice7898', true)). +answer('urn:example:complies'('urn:example:alice7899', true)). +answer('urn:example:complies'('urn:example:alice7900', true)). +answer('urn:example:complies'('urn:example:alice7901', true)). +answer('urn:example:complies'('urn:example:alice7902', true)). +answer('urn:example:complies'('urn:example:alice7903', true)). +answer('urn:example:complies'('urn:example:alice7904', true)). +answer('urn:example:complies'('urn:example:alice7905', true)). +answer('urn:example:complies'('urn:example:alice7906', true)). +answer('urn:example:complies'('urn:example:alice7907', true)). +answer('urn:example:complies'('urn:example:alice7908', true)). +answer('urn:example:complies'('urn:example:alice7909', true)). +answer('urn:example:complies'('urn:example:alice7910', true)). +answer('urn:example:complies'('urn:example:alice7911', true)). +answer('urn:example:complies'('urn:example:alice7912', true)). +answer('urn:example:complies'('urn:example:alice7913', true)). +answer('urn:example:complies'('urn:example:alice7914', true)). +answer('urn:example:complies'('urn:example:alice7915', true)). +answer('urn:example:complies'('urn:example:alice7916', true)). +answer('urn:example:complies'('urn:example:alice7917', true)). +answer('urn:example:complies'('urn:example:alice7918', true)). +answer('urn:example:complies'('urn:example:alice7919', true)). +answer('urn:example:complies'('urn:example:alice7920', true)). +answer('urn:example:complies'('urn:example:alice7921', true)). +answer('urn:example:complies'('urn:example:alice7922', true)). +answer('urn:example:complies'('urn:example:alice7923', true)). +answer('urn:example:complies'('urn:example:alice7924', true)). +answer('urn:example:complies'('urn:example:alice7925', true)). +answer('urn:example:complies'('urn:example:alice7926', true)). +answer('urn:example:complies'('urn:example:alice7927', true)). +answer('urn:example:complies'('urn:example:alice7928', true)). +answer('urn:example:complies'('urn:example:alice7929', true)). +answer('urn:example:complies'('urn:example:alice7930', true)). +answer('urn:example:complies'('urn:example:alice7931', true)). +answer('urn:example:complies'('urn:example:alice7932', true)). +answer('urn:example:complies'('urn:example:alice7933', true)). +answer('urn:example:complies'('urn:example:alice7934', true)). +answer('urn:example:complies'('urn:example:alice7935', true)). +answer('urn:example:complies'('urn:example:alice7936', true)). +answer('urn:example:complies'('urn:example:alice7937', true)). +answer('urn:example:complies'('urn:example:alice7938', true)). +answer('urn:example:complies'('urn:example:alice7939', true)). +answer('urn:example:complies'('urn:example:alice7940', true)). +answer('urn:example:complies'('urn:example:alice7941', true)). +answer('urn:example:complies'('urn:example:alice7942', true)). +answer('urn:example:complies'('urn:example:alice7943', true)). +answer('urn:example:complies'('urn:example:alice7944', true)). +answer('urn:example:complies'('urn:example:alice7945', true)). +answer('urn:example:complies'('urn:example:alice7946', true)). +answer('urn:example:complies'('urn:example:alice7947', true)). +answer('urn:example:complies'('urn:example:alice7948', true)). +answer('urn:example:complies'('urn:example:alice7949', true)). +answer('urn:example:complies'('urn:example:alice7950', true)). +answer('urn:example:complies'('urn:example:alice7951', true)). +answer('urn:example:complies'('urn:example:alice7952', true)). +answer('urn:example:complies'('urn:example:alice7953', true)). +answer('urn:example:complies'('urn:example:alice7954', true)). +answer('urn:example:complies'('urn:example:alice7955', true)). +answer('urn:example:complies'('urn:example:alice7956', true)). +answer('urn:example:complies'('urn:example:alice7957', true)). +answer('urn:example:complies'('urn:example:alice7958', true)). +answer('urn:example:complies'('urn:example:alice7959', true)). +answer('urn:example:complies'('urn:example:alice7960', true)). +answer('urn:example:complies'('urn:example:alice7961', true)). +answer('urn:example:complies'('urn:example:alice7962', true)). +answer('urn:example:complies'('urn:example:alice7963', true)). +answer('urn:example:complies'('urn:example:alice7964', true)). +answer('urn:example:complies'('urn:example:alice7965', true)). +answer('urn:example:complies'('urn:example:alice7966', true)). +answer('urn:example:complies'('urn:example:alice7967', true)). +answer('urn:example:complies'('urn:example:alice7968', true)). +answer('urn:example:complies'('urn:example:alice7969', true)). +answer('urn:example:complies'('urn:example:alice7970', true)). +answer('urn:example:complies'('urn:example:alice7971', true)). +answer('urn:example:complies'('urn:example:alice7972', true)). +answer('urn:example:complies'('urn:example:alice7973', true)). +answer('urn:example:complies'('urn:example:alice7974', true)). +answer('urn:example:complies'('urn:example:alice7975', true)). +answer('urn:example:complies'('urn:example:alice7976', true)). +answer('urn:example:complies'('urn:example:alice7977', true)). +answer('urn:example:complies'('urn:example:alice7978', true)). +answer('urn:example:complies'('urn:example:alice7979', true)). +answer('urn:example:complies'('urn:example:alice7980', true)). +answer('urn:example:complies'('urn:example:alice7981', true)). +answer('urn:example:complies'('urn:example:alice7982', true)). +answer('urn:example:complies'('urn:example:alice7983', true)). +answer('urn:example:complies'('urn:example:alice7984', true)). +answer('urn:example:complies'('urn:example:alice7985', true)). +answer('urn:example:complies'('urn:example:alice7986', true)). +answer('urn:example:complies'('urn:example:alice7987', true)). +answer('urn:example:complies'('urn:example:alice7988', true)). +answer('urn:example:complies'('urn:example:alice7989', true)). +answer('urn:example:complies'('urn:example:alice7990', true)). +answer('urn:example:complies'('urn:example:alice7991', true)). +answer('urn:example:complies'('urn:example:alice7992', true)). +answer('urn:example:complies'('urn:example:alice7993', true)). +answer('urn:example:complies'('urn:example:alice7994', true)). +answer('urn:example:complies'('urn:example:alice7995', true)). +answer('urn:example:complies'('urn:example:alice7996', true)). +answer('urn:example:complies'('urn:example:alice7997', true)). +answer('urn:example:complies'('urn:example:alice7998', true)). +answer('urn:example:complies'('urn:example:alice7999', true)). +answer('urn:example:complies'('urn:example:alice8000', true)). +answer('urn:example:complies'('urn:example:alice8001', true)). +answer('urn:example:complies'('urn:example:alice8002', true)). +answer('urn:example:complies'('urn:example:alice8003', true)). +answer('urn:example:complies'('urn:example:alice8004', true)). +answer('urn:example:complies'('urn:example:alice8005', true)). +answer('urn:example:complies'('urn:example:alice8006', true)). +answer('urn:example:complies'('urn:example:alice8007', true)). +answer('urn:example:complies'('urn:example:alice8008', true)). +answer('urn:example:complies'('urn:example:alice8009', true)). +answer('urn:example:complies'('urn:example:alice8010', true)). +answer('urn:example:complies'('urn:example:alice8011', true)). +answer('urn:example:complies'('urn:example:alice8012', true)). +answer('urn:example:complies'('urn:example:alice8013', true)). +answer('urn:example:complies'('urn:example:alice8014', true)). +answer('urn:example:complies'('urn:example:alice8015', true)). +answer('urn:example:complies'('urn:example:alice8016', true)). +answer('urn:example:complies'('urn:example:alice8017', true)). +answer('urn:example:complies'('urn:example:alice8018', true)). +answer('urn:example:complies'('urn:example:alice8019', true)). +answer('urn:example:complies'('urn:example:alice8020', true)). +answer('urn:example:complies'('urn:example:alice8021', true)). +answer('urn:example:complies'('urn:example:alice8022', true)). +answer('urn:example:complies'('urn:example:alice8023', true)). +answer('urn:example:complies'('urn:example:alice8024', true)). +answer('urn:example:complies'('urn:example:alice8025', true)). +answer('urn:example:complies'('urn:example:alice8026', true)). +answer('urn:example:complies'('urn:example:alice8027', true)). +answer('urn:example:complies'('urn:example:alice8028', true)). +answer('urn:example:complies'('urn:example:alice8029', true)). +answer('urn:example:complies'('urn:example:alice8030', true)). +answer('urn:example:complies'('urn:example:alice8031', true)). +answer('urn:example:complies'('urn:example:alice8032', true)). +answer('urn:example:complies'('urn:example:alice8033', true)). +answer('urn:example:complies'('urn:example:alice8034', true)). +answer('urn:example:complies'('urn:example:alice8035', true)). +answer('urn:example:complies'('urn:example:alice8036', true)). +answer('urn:example:complies'('urn:example:alice8037', true)). +answer('urn:example:complies'('urn:example:alice8038', true)). +answer('urn:example:complies'('urn:example:alice8039', true)). +answer('urn:example:complies'('urn:example:alice8040', true)). +answer('urn:example:complies'('urn:example:alice8041', true)). +answer('urn:example:complies'('urn:example:alice8042', true)). +answer('urn:example:complies'('urn:example:alice8043', true)). +answer('urn:example:complies'('urn:example:alice8044', true)). +answer('urn:example:complies'('urn:example:alice8045', true)). +answer('urn:example:complies'('urn:example:alice8046', true)). +answer('urn:example:complies'('urn:example:alice8047', true)). +answer('urn:example:complies'('urn:example:alice8048', true)). +answer('urn:example:complies'('urn:example:alice8049', true)). +answer('urn:example:complies'('urn:example:alice8050', true)). +answer('urn:example:complies'('urn:example:alice8051', true)). +answer('urn:example:complies'('urn:example:alice8052', true)). +answer('urn:example:complies'('urn:example:alice8053', true)). +answer('urn:example:complies'('urn:example:alice8054', true)). +answer('urn:example:complies'('urn:example:alice8055', true)). +answer('urn:example:complies'('urn:example:alice8056', true)). +answer('urn:example:complies'('urn:example:alice8057', true)). +answer('urn:example:complies'('urn:example:alice8058', true)). +answer('urn:example:complies'('urn:example:alice8059', true)). +answer('urn:example:complies'('urn:example:alice8060', true)). +answer('urn:example:complies'('urn:example:alice8061', true)). +answer('urn:example:complies'('urn:example:alice8062', true)). +answer('urn:example:complies'('urn:example:alice8063', true)). +answer('urn:example:complies'('urn:example:alice8064', true)). +answer('urn:example:complies'('urn:example:alice8065', true)). +answer('urn:example:complies'('urn:example:alice8066', true)). +answer('urn:example:complies'('urn:example:alice8067', true)). +answer('urn:example:complies'('urn:example:alice8068', true)). +answer('urn:example:complies'('urn:example:alice8069', true)). +answer('urn:example:complies'('urn:example:alice8070', true)). +answer('urn:example:complies'('urn:example:alice8071', true)). +answer('urn:example:complies'('urn:example:alice8072', true)). +answer('urn:example:complies'('urn:example:alice8073', true)). +answer('urn:example:complies'('urn:example:alice8074', true)). +answer('urn:example:complies'('urn:example:alice8075', true)). +answer('urn:example:complies'('urn:example:alice8076', true)). +answer('urn:example:complies'('urn:example:alice8077', true)). +answer('urn:example:complies'('urn:example:alice8078', true)). +answer('urn:example:complies'('urn:example:alice8079', true)). +answer('urn:example:complies'('urn:example:alice8080', true)). +answer('urn:example:complies'('urn:example:alice8081', true)). +answer('urn:example:complies'('urn:example:alice8082', true)). +answer('urn:example:complies'('urn:example:alice8083', true)). +answer('urn:example:complies'('urn:example:alice8084', true)). +answer('urn:example:complies'('urn:example:alice8085', true)). +answer('urn:example:complies'('urn:example:alice8086', true)). +answer('urn:example:complies'('urn:example:alice8087', true)). +answer('urn:example:complies'('urn:example:alice8088', true)). +answer('urn:example:complies'('urn:example:alice8089', true)). +answer('urn:example:complies'('urn:example:alice8090', true)). +answer('urn:example:complies'('urn:example:alice8091', true)). +answer('urn:example:complies'('urn:example:alice8092', true)). +answer('urn:example:complies'('urn:example:alice8093', true)). +answer('urn:example:complies'('urn:example:alice8094', true)). +answer('urn:example:complies'('urn:example:alice8095', true)). +answer('urn:example:complies'('urn:example:alice8096', true)). +answer('urn:example:complies'('urn:example:alice8097', true)). +answer('urn:example:complies'('urn:example:alice8098', true)). +answer('urn:example:complies'('urn:example:alice8099', true)). +answer('urn:example:complies'('urn:example:alice8100', true)). +answer('urn:example:complies'('urn:example:alice8101', true)). +answer('urn:example:complies'('urn:example:alice8102', true)). +answer('urn:example:complies'('urn:example:alice8103', true)). +answer('urn:example:complies'('urn:example:alice8104', true)). +answer('urn:example:complies'('urn:example:alice8105', true)). +answer('urn:example:complies'('urn:example:alice8106', true)). +answer('urn:example:complies'('urn:example:alice8107', true)). +answer('urn:example:complies'('urn:example:alice8108', true)). +answer('urn:example:complies'('urn:example:alice8109', true)). +answer('urn:example:complies'('urn:example:alice8110', true)). +answer('urn:example:complies'('urn:example:alice8111', true)). +answer('urn:example:complies'('urn:example:alice8112', true)). +answer('urn:example:complies'('urn:example:alice8113', true)). +answer('urn:example:complies'('urn:example:alice8114', true)). +answer('urn:example:complies'('urn:example:alice8115', true)). +answer('urn:example:complies'('urn:example:alice8116', true)). +answer('urn:example:complies'('urn:example:alice8117', true)). +answer('urn:example:complies'('urn:example:alice8118', true)). +answer('urn:example:complies'('urn:example:alice8119', true)). +answer('urn:example:complies'('urn:example:alice8120', true)). +answer('urn:example:complies'('urn:example:alice8121', true)). +answer('urn:example:complies'('urn:example:alice8122', true)). +answer('urn:example:complies'('urn:example:alice8123', true)). +answer('urn:example:complies'('urn:example:alice8124', true)). +answer('urn:example:complies'('urn:example:alice8125', true)). +answer('urn:example:complies'('urn:example:alice8126', true)). +answer('urn:example:complies'('urn:example:alice8127', true)). +answer('urn:example:complies'('urn:example:alice8128', true)). +answer('urn:example:complies'('urn:example:alice8129', true)). +answer('urn:example:complies'('urn:example:alice8130', true)). +answer('urn:example:complies'('urn:example:alice8131', true)). +answer('urn:example:complies'('urn:example:alice8132', true)). +answer('urn:example:complies'('urn:example:alice8133', true)). +answer('urn:example:complies'('urn:example:alice8134', true)). +answer('urn:example:complies'('urn:example:alice8135', true)). +answer('urn:example:complies'('urn:example:alice8136', true)). +answer('urn:example:complies'('urn:example:alice8137', true)). +answer('urn:example:complies'('urn:example:alice8138', true)). +answer('urn:example:complies'('urn:example:alice8139', true)). +answer('urn:example:complies'('urn:example:alice8140', true)). +answer('urn:example:complies'('urn:example:alice8141', true)). +answer('urn:example:complies'('urn:example:alice8142', true)). +answer('urn:example:complies'('urn:example:alice8143', true)). +answer('urn:example:complies'('urn:example:alice8144', true)). +answer('urn:example:complies'('urn:example:alice8145', true)). +answer('urn:example:complies'('urn:example:alice8146', true)). +answer('urn:example:complies'('urn:example:alice8147', true)). +answer('urn:example:complies'('urn:example:alice8148', true)). +answer('urn:example:complies'('urn:example:alice8149', true)). +answer('urn:example:complies'('urn:example:alice8150', true)). +answer('urn:example:complies'('urn:example:alice8151', true)). +answer('urn:example:complies'('urn:example:alice8152', true)). +answer('urn:example:complies'('urn:example:alice8153', true)). +answer('urn:example:complies'('urn:example:alice8154', true)). +answer('urn:example:complies'('urn:example:alice8155', true)). +answer('urn:example:complies'('urn:example:alice8156', true)). +answer('urn:example:complies'('urn:example:alice8157', true)). +answer('urn:example:complies'('urn:example:alice8158', true)). +answer('urn:example:complies'('urn:example:alice8159', true)). +answer('urn:example:complies'('urn:example:alice8160', true)). +answer('urn:example:complies'('urn:example:alice8161', true)). +answer('urn:example:complies'('urn:example:alice8162', true)). +answer('urn:example:complies'('urn:example:alice8163', true)). +answer('urn:example:complies'('urn:example:alice8164', true)). +answer('urn:example:complies'('urn:example:alice8165', true)). +answer('urn:example:complies'('urn:example:alice8166', true)). +answer('urn:example:complies'('urn:example:alice8167', true)). +answer('urn:example:complies'('urn:example:alice8168', true)). +answer('urn:example:complies'('urn:example:alice8169', true)). +answer('urn:example:complies'('urn:example:alice8170', true)). +answer('urn:example:complies'('urn:example:alice8171', true)). +answer('urn:example:complies'('urn:example:alice8172', true)). +answer('urn:example:complies'('urn:example:alice8173', true)). +answer('urn:example:complies'('urn:example:alice8174', true)). +answer('urn:example:complies'('urn:example:alice8175', true)). +answer('urn:example:complies'('urn:example:alice8176', true)). +answer('urn:example:complies'('urn:example:alice8177', true)). +answer('urn:example:complies'('urn:example:alice8178', true)). +answer('urn:example:complies'('urn:example:alice8179', true)). +answer('urn:example:complies'('urn:example:alice8180', true)). +answer('urn:example:complies'('urn:example:alice8181', true)). +answer('urn:example:complies'('urn:example:alice8182', true)). +answer('urn:example:complies'('urn:example:alice8183', true)). +answer('urn:example:complies'('urn:example:alice8184', true)). +answer('urn:example:complies'('urn:example:alice8185', true)). +answer('urn:example:complies'('urn:example:alice8186', true)). +answer('urn:example:complies'('urn:example:alice8187', true)). +answer('urn:example:complies'('urn:example:alice8188', true)). +answer('urn:example:complies'('urn:example:alice8189', true)). +answer('urn:example:complies'('urn:example:alice8190', true)). +answer('urn:example:complies'('urn:example:alice8191', true)). +answer('urn:example:complies'('urn:example:alice8192', true)). +answer('urn:example:complies'('urn:example:alice8193', true)). +answer('urn:example:complies'('urn:example:alice8194', true)). +answer('urn:example:complies'('urn:example:alice8195', true)). +answer('urn:example:complies'('urn:example:alice8196', true)). +answer('urn:example:complies'('urn:example:alice8197', true)). +answer('urn:example:complies'('urn:example:alice8198', true)). +answer('urn:example:complies'('urn:example:alice8199', true)). +answer('urn:example:complies'('urn:example:alice8200', true)). +answer('urn:example:complies'('urn:example:alice8201', true)). +answer('urn:example:complies'('urn:example:alice8202', true)). +answer('urn:example:complies'('urn:example:alice8203', true)). +answer('urn:example:complies'('urn:example:alice8204', true)). +answer('urn:example:complies'('urn:example:alice8205', true)). +answer('urn:example:complies'('urn:example:alice8206', true)). +answer('urn:example:complies'('urn:example:alice8207', true)). +answer('urn:example:complies'('urn:example:alice8208', true)). +answer('urn:example:complies'('urn:example:alice8209', true)). +answer('urn:example:complies'('urn:example:alice8210', true)). +answer('urn:example:complies'('urn:example:alice8211', true)). +answer('urn:example:complies'('urn:example:alice8212', true)). +answer('urn:example:complies'('urn:example:alice8213', true)). +answer('urn:example:complies'('urn:example:alice8214', true)). +answer('urn:example:complies'('urn:example:alice8215', true)). +answer('urn:example:complies'('urn:example:alice8216', true)). +answer('urn:example:complies'('urn:example:alice8217', true)). +answer('urn:example:complies'('urn:example:alice8218', true)). +answer('urn:example:complies'('urn:example:alice8219', true)). +answer('urn:example:complies'('urn:example:alice8220', true)). +answer('urn:example:complies'('urn:example:alice8221', true)). +answer('urn:example:complies'('urn:example:alice8222', true)). +answer('urn:example:complies'('urn:example:alice8223', true)). +answer('urn:example:complies'('urn:example:alice8224', true)). +answer('urn:example:complies'('urn:example:alice8225', true)). +answer('urn:example:complies'('urn:example:alice8226', true)). +answer('urn:example:complies'('urn:example:alice8227', true)). +answer('urn:example:complies'('urn:example:alice8228', true)). +answer('urn:example:complies'('urn:example:alice8229', true)). +answer('urn:example:complies'('urn:example:alice8230', true)). +answer('urn:example:complies'('urn:example:alice8231', true)). +answer('urn:example:complies'('urn:example:alice8232', true)). +answer('urn:example:complies'('urn:example:alice8233', true)). +answer('urn:example:complies'('urn:example:alice8234', true)). +answer('urn:example:complies'('urn:example:alice8235', true)). +answer('urn:example:complies'('urn:example:alice8236', true)). +answer('urn:example:complies'('urn:example:alice8237', true)). +answer('urn:example:complies'('urn:example:alice8238', true)). +answer('urn:example:complies'('urn:example:alice8239', true)). +answer('urn:example:complies'('urn:example:alice8240', true)). +answer('urn:example:complies'('urn:example:alice8241', true)). +answer('urn:example:complies'('urn:example:alice8242', true)). +answer('urn:example:complies'('urn:example:alice8243', true)). +answer('urn:example:complies'('urn:example:alice8244', true)). +answer('urn:example:complies'('urn:example:alice8245', true)). +answer('urn:example:complies'('urn:example:alice8246', true)). +answer('urn:example:complies'('urn:example:alice8247', true)). +answer('urn:example:complies'('urn:example:alice8248', true)). +answer('urn:example:complies'('urn:example:alice8249', true)). +answer('urn:example:complies'('urn:example:alice8250', true)). +answer('urn:example:complies'('urn:example:alice8251', true)). +answer('urn:example:complies'('urn:example:alice8252', true)). +answer('urn:example:complies'('urn:example:alice8253', true)). +answer('urn:example:complies'('urn:example:alice8254', true)). +answer('urn:example:complies'('urn:example:alice8255', true)). +answer('urn:example:complies'('urn:example:alice8256', true)). +answer('urn:example:complies'('urn:example:alice8257', true)). +answer('urn:example:complies'('urn:example:alice8258', true)). +answer('urn:example:complies'('urn:example:alice8259', true)). +answer('urn:example:complies'('urn:example:alice8260', true)). +answer('urn:example:complies'('urn:example:alice8261', true)). +answer('urn:example:complies'('urn:example:alice8262', true)). +answer('urn:example:complies'('urn:example:alice8263', true)). +answer('urn:example:complies'('urn:example:alice8264', true)). +answer('urn:example:complies'('urn:example:alice8265', true)). +answer('urn:example:complies'('urn:example:alice8266', true)). +answer('urn:example:complies'('urn:example:alice8267', true)). +answer('urn:example:complies'('urn:example:alice8268', true)). +answer('urn:example:complies'('urn:example:alice8269', true)). +answer('urn:example:complies'('urn:example:alice8270', true)). +answer('urn:example:complies'('urn:example:alice8271', true)). +answer('urn:example:complies'('urn:example:alice8272', true)). +answer('urn:example:complies'('urn:example:alice8273', true)). +answer('urn:example:complies'('urn:example:alice8274', true)). +answer('urn:example:complies'('urn:example:alice8275', true)). +answer('urn:example:complies'('urn:example:alice8276', true)). +answer('urn:example:complies'('urn:example:alice8277', true)). +answer('urn:example:complies'('urn:example:alice8278', true)). +answer('urn:example:complies'('urn:example:alice8279', true)). +answer('urn:example:complies'('urn:example:alice8280', true)). +answer('urn:example:complies'('urn:example:alice8281', true)). +answer('urn:example:complies'('urn:example:alice8282', true)). +answer('urn:example:complies'('urn:example:alice8283', true)). +answer('urn:example:complies'('urn:example:alice8284', true)). +answer('urn:example:complies'('urn:example:alice8285', true)). +answer('urn:example:complies'('urn:example:alice8286', true)). +answer('urn:example:complies'('urn:example:alice8287', true)). +answer('urn:example:complies'('urn:example:alice8288', true)). +answer('urn:example:complies'('urn:example:alice8289', true)). +answer('urn:example:complies'('urn:example:alice8290', true)). +answer('urn:example:complies'('urn:example:alice8291', true)). +answer('urn:example:complies'('urn:example:alice8292', true)). +answer('urn:example:complies'('urn:example:alice8293', true)). +answer('urn:example:complies'('urn:example:alice8294', true)). +answer('urn:example:complies'('urn:example:alice8295', true)). +answer('urn:example:complies'('urn:example:alice8296', true)). +answer('urn:example:complies'('urn:example:alice8297', true)). +answer('urn:example:complies'('urn:example:alice8298', true)). +answer('urn:example:complies'('urn:example:alice8299', true)). +answer('urn:example:complies'('urn:example:alice8300', true)). +answer('urn:example:complies'('urn:example:alice8301', true)). +answer('urn:example:complies'('urn:example:alice8302', true)). +answer('urn:example:complies'('urn:example:alice8303', true)). +answer('urn:example:complies'('urn:example:alice8304', true)). +answer('urn:example:complies'('urn:example:alice8305', true)). +answer('urn:example:complies'('urn:example:alice8306', true)). +answer('urn:example:complies'('urn:example:alice8307', true)). +answer('urn:example:complies'('urn:example:alice8308', true)). +answer('urn:example:complies'('urn:example:alice8309', true)). +answer('urn:example:complies'('urn:example:alice8310', true)). +answer('urn:example:complies'('urn:example:alice8311', true)). +answer('urn:example:complies'('urn:example:alice8312', true)). +answer('urn:example:complies'('urn:example:alice8313', true)). +answer('urn:example:complies'('urn:example:alice8314', true)). +answer('urn:example:complies'('urn:example:alice8315', true)). +answer('urn:example:complies'('urn:example:alice8316', true)). +answer('urn:example:complies'('urn:example:alice8317', true)). +answer('urn:example:complies'('urn:example:alice8318', true)). +answer('urn:example:complies'('urn:example:alice8319', true)). +answer('urn:example:complies'('urn:example:alice8320', true)). +answer('urn:example:complies'('urn:example:alice8321', true)). +answer('urn:example:complies'('urn:example:alice8322', true)). +answer('urn:example:complies'('urn:example:alice8323', true)). +answer('urn:example:complies'('urn:example:alice8324', true)). +answer('urn:example:complies'('urn:example:alice8325', true)). +answer('urn:example:complies'('urn:example:alice8326', true)). +answer('urn:example:complies'('urn:example:alice8327', true)). +answer('urn:example:complies'('urn:example:alice8328', true)). +answer('urn:example:complies'('urn:example:alice8329', true)). +answer('urn:example:complies'('urn:example:alice8330', true)). +answer('urn:example:complies'('urn:example:alice8331', true)). +answer('urn:example:complies'('urn:example:alice8332', true)). +answer('urn:example:complies'('urn:example:alice8333', true)). +answer('urn:example:complies'('urn:example:alice8334', true)). +answer('urn:example:complies'('urn:example:alice8335', true)). +answer('urn:example:complies'('urn:example:alice8336', true)). +answer('urn:example:complies'('urn:example:alice8337', true)). +answer('urn:example:complies'('urn:example:alice8338', true)). +answer('urn:example:complies'('urn:example:alice8339', true)). +answer('urn:example:complies'('urn:example:alice8340', true)). +answer('urn:example:complies'('urn:example:alice8341', true)). +answer('urn:example:complies'('urn:example:alice8342', true)). +answer('urn:example:complies'('urn:example:alice8343', true)). +answer('urn:example:complies'('urn:example:alice8344', true)). +answer('urn:example:complies'('urn:example:alice8345', true)). +answer('urn:example:complies'('urn:example:alice8346', true)). +answer('urn:example:complies'('urn:example:alice8347', true)). +answer('urn:example:complies'('urn:example:alice8348', true)). +answer('urn:example:complies'('urn:example:alice8349', true)). +answer('urn:example:complies'('urn:example:alice8350', true)). +answer('urn:example:complies'('urn:example:alice8351', true)). +answer('urn:example:complies'('urn:example:alice8352', true)). +answer('urn:example:complies'('urn:example:alice8353', true)). +answer('urn:example:complies'('urn:example:alice8354', true)). +answer('urn:example:complies'('urn:example:alice8355', true)). +answer('urn:example:complies'('urn:example:alice8356', true)). +answer('urn:example:complies'('urn:example:alice8357', true)). +answer('urn:example:complies'('urn:example:alice8358', true)). +answer('urn:example:complies'('urn:example:alice8359', true)). +answer('urn:example:complies'('urn:example:alice8360', true)). +answer('urn:example:complies'('urn:example:alice8361', true)). +answer('urn:example:complies'('urn:example:alice8362', true)). +answer('urn:example:complies'('urn:example:alice8363', true)). +answer('urn:example:complies'('urn:example:alice8364', true)). +answer('urn:example:complies'('urn:example:alice8365', true)). +answer('urn:example:complies'('urn:example:alice8366', true)). +answer('urn:example:complies'('urn:example:alice8367', true)). +answer('urn:example:complies'('urn:example:alice8368', true)). +answer('urn:example:complies'('urn:example:alice8369', true)). +answer('urn:example:complies'('urn:example:alice8370', true)). +answer('urn:example:complies'('urn:example:alice8371', true)). +answer('urn:example:complies'('urn:example:alice8372', true)). +answer('urn:example:complies'('urn:example:alice8373', true)). +answer('urn:example:complies'('urn:example:alice8374', true)). +answer('urn:example:complies'('urn:example:alice8375', true)). +answer('urn:example:complies'('urn:example:alice8376', true)). +answer('urn:example:complies'('urn:example:alice8377', true)). +answer('urn:example:complies'('urn:example:alice8378', true)). +answer('urn:example:complies'('urn:example:alice8379', true)). +answer('urn:example:complies'('urn:example:alice8380', true)). +answer('urn:example:complies'('urn:example:alice8381', true)). +answer('urn:example:complies'('urn:example:alice8382', true)). +answer('urn:example:complies'('urn:example:alice8383', true)). +answer('urn:example:complies'('urn:example:alice8384', true)). +answer('urn:example:complies'('urn:example:alice8385', true)). +answer('urn:example:complies'('urn:example:alice8386', true)). +answer('urn:example:complies'('urn:example:alice8387', true)). +answer('urn:example:complies'('urn:example:alice8388', true)). +answer('urn:example:complies'('urn:example:alice8389', true)). +answer('urn:example:complies'('urn:example:alice8390', true)). +answer('urn:example:complies'('urn:example:alice8391', true)). +answer('urn:example:complies'('urn:example:alice8392', true)). +answer('urn:example:complies'('urn:example:alice8393', true)). +answer('urn:example:complies'('urn:example:alice8394', true)). +answer('urn:example:complies'('urn:example:alice8395', true)). +answer('urn:example:complies'('urn:example:alice8396', true)). +answer('urn:example:complies'('urn:example:alice8397', true)). +answer('urn:example:complies'('urn:example:alice8398', true)). +answer('urn:example:complies'('urn:example:alice8399', true)). +answer('urn:example:complies'('urn:example:alice8400', true)). +answer('urn:example:complies'('urn:example:alice8401', true)). +answer('urn:example:complies'('urn:example:alice8402', true)). +answer('urn:example:complies'('urn:example:alice8403', true)). +answer('urn:example:complies'('urn:example:alice8404', true)). +answer('urn:example:complies'('urn:example:alice8405', true)). +answer('urn:example:complies'('urn:example:alice8406', true)). +answer('urn:example:complies'('urn:example:alice8407', true)). +answer('urn:example:complies'('urn:example:alice8408', true)). +answer('urn:example:complies'('urn:example:alice8409', true)). +answer('urn:example:complies'('urn:example:alice8410', true)). +answer('urn:example:complies'('urn:example:alice8411', true)). +answer('urn:example:complies'('urn:example:alice8412', true)). +answer('urn:example:complies'('urn:example:alice8413', true)). +answer('urn:example:complies'('urn:example:alice8414', true)). +answer('urn:example:complies'('urn:example:alice8415', true)). +answer('urn:example:complies'('urn:example:alice8416', true)). +answer('urn:example:complies'('urn:example:alice8417', true)). +answer('urn:example:complies'('urn:example:alice8418', true)). +answer('urn:example:complies'('urn:example:alice8419', true)). +answer('urn:example:complies'('urn:example:alice8420', true)). +answer('urn:example:complies'('urn:example:alice8421', true)). +answer('urn:example:complies'('urn:example:alice8422', true)). +answer('urn:example:complies'('urn:example:alice8423', true)). +answer('urn:example:complies'('urn:example:alice8424', true)). +answer('urn:example:complies'('urn:example:alice8425', true)). +answer('urn:example:complies'('urn:example:alice8426', true)). +answer('urn:example:complies'('urn:example:alice8427', true)). +answer('urn:example:complies'('urn:example:alice8428', true)). +answer('urn:example:complies'('urn:example:alice8429', true)). +answer('urn:example:complies'('urn:example:alice8430', true)). +answer('urn:example:complies'('urn:example:alice8431', true)). +answer('urn:example:complies'('urn:example:alice8432', true)). +answer('urn:example:complies'('urn:example:alice8433', true)). +answer('urn:example:complies'('urn:example:alice8434', true)). +answer('urn:example:complies'('urn:example:alice8435', true)). +answer('urn:example:complies'('urn:example:alice8436', true)). +answer('urn:example:complies'('urn:example:alice8437', true)). +answer('urn:example:complies'('urn:example:alice8438', true)). +answer('urn:example:complies'('urn:example:alice8439', true)). +answer('urn:example:complies'('urn:example:alice8440', true)). +answer('urn:example:complies'('urn:example:alice8441', true)). +answer('urn:example:complies'('urn:example:alice8442', true)). +answer('urn:example:complies'('urn:example:alice8443', true)). +answer('urn:example:complies'('urn:example:alice8444', true)). +answer('urn:example:complies'('urn:example:alice8445', true)). +answer('urn:example:complies'('urn:example:alice8446', true)). +answer('urn:example:complies'('urn:example:alice8447', true)). +answer('urn:example:complies'('urn:example:alice8448', true)). +answer('urn:example:complies'('urn:example:alice8449', true)). +answer('urn:example:complies'('urn:example:alice8450', true)). +answer('urn:example:complies'('urn:example:alice8451', true)). +answer('urn:example:complies'('urn:example:alice8452', true)). +answer('urn:example:complies'('urn:example:alice8453', true)). +answer('urn:example:complies'('urn:example:alice8454', true)). +answer('urn:example:complies'('urn:example:alice8455', true)). +answer('urn:example:complies'('urn:example:alice8456', true)). +answer('urn:example:complies'('urn:example:alice8457', true)). +answer('urn:example:complies'('urn:example:alice8458', true)). +answer('urn:example:complies'('urn:example:alice8459', true)). +answer('urn:example:complies'('urn:example:alice8460', true)). +answer('urn:example:complies'('urn:example:alice8461', true)). +answer('urn:example:complies'('urn:example:alice8462', true)). +answer('urn:example:complies'('urn:example:alice8463', true)). +answer('urn:example:complies'('urn:example:alice8464', true)). +answer('urn:example:complies'('urn:example:alice8465', true)). +answer('urn:example:complies'('urn:example:alice8466', true)). +answer('urn:example:complies'('urn:example:alice8467', true)). +answer('urn:example:complies'('urn:example:alice8468', true)). +answer('urn:example:complies'('urn:example:alice8469', true)). +answer('urn:example:complies'('urn:example:alice8470', true)). +answer('urn:example:complies'('urn:example:alice8471', true)). +answer('urn:example:complies'('urn:example:alice8472', true)). +answer('urn:example:complies'('urn:example:alice8473', true)). +answer('urn:example:complies'('urn:example:alice8474', true)). +answer('urn:example:complies'('urn:example:alice8475', true)). +answer('urn:example:complies'('urn:example:alice8476', true)). +answer('urn:example:complies'('urn:example:alice8477', true)). +answer('urn:example:complies'('urn:example:alice8478', true)). +answer('urn:example:complies'('urn:example:alice8479', true)). +answer('urn:example:complies'('urn:example:alice8480', true)). +answer('urn:example:complies'('urn:example:alice8481', true)). +answer('urn:example:complies'('urn:example:alice8482', true)). +answer('urn:example:complies'('urn:example:alice8483', true)). +answer('urn:example:complies'('urn:example:alice8484', true)). +answer('urn:example:complies'('urn:example:alice8485', true)). +answer('urn:example:complies'('urn:example:alice8486', true)). +answer('urn:example:complies'('urn:example:alice8487', true)). +answer('urn:example:complies'('urn:example:alice8488', true)). +answer('urn:example:complies'('urn:example:alice8489', true)). +answer('urn:example:complies'('urn:example:alice8490', true)). +answer('urn:example:complies'('urn:example:alice8491', true)). +answer('urn:example:complies'('urn:example:alice8492', true)). +answer('urn:example:complies'('urn:example:alice8493', true)). +answer('urn:example:complies'('urn:example:alice8494', true)). +answer('urn:example:complies'('urn:example:alice8495', true)). +answer('urn:example:complies'('urn:example:alice8496', true)). +answer('urn:example:complies'('urn:example:alice8497', true)). +answer('urn:example:complies'('urn:example:alice8498', true)). +answer('urn:example:complies'('urn:example:alice8499', true)). +answer('urn:example:complies'('urn:example:alice8500', true)). +answer('urn:example:complies'('urn:example:alice8501', true)). +answer('urn:example:complies'('urn:example:alice8502', true)). +answer('urn:example:complies'('urn:example:alice8503', true)). +answer('urn:example:complies'('urn:example:alice8504', true)). +answer('urn:example:complies'('urn:example:alice8505', true)). +answer('urn:example:complies'('urn:example:alice8506', true)). +answer('urn:example:complies'('urn:example:alice8507', true)). +answer('urn:example:complies'('urn:example:alice8508', true)). +answer('urn:example:complies'('urn:example:alice8509', true)). +answer('urn:example:complies'('urn:example:alice8510', true)). +answer('urn:example:complies'('urn:example:alice8511', true)). +answer('urn:example:complies'('urn:example:alice8512', true)). +answer('urn:example:complies'('urn:example:alice8513', true)). +answer('urn:example:complies'('urn:example:alice8514', true)). +answer('urn:example:complies'('urn:example:alice8515', true)). +answer('urn:example:complies'('urn:example:alice8516', true)). +answer('urn:example:complies'('urn:example:alice8517', true)). +answer('urn:example:complies'('urn:example:alice8518', true)). +answer('urn:example:complies'('urn:example:alice8519', true)). +answer('urn:example:complies'('urn:example:alice8520', true)). +answer('urn:example:complies'('urn:example:alice8521', true)). +answer('urn:example:complies'('urn:example:alice8522', true)). +answer('urn:example:complies'('urn:example:alice8523', true)). +answer('urn:example:complies'('urn:example:alice8524', true)). +answer('urn:example:complies'('urn:example:alice8525', true)). +answer('urn:example:complies'('urn:example:alice8526', true)). +answer('urn:example:complies'('urn:example:alice8527', true)). +answer('urn:example:complies'('urn:example:alice8528', true)). +answer('urn:example:complies'('urn:example:alice8529', true)). +answer('urn:example:complies'('urn:example:alice8530', true)). +answer('urn:example:complies'('urn:example:alice8531', true)). +answer('urn:example:complies'('urn:example:alice8532', true)). +answer('urn:example:complies'('urn:example:alice8533', true)). +answer('urn:example:complies'('urn:example:alice8534', true)). +answer('urn:example:complies'('urn:example:alice8535', true)). +answer('urn:example:complies'('urn:example:alice8536', true)). +answer('urn:example:complies'('urn:example:alice8537', true)). +answer('urn:example:complies'('urn:example:alice8538', true)). +answer('urn:example:complies'('urn:example:alice8539', true)). +answer('urn:example:complies'('urn:example:alice8540', true)). +answer('urn:example:complies'('urn:example:alice8541', true)). +answer('urn:example:complies'('urn:example:alice8542', true)). +answer('urn:example:complies'('urn:example:alice8543', true)). +answer('urn:example:complies'('urn:example:alice8544', true)). +answer('urn:example:complies'('urn:example:alice8545', true)). +answer('urn:example:complies'('urn:example:alice8546', true)). +answer('urn:example:complies'('urn:example:alice8547', true)). +answer('urn:example:complies'('urn:example:alice8548', true)). +answer('urn:example:complies'('urn:example:alice8549', true)). +answer('urn:example:complies'('urn:example:alice8550', true)). +answer('urn:example:complies'('urn:example:alice8551', true)). +answer('urn:example:complies'('urn:example:alice8552', true)). +answer('urn:example:complies'('urn:example:alice8553', true)). +answer('urn:example:complies'('urn:example:alice8554', true)). +answer('urn:example:complies'('urn:example:alice8555', true)). +answer('urn:example:complies'('urn:example:alice8556', true)). +answer('urn:example:complies'('urn:example:alice8557', true)). +answer('urn:example:complies'('urn:example:alice8558', true)). +answer('urn:example:complies'('urn:example:alice8559', true)). +answer('urn:example:complies'('urn:example:alice8560', true)). +answer('urn:example:complies'('urn:example:alice8561', true)). +answer('urn:example:complies'('urn:example:alice8562', true)). +answer('urn:example:complies'('urn:example:alice8563', true)). +answer('urn:example:complies'('urn:example:alice8564', true)). +answer('urn:example:complies'('urn:example:alice8565', true)). +answer('urn:example:complies'('urn:example:alice8566', true)). +answer('urn:example:complies'('urn:example:alice8567', true)). +answer('urn:example:complies'('urn:example:alice8568', true)). +answer('urn:example:complies'('urn:example:alice8569', true)). +answer('urn:example:complies'('urn:example:alice8570', true)). +answer('urn:example:complies'('urn:example:alice8571', true)). +answer('urn:example:complies'('urn:example:alice8572', true)). +answer('urn:example:complies'('urn:example:alice8573', true)). +answer('urn:example:complies'('urn:example:alice8574', true)). +answer('urn:example:complies'('urn:example:alice8575', true)). +answer('urn:example:complies'('urn:example:alice8576', true)). +answer('urn:example:complies'('urn:example:alice8577', true)). +answer('urn:example:complies'('urn:example:alice8578', true)). +answer('urn:example:complies'('urn:example:alice8579', true)). +answer('urn:example:complies'('urn:example:alice8580', true)). +answer('urn:example:complies'('urn:example:alice8581', true)). +answer('urn:example:complies'('urn:example:alice8582', true)). +answer('urn:example:complies'('urn:example:alice8583', true)). +answer('urn:example:complies'('urn:example:alice8584', true)). +answer('urn:example:complies'('urn:example:alice8585', true)). +answer('urn:example:complies'('urn:example:alice8586', true)). +answer('urn:example:complies'('urn:example:alice8587', true)). +answer('urn:example:complies'('urn:example:alice8588', true)). +answer('urn:example:complies'('urn:example:alice8589', true)). +answer('urn:example:complies'('urn:example:alice8590', true)). +answer('urn:example:complies'('urn:example:alice8591', true)). +answer('urn:example:complies'('urn:example:alice8592', true)). +answer('urn:example:complies'('urn:example:alice8593', true)). +answer('urn:example:complies'('urn:example:alice8594', true)). +answer('urn:example:complies'('urn:example:alice8595', true)). +answer('urn:example:complies'('urn:example:alice8596', true)). +answer('urn:example:complies'('urn:example:alice8597', true)). +answer('urn:example:complies'('urn:example:alice8598', true)). +answer('urn:example:complies'('urn:example:alice8599', true)). +answer('urn:example:complies'('urn:example:alice8600', true)). +answer('urn:example:complies'('urn:example:alice8601', true)). +answer('urn:example:complies'('urn:example:alice8602', true)). +answer('urn:example:complies'('urn:example:alice8603', true)). +answer('urn:example:complies'('urn:example:alice8604', true)). +answer('urn:example:complies'('urn:example:alice8605', true)). +answer('urn:example:complies'('urn:example:alice8606', true)). +answer('urn:example:complies'('urn:example:alice8607', true)). +answer('urn:example:complies'('urn:example:alice8608', true)). +answer('urn:example:complies'('urn:example:alice8609', true)). +answer('urn:example:complies'('urn:example:alice8610', true)). +answer('urn:example:complies'('urn:example:alice8611', true)). +answer('urn:example:complies'('urn:example:alice8612', true)). +answer('urn:example:complies'('urn:example:alice8613', true)). +answer('urn:example:complies'('urn:example:alice8614', true)). +answer('urn:example:complies'('urn:example:alice8615', true)). +answer('urn:example:complies'('urn:example:alice8616', true)). +answer('urn:example:complies'('urn:example:alice8617', true)). +answer('urn:example:complies'('urn:example:alice8618', true)). +answer('urn:example:complies'('urn:example:alice8619', true)). +answer('urn:example:complies'('urn:example:alice8620', true)). +answer('urn:example:complies'('urn:example:alice8621', true)). +answer('urn:example:complies'('urn:example:alice8622', true)). +answer('urn:example:complies'('urn:example:alice8623', true)). +answer('urn:example:complies'('urn:example:alice8624', true)). +answer('urn:example:complies'('urn:example:alice8625', true)). +answer('urn:example:complies'('urn:example:alice8626', true)). +answer('urn:example:complies'('urn:example:alice8627', true)). +answer('urn:example:complies'('urn:example:alice8628', true)). +answer('urn:example:complies'('urn:example:alice8629', true)). +answer('urn:example:complies'('urn:example:alice8630', true)). +answer('urn:example:complies'('urn:example:alice8631', true)). +answer('urn:example:complies'('urn:example:alice8632', true)). +answer('urn:example:complies'('urn:example:alice8633', true)). +answer('urn:example:complies'('urn:example:alice8634', true)). +answer('urn:example:complies'('urn:example:alice8635', true)). +answer('urn:example:complies'('urn:example:alice8636', true)). +answer('urn:example:complies'('urn:example:alice8637', true)). +answer('urn:example:complies'('urn:example:alice8638', true)). +answer('urn:example:complies'('urn:example:alice8639', true)). +answer('urn:example:complies'('urn:example:alice8640', true)). +answer('urn:example:complies'('urn:example:alice8641', true)). +answer('urn:example:complies'('urn:example:alice8642', true)). +answer('urn:example:complies'('urn:example:alice8643', true)). +answer('urn:example:complies'('urn:example:alice8644', true)). +answer('urn:example:complies'('urn:example:alice8645', true)). +answer('urn:example:complies'('urn:example:alice8646', true)). +answer('urn:example:complies'('urn:example:alice8647', true)). +answer('urn:example:complies'('urn:example:alice8648', true)). +answer('urn:example:complies'('urn:example:alice8649', true)). +answer('urn:example:complies'('urn:example:alice8650', true)). +answer('urn:example:complies'('urn:example:alice8651', true)). +answer('urn:example:complies'('urn:example:alice8652', true)). +answer('urn:example:complies'('urn:example:alice8653', true)). +answer('urn:example:complies'('urn:example:alice8654', true)). +answer('urn:example:complies'('urn:example:alice8655', true)). +answer('urn:example:complies'('urn:example:alice8656', true)). +answer('urn:example:complies'('urn:example:alice8657', true)). +answer('urn:example:complies'('urn:example:alice8658', true)). +answer('urn:example:complies'('urn:example:alice8659', true)). +answer('urn:example:complies'('urn:example:alice8660', true)). +answer('urn:example:complies'('urn:example:alice8661', true)). +answer('urn:example:complies'('urn:example:alice8662', true)). +answer('urn:example:complies'('urn:example:alice8663', true)). +answer('urn:example:complies'('urn:example:alice8664', true)). +answer('urn:example:complies'('urn:example:alice8665', true)). +answer('urn:example:complies'('urn:example:alice8666', true)). +answer('urn:example:complies'('urn:example:alice8667', true)). +answer('urn:example:complies'('urn:example:alice8668', true)). +answer('urn:example:complies'('urn:example:alice8669', true)). +answer('urn:example:complies'('urn:example:alice8670', true)). +answer('urn:example:complies'('urn:example:alice8671', true)). +answer('urn:example:complies'('urn:example:alice8672', true)). +answer('urn:example:complies'('urn:example:alice8673', true)). +answer('urn:example:complies'('urn:example:alice8674', true)). +answer('urn:example:complies'('urn:example:alice8675', true)). +answer('urn:example:complies'('urn:example:alice8676', true)). +answer('urn:example:complies'('urn:example:alice8677', true)). +answer('urn:example:complies'('urn:example:alice8678', true)). +answer('urn:example:complies'('urn:example:alice8679', true)). +answer('urn:example:complies'('urn:example:alice8680', true)). +answer('urn:example:complies'('urn:example:alice8681', true)). +answer('urn:example:complies'('urn:example:alice8682', true)). +answer('urn:example:complies'('urn:example:alice8683', true)). +answer('urn:example:complies'('urn:example:alice8684', true)). +answer('urn:example:complies'('urn:example:alice8685', true)). +answer('urn:example:complies'('urn:example:alice8686', true)). +answer('urn:example:complies'('urn:example:alice8687', true)). +answer('urn:example:complies'('urn:example:alice8688', true)). +answer('urn:example:complies'('urn:example:alice8689', true)). +answer('urn:example:complies'('urn:example:alice8690', true)). +answer('urn:example:complies'('urn:example:alice8691', true)). +answer('urn:example:complies'('urn:example:alice8692', true)). +answer('urn:example:complies'('urn:example:alice8693', true)). +answer('urn:example:complies'('urn:example:alice8694', true)). +answer('urn:example:complies'('urn:example:alice8695', true)). +answer('urn:example:complies'('urn:example:alice8696', true)). +answer('urn:example:complies'('urn:example:alice8697', true)). +answer('urn:example:complies'('urn:example:alice8698', true)). +answer('urn:example:complies'('urn:example:alice8699', true)). +answer('urn:example:complies'('urn:example:alice8700', true)). +answer('urn:example:complies'('urn:example:alice8701', true)). +answer('urn:example:complies'('urn:example:alice8702', true)). +answer('urn:example:complies'('urn:example:alice8703', true)). +answer('urn:example:complies'('urn:example:alice8704', true)). +answer('urn:example:complies'('urn:example:alice8705', true)). +answer('urn:example:complies'('urn:example:alice8706', true)). +answer('urn:example:complies'('urn:example:alice8707', true)). +answer('urn:example:complies'('urn:example:alice8708', true)). +answer('urn:example:complies'('urn:example:alice8709', true)). +answer('urn:example:complies'('urn:example:alice8710', true)). +answer('urn:example:complies'('urn:example:alice8711', true)). +answer('urn:example:complies'('urn:example:alice8712', true)). +answer('urn:example:complies'('urn:example:alice8713', true)). +answer('urn:example:complies'('urn:example:alice8714', true)). +answer('urn:example:complies'('urn:example:alice8715', true)). +answer('urn:example:complies'('urn:example:alice8716', true)). +answer('urn:example:complies'('urn:example:alice8717', true)). +answer('urn:example:complies'('urn:example:alice8718', true)). +answer('urn:example:complies'('urn:example:alice8719', true)). +answer('urn:example:complies'('urn:example:alice8720', true)). +answer('urn:example:complies'('urn:example:alice8721', true)). +answer('urn:example:complies'('urn:example:alice8722', true)). +answer('urn:example:complies'('urn:example:alice8723', true)). +answer('urn:example:complies'('urn:example:alice8724', true)). +answer('urn:example:complies'('urn:example:alice8725', true)). +answer('urn:example:complies'('urn:example:alice8726', true)). +answer('urn:example:complies'('urn:example:alice8727', true)). +answer('urn:example:complies'('urn:example:alice8728', true)). +answer('urn:example:complies'('urn:example:alice8729', true)). +answer('urn:example:complies'('urn:example:alice8730', true)). +answer('urn:example:complies'('urn:example:alice8731', true)). +answer('urn:example:complies'('urn:example:alice8732', true)). +answer('urn:example:complies'('urn:example:alice8733', true)). +answer('urn:example:complies'('urn:example:alice8734', true)). +answer('urn:example:complies'('urn:example:alice8735', true)). +answer('urn:example:complies'('urn:example:alice8736', true)). +answer('urn:example:complies'('urn:example:alice8737', true)). +answer('urn:example:complies'('urn:example:alice8738', true)). +answer('urn:example:complies'('urn:example:alice8739', true)). +answer('urn:example:complies'('urn:example:alice8740', true)). +answer('urn:example:complies'('urn:example:alice8741', true)). +answer('urn:example:complies'('urn:example:alice8742', true)). +answer('urn:example:complies'('urn:example:alice8743', true)). +answer('urn:example:complies'('urn:example:alice8744', true)). +answer('urn:example:complies'('urn:example:alice8745', true)). +answer('urn:example:complies'('urn:example:alice8746', true)). +answer('urn:example:complies'('urn:example:alice8747', true)). +answer('urn:example:complies'('urn:example:alice8748', true)). +answer('urn:example:complies'('urn:example:alice8749', true)). +answer('urn:example:complies'('urn:example:alice8750', true)). +answer('urn:example:complies'('urn:example:alice8751', true)). +answer('urn:example:complies'('urn:example:alice8752', true)). +answer('urn:example:complies'('urn:example:alice8753', true)). +answer('urn:example:complies'('urn:example:alice8754', true)). +answer('urn:example:complies'('urn:example:alice8755', true)). +answer('urn:example:complies'('urn:example:alice8756', true)). +answer('urn:example:complies'('urn:example:alice8757', true)). +answer('urn:example:complies'('urn:example:alice8758', true)). +answer('urn:example:complies'('urn:example:alice8759', true)). +answer('urn:example:complies'('urn:example:alice8760', true)). +answer('urn:example:complies'('urn:example:alice8761', true)). +answer('urn:example:complies'('urn:example:alice8762', true)). +answer('urn:example:complies'('urn:example:alice8763', true)). +answer('urn:example:complies'('urn:example:alice8764', true)). +answer('urn:example:complies'('urn:example:alice8765', true)). +answer('urn:example:complies'('urn:example:alice8766', true)). +answer('urn:example:complies'('urn:example:alice8767', true)). +answer('urn:example:complies'('urn:example:alice8768', true)). +answer('urn:example:complies'('urn:example:alice8769', true)). +answer('urn:example:complies'('urn:example:alice8770', true)). +answer('urn:example:complies'('urn:example:alice8771', true)). +answer('urn:example:complies'('urn:example:alice8772', true)). +answer('urn:example:complies'('urn:example:alice8773', true)). +answer('urn:example:complies'('urn:example:alice8774', true)). +answer('urn:example:complies'('urn:example:alice8775', true)). +answer('urn:example:complies'('urn:example:alice8776', true)). +answer('urn:example:complies'('urn:example:alice8777', true)). +answer('urn:example:complies'('urn:example:alice8778', true)). +answer('urn:example:complies'('urn:example:alice8779', true)). +answer('urn:example:complies'('urn:example:alice8780', true)). +answer('urn:example:complies'('urn:example:alice8781', true)). +answer('urn:example:complies'('urn:example:alice8782', true)). +answer('urn:example:complies'('urn:example:alice8783', true)). +answer('urn:example:complies'('urn:example:alice8784', true)). +answer('urn:example:complies'('urn:example:alice8785', true)). +answer('urn:example:complies'('urn:example:alice8786', true)). +answer('urn:example:complies'('urn:example:alice8787', true)). +answer('urn:example:complies'('urn:example:alice8788', true)). +answer('urn:example:complies'('urn:example:alice8789', true)). +answer('urn:example:complies'('urn:example:alice8790', true)). +answer('urn:example:complies'('urn:example:alice8791', true)). +answer('urn:example:complies'('urn:example:alice8792', true)). +answer('urn:example:complies'('urn:example:alice8793', true)). +answer('urn:example:complies'('urn:example:alice8794', true)). +answer('urn:example:complies'('urn:example:alice8795', true)). +answer('urn:example:complies'('urn:example:alice8796', true)). +answer('urn:example:complies'('urn:example:alice8797', true)). +answer('urn:example:complies'('urn:example:alice8798', true)). +answer('urn:example:complies'('urn:example:alice8799', true)). +answer('urn:example:complies'('urn:example:alice8800', true)). +answer('urn:example:complies'('urn:example:alice8801', true)). +answer('urn:example:complies'('urn:example:alice8802', true)). +answer('urn:example:complies'('urn:example:alice8803', true)). +answer('urn:example:complies'('urn:example:alice8804', true)). +answer('urn:example:complies'('urn:example:alice8805', true)). +answer('urn:example:complies'('urn:example:alice8806', true)). +answer('urn:example:complies'('urn:example:alice8807', true)). +answer('urn:example:complies'('urn:example:alice8808', true)). +answer('urn:example:complies'('urn:example:alice8809', true)). +answer('urn:example:complies'('urn:example:alice8810', true)). +answer('urn:example:complies'('urn:example:alice8811', true)). +answer('urn:example:complies'('urn:example:alice8812', true)). +answer('urn:example:complies'('urn:example:alice8813', true)). +answer('urn:example:complies'('urn:example:alice8814', true)). +answer('urn:example:complies'('urn:example:alice8815', true)). +answer('urn:example:complies'('urn:example:alice8816', true)). +answer('urn:example:complies'('urn:example:alice8817', true)). +answer('urn:example:complies'('urn:example:alice8818', true)). +answer('urn:example:complies'('urn:example:alice8819', true)). +answer('urn:example:complies'('urn:example:alice8820', true)). +answer('urn:example:complies'('urn:example:alice8821', true)). +answer('urn:example:complies'('urn:example:alice8822', true)). +answer('urn:example:complies'('urn:example:alice8823', true)). +answer('urn:example:complies'('urn:example:alice8824', true)). +answer('urn:example:complies'('urn:example:alice8825', true)). +answer('urn:example:complies'('urn:example:alice8826', true)). +answer('urn:example:complies'('urn:example:alice8827', true)). +answer('urn:example:complies'('urn:example:alice8828', true)). +answer('urn:example:complies'('urn:example:alice8829', true)). +answer('urn:example:complies'('urn:example:alice8830', true)). +answer('urn:example:complies'('urn:example:alice8831', true)). +answer('urn:example:complies'('urn:example:alice8832', true)). +answer('urn:example:complies'('urn:example:alice8833', true)). +answer('urn:example:complies'('urn:example:alice8834', true)). +answer('urn:example:complies'('urn:example:alice8835', true)). +answer('urn:example:complies'('urn:example:alice8836', true)). +answer('urn:example:complies'('urn:example:alice8837', true)). +answer('urn:example:complies'('urn:example:alice8838', true)). +answer('urn:example:complies'('urn:example:alice8839', true)). +answer('urn:example:complies'('urn:example:alice8840', true)). +answer('urn:example:complies'('urn:example:alice8841', true)). +answer('urn:example:complies'('urn:example:alice8842', true)). +answer('urn:example:complies'('urn:example:alice8843', true)). +answer('urn:example:complies'('urn:example:alice8844', true)). +answer('urn:example:complies'('urn:example:alice8845', true)). +answer('urn:example:complies'('urn:example:alice8846', true)). +answer('urn:example:complies'('urn:example:alice8847', true)). +answer('urn:example:complies'('urn:example:alice8848', true)). +answer('urn:example:complies'('urn:example:alice8849', true)). +answer('urn:example:complies'('urn:example:alice8850', true)). +answer('urn:example:complies'('urn:example:alice8851', true)). +answer('urn:example:complies'('urn:example:alice8852', true)). +answer('urn:example:complies'('urn:example:alice8853', true)). +answer('urn:example:complies'('urn:example:alice8854', true)). +answer('urn:example:complies'('urn:example:alice8855', true)). +answer('urn:example:complies'('urn:example:alice8856', true)). +answer('urn:example:complies'('urn:example:alice8857', true)). +answer('urn:example:complies'('urn:example:alice8858', true)). +answer('urn:example:complies'('urn:example:alice8859', true)). +answer('urn:example:complies'('urn:example:alice8860', true)). +answer('urn:example:complies'('urn:example:alice8861', true)). +answer('urn:example:complies'('urn:example:alice8862', true)). +answer('urn:example:complies'('urn:example:alice8863', true)). +answer('urn:example:complies'('urn:example:alice8864', true)). +answer('urn:example:complies'('urn:example:alice8865', true)). +answer('urn:example:complies'('urn:example:alice8866', true)). +answer('urn:example:complies'('urn:example:alice8867', true)). +answer('urn:example:complies'('urn:example:alice8868', true)). +answer('urn:example:complies'('urn:example:alice8869', true)). +answer('urn:example:complies'('urn:example:alice8870', true)). +answer('urn:example:complies'('urn:example:alice8871', true)). +answer('urn:example:complies'('urn:example:alice8872', true)). +answer('urn:example:complies'('urn:example:alice8873', true)). +answer('urn:example:complies'('urn:example:alice8874', true)). +answer('urn:example:complies'('urn:example:alice8875', true)). +answer('urn:example:complies'('urn:example:alice8876', true)). +answer('urn:example:complies'('urn:example:alice8877', true)). +answer('urn:example:complies'('urn:example:alice8878', true)). +answer('urn:example:complies'('urn:example:alice8879', true)). +answer('urn:example:complies'('urn:example:alice8880', true)). +answer('urn:example:complies'('urn:example:alice8881', true)). +answer('urn:example:complies'('urn:example:alice8882', true)). +answer('urn:example:complies'('urn:example:alice8883', true)). +answer('urn:example:complies'('urn:example:alice8884', true)). +answer('urn:example:complies'('urn:example:alice8885', true)). +answer('urn:example:complies'('urn:example:alice8886', true)). +answer('urn:example:complies'('urn:example:alice8887', true)). +answer('urn:example:complies'('urn:example:alice8888', true)). +answer('urn:example:complies'('urn:example:alice8889', true)). +answer('urn:example:complies'('urn:example:alice8890', true)). +answer('urn:example:complies'('urn:example:alice8891', true)). +answer('urn:example:complies'('urn:example:alice8892', true)). +answer('urn:example:complies'('urn:example:alice8893', true)). +answer('urn:example:complies'('urn:example:alice8894', true)). +answer('urn:example:complies'('urn:example:alice8895', true)). +answer('urn:example:complies'('urn:example:alice8896', true)). +answer('urn:example:complies'('urn:example:alice8897', true)). +answer('urn:example:complies'('urn:example:alice8898', true)). +answer('urn:example:complies'('urn:example:alice8899', true)). +answer('urn:example:complies'('urn:example:alice8900', true)). +answer('urn:example:complies'('urn:example:alice8901', true)). +answer('urn:example:complies'('urn:example:alice8902', true)). +answer('urn:example:complies'('urn:example:alice8903', true)). +answer('urn:example:complies'('urn:example:alice8904', true)). +answer('urn:example:complies'('urn:example:alice8905', true)). +answer('urn:example:complies'('urn:example:alice8906', true)). +answer('urn:example:complies'('urn:example:alice8907', true)). +answer('urn:example:complies'('urn:example:alice8908', true)). +answer('urn:example:complies'('urn:example:alice8909', true)). +answer('urn:example:complies'('urn:example:alice8910', true)). +answer('urn:example:complies'('urn:example:alice8911', true)). +answer('urn:example:complies'('urn:example:alice8912', true)). +answer('urn:example:complies'('urn:example:alice8913', true)). +answer('urn:example:complies'('urn:example:alice8914', true)). +answer('urn:example:complies'('urn:example:alice8915', true)). +answer('urn:example:complies'('urn:example:alice8916', true)). +answer('urn:example:complies'('urn:example:alice8917', true)). +answer('urn:example:complies'('urn:example:alice8918', true)). +answer('urn:example:complies'('urn:example:alice8919', true)). +answer('urn:example:complies'('urn:example:alice8920', true)). +answer('urn:example:complies'('urn:example:alice8921', true)). +answer('urn:example:complies'('urn:example:alice8922', true)). +answer('urn:example:complies'('urn:example:alice8923', true)). +answer('urn:example:complies'('urn:example:alice8924', true)). +answer('urn:example:complies'('urn:example:alice8925', true)). +answer('urn:example:complies'('urn:example:alice8926', true)). +answer('urn:example:complies'('urn:example:alice8927', true)). +answer('urn:example:complies'('urn:example:alice8928', true)). +answer('urn:example:complies'('urn:example:alice8929', true)). +answer('urn:example:complies'('urn:example:alice8930', true)). +answer('urn:example:complies'('urn:example:alice8931', true)). +answer('urn:example:complies'('urn:example:alice8932', true)). +answer('urn:example:complies'('urn:example:alice8933', true)). +answer('urn:example:complies'('urn:example:alice8934', true)). +answer('urn:example:complies'('urn:example:alice8935', true)). +answer('urn:example:complies'('urn:example:alice8936', true)). +answer('urn:example:complies'('urn:example:alice8937', true)). +answer('urn:example:complies'('urn:example:alice8938', true)). +answer('urn:example:complies'('urn:example:alice8939', true)). +answer('urn:example:complies'('urn:example:alice8940', true)). +answer('urn:example:complies'('urn:example:alice8941', true)). +answer('urn:example:complies'('urn:example:alice8942', true)). +answer('urn:example:complies'('urn:example:alice8943', true)). +answer('urn:example:complies'('urn:example:alice8944', true)). +answer('urn:example:complies'('urn:example:alice8945', true)). +answer('urn:example:complies'('urn:example:alice8946', true)). +answer('urn:example:complies'('urn:example:alice8947', true)). +answer('urn:example:complies'('urn:example:alice8948', true)). +answer('urn:example:complies'('urn:example:alice8949', true)). +answer('urn:example:complies'('urn:example:alice8950', true)). +answer('urn:example:complies'('urn:example:alice8951', true)). +answer('urn:example:complies'('urn:example:alice8952', true)). +answer('urn:example:complies'('urn:example:alice8953', true)). +answer('urn:example:complies'('urn:example:alice8954', true)). +answer('urn:example:complies'('urn:example:alice8955', true)). +answer('urn:example:complies'('urn:example:alice8956', true)). +answer('urn:example:complies'('urn:example:alice8957', true)). +answer('urn:example:complies'('urn:example:alice8958', true)). +answer('urn:example:complies'('urn:example:alice8959', true)). +answer('urn:example:complies'('urn:example:alice8960', true)). +answer('urn:example:complies'('urn:example:alice8961', true)). +answer('urn:example:complies'('urn:example:alice8962', true)). +answer('urn:example:complies'('urn:example:alice8963', true)). +answer('urn:example:complies'('urn:example:alice8964', true)). +answer('urn:example:complies'('urn:example:alice8965', true)). +answer('urn:example:complies'('urn:example:alice8966', true)). +answer('urn:example:complies'('urn:example:alice8967', true)). +answer('urn:example:complies'('urn:example:alice8968', true)). +answer('urn:example:complies'('urn:example:alice8969', true)). +answer('urn:example:complies'('urn:example:alice8970', true)). +answer('urn:example:complies'('urn:example:alice8971', true)). +answer('urn:example:complies'('urn:example:alice8972', true)). +answer('urn:example:complies'('urn:example:alice8973', true)). +answer('urn:example:complies'('urn:example:alice8974', true)). +answer('urn:example:complies'('urn:example:alice8975', true)). +answer('urn:example:complies'('urn:example:alice8976', true)). +answer('urn:example:complies'('urn:example:alice8977', true)). +answer('urn:example:complies'('urn:example:alice8978', true)). +answer('urn:example:complies'('urn:example:alice8979', true)). +answer('urn:example:complies'('urn:example:alice8980', true)). +answer('urn:example:complies'('urn:example:alice8981', true)). +answer('urn:example:complies'('urn:example:alice8982', true)). +answer('urn:example:complies'('urn:example:alice8983', true)). +answer('urn:example:complies'('urn:example:alice8984', true)). +answer('urn:example:complies'('urn:example:alice8985', true)). +answer('urn:example:complies'('urn:example:alice8986', true)). +answer('urn:example:complies'('urn:example:alice8987', true)). +answer('urn:example:complies'('urn:example:alice8988', true)). +answer('urn:example:complies'('urn:example:alice8989', true)). +answer('urn:example:complies'('urn:example:alice8990', true)). +answer('urn:example:complies'('urn:example:alice8991', true)). +answer('urn:example:complies'('urn:example:alice8992', true)). +answer('urn:example:complies'('urn:example:alice8993', true)). +answer('urn:example:complies'('urn:example:alice8994', true)). +answer('urn:example:complies'('urn:example:alice8995', true)). +answer('urn:example:complies'('urn:example:alice8996', true)). +answer('urn:example:complies'('urn:example:alice8997', true)). +answer('urn:example:complies'('urn:example:alice8998', true)). +answer('urn:example:complies'('urn:example:alice8999', true)). +answer('urn:example:complies'('urn:example:alice9000', true)). +answer('urn:example:complies'('urn:example:alice9001', true)). +answer('urn:example:complies'('urn:example:alice9002', true)). +answer('urn:example:complies'('urn:example:alice9003', true)). +answer('urn:example:complies'('urn:example:alice9004', true)). +answer('urn:example:complies'('urn:example:alice9005', true)). +answer('urn:example:complies'('urn:example:alice9006', true)). +answer('urn:example:complies'('urn:example:alice9007', true)). +answer('urn:example:complies'('urn:example:alice9008', true)). +answer('urn:example:complies'('urn:example:alice9009', true)). +answer('urn:example:complies'('urn:example:alice9010', true)). +answer('urn:example:complies'('urn:example:alice9011', true)). +answer('urn:example:complies'('urn:example:alice9012', true)). +answer('urn:example:complies'('urn:example:alice9013', true)). +answer('urn:example:complies'('urn:example:alice9014', true)). +answer('urn:example:complies'('urn:example:alice9015', true)). +answer('urn:example:complies'('urn:example:alice9016', true)). +answer('urn:example:complies'('urn:example:alice9017', true)). +answer('urn:example:complies'('urn:example:alice9018', true)). +answer('urn:example:complies'('urn:example:alice9019', true)). +answer('urn:example:complies'('urn:example:alice9020', true)). +answer('urn:example:complies'('urn:example:alice9021', true)). +answer('urn:example:complies'('urn:example:alice9022', true)). +answer('urn:example:complies'('urn:example:alice9023', true)). +answer('urn:example:complies'('urn:example:alice9024', true)). +answer('urn:example:complies'('urn:example:alice9025', true)). +answer('urn:example:complies'('urn:example:alice9026', true)). +answer('urn:example:complies'('urn:example:alice9027', true)). +answer('urn:example:complies'('urn:example:alice9028', true)). +answer('urn:example:complies'('urn:example:alice9029', true)). +answer('urn:example:complies'('urn:example:alice9030', true)). +answer('urn:example:complies'('urn:example:alice9031', true)). +answer('urn:example:complies'('urn:example:alice9032', true)). +answer('urn:example:complies'('urn:example:alice9033', true)). +answer('urn:example:complies'('urn:example:alice9034', true)). +answer('urn:example:complies'('urn:example:alice9035', true)). +answer('urn:example:complies'('urn:example:alice9036', true)). +answer('urn:example:complies'('urn:example:alice9037', true)). +answer('urn:example:complies'('urn:example:alice9038', true)). +answer('urn:example:complies'('urn:example:alice9039', true)). +answer('urn:example:complies'('urn:example:alice9040', true)). +answer('urn:example:complies'('urn:example:alice9041', true)). +answer('urn:example:complies'('urn:example:alice9042', true)). +answer('urn:example:complies'('urn:example:alice9043', true)). +answer('urn:example:complies'('urn:example:alice9044', true)). +answer('urn:example:complies'('urn:example:alice9045', true)). +answer('urn:example:complies'('urn:example:alice9046', true)). +answer('urn:example:complies'('urn:example:alice9047', true)). +answer('urn:example:complies'('urn:example:alice9048', true)). +answer('urn:example:complies'('urn:example:alice9049', true)). +answer('urn:example:complies'('urn:example:alice9050', true)). +answer('urn:example:complies'('urn:example:alice9051', true)). +answer('urn:example:complies'('urn:example:alice9052', true)). +answer('urn:example:complies'('urn:example:alice9053', true)). +answer('urn:example:complies'('urn:example:alice9054', true)). +answer('urn:example:complies'('urn:example:alice9055', true)). +answer('urn:example:complies'('urn:example:alice9056', true)). +answer('urn:example:complies'('urn:example:alice9057', true)). +answer('urn:example:complies'('urn:example:alice9058', true)). +answer('urn:example:complies'('urn:example:alice9059', true)). +answer('urn:example:complies'('urn:example:alice9060', true)). +answer('urn:example:complies'('urn:example:alice9061', true)). +answer('urn:example:complies'('urn:example:alice9062', true)). +answer('urn:example:complies'('urn:example:alice9063', true)). +answer('urn:example:complies'('urn:example:alice9064', true)). +answer('urn:example:complies'('urn:example:alice9065', true)). +answer('urn:example:complies'('urn:example:alice9066', true)). +answer('urn:example:complies'('urn:example:alice9067', true)). +answer('urn:example:complies'('urn:example:alice9068', true)). +answer('urn:example:complies'('urn:example:alice9069', true)). +answer('urn:example:complies'('urn:example:alice9070', true)). +answer('urn:example:complies'('urn:example:alice9071', true)). +answer('urn:example:complies'('urn:example:alice9072', true)). +answer('urn:example:complies'('urn:example:alice9073', true)). +answer('urn:example:complies'('urn:example:alice9074', true)). +answer('urn:example:complies'('urn:example:alice9075', true)). +answer('urn:example:complies'('urn:example:alice9076', true)). +answer('urn:example:complies'('urn:example:alice9077', true)). +answer('urn:example:complies'('urn:example:alice9078', true)). +answer('urn:example:complies'('urn:example:alice9079', true)). +answer('urn:example:complies'('urn:example:alice9080', true)). +answer('urn:example:complies'('urn:example:alice9081', true)). +answer('urn:example:complies'('urn:example:alice9082', true)). +answer('urn:example:complies'('urn:example:alice9083', true)). +answer('urn:example:complies'('urn:example:alice9084', true)). +answer('urn:example:complies'('urn:example:alice9085', true)). +answer('urn:example:complies'('urn:example:alice9086', true)). +answer('urn:example:complies'('urn:example:alice9087', true)). +answer('urn:example:complies'('urn:example:alice9088', true)). +answer('urn:example:complies'('urn:example:alice9089', true)). +answer('urn:example:complies'('urn:example:alice9090', true)). +answer('urn:example:complies'('urn:example:alice9091', true)). +answer('urn:example:complies'('urn:example:alice9092', true)). +answer('urn:example:complies'('urn:example:alice9093', true)). +answer('urn:example:complies'('urn:example:alice9094', true)). +answer('urn:example:complies'('urn:example:alice9095', true)). +answer('urn:example:complies'('urn:example:alice9096', true)). +answer('urn:example:complies'('urn:example:alice9097', true)). +answer('urn:example:complies'('urn:example:alice9098', true)). +answer('urn:example:complies'('urn:example:alice9099', true)). +answer('urn:example:complies'('urn:example:alice9100', true)). +answer('urn:example:complies'('urn:example:alice9101', true)). +answer('urn:example:complies'('urn:example:alice9102', true)). +answer('urn:example:complies'('urn:example:alice9103', true)). +answer('urn:example:complies'('urn:example:alice9104', true)). +answer('urn:example:complies'('urn:example:alice9105', true)). +answer('urn:example:complies'('urn:example:alice9106', true)). +answer('urn:example:complies'('urn:example:alice9107', true)). +answer('urn:example:complies'('urn:example:alice9108', true)). +answer('urn:example:complies'('urn:example:alice9109', true)). +answer('urn:example:complies'('urn:example:alice9110', true)). +answer('urn:example:complies'('urn:example:alice9111', true)). +answer('urn:example:complies'('urn:example:alice9112', true)). +answer('urn:example:complies'('urn:example:alice9113', true)). +answer('urn:example:complies'('urn:example:alice9114', true)). +answer('urn:example:complies'('urn:example:alice9115', true)). +answer('urn:example:complies'('urn:example:alice9116', true)). +answer('urn:example:complies'('urn:example:alice9117', true)). +answer('urn:example:complies'('urn:example:alice9118', true)). +answer('urn:example:complies'('urn:example:alice9119', true)). +answer('urn:example:complies'('urn:example:alice9120', true)). +answer('urn:example:complies'('urn:example:alice9121', true)). +answer('urn:example:complies'('urn:example:alice9122', true)). +answer('urn:example:complies'('urn:example:alice9123', true)). +answer('urn:example:complies'('urn:example:alice9124', true)). +answer('urn:example:complies'('urn:example:alice9125', true)). +answer('urn:example:complies'('urn:example:alice9126', true)). +answer('urn:example:complies'('urn:example:alice9127', true)). +answer('urn:example:complies'('urn:example:alice9128', true)). +answer('urn:example:complies'('urn:example:alice9129', true)). +answer('urn:example:complies'('urn:example:alice9130', true)). +answer('urn:example:complies'('urn:example:alice9131', true)). +answer('urn:example:complies'('urn:example:alice9132', true)). +answer('urn:example:complies'('urn:example:alice9133', true)). +answer('urn:example:complies'('urn:example:alice9134', true)). +answer('urn:example:complies'('urn:example:alice9135', true)). +answer('urn:example:complies'('urn:example:alice9136', true)). +answer('urn:example:complies'('urn:example:alice9137', true)). +answer('urn:example:complies'('urn:example:alice9138', true)). +answer('urn:example:complies'('urn:example:alice9139', true)). +answer('urn:example:complies'('urn:example:alice9140', true)). +answer('urn:example:complies'('urn:example:alice9141', true)). +answer('urn:example:complies'('urn:example:alice9142', true)). +answer('urn:example:complies'('urn:example:alice9143', true)). +answer('urn:example:complies'('urn:example:alice9144', true)). +answer('urn:example:complies'('urn:example:alice9145', true)). +answer('urn:example:complies'('urn:example:alice9146', true)). +answer('urn:example:complies'('urn:example:alice9147', true)). +answer('urn:example:complies'('urn:example:alice9148', true)). +answer('urn:example:complies'('urn:example:alice9149', true)). +answer('urn:example:complies'('urn:example:alice9150', true)). +answer('urn:example:complies'('urn:example:alice9151', true)). +answer('urn:example:complies'('urn:example:alice9152', true)). +answer('urn:example:complies'('urn:example:alice9153', true)). +answer('urn:example:complies'('urn:example:alice9154', true)). +answer('urn:example:complies'('urn:example:alice9155', true)). +answer('urn:example:complies'('urn:example:alice9156', true)). +answer('urn:example:complies'('urn:example:alice9157', true)). +answer('urn:example:complies'('urn:example:alice9158', true)). +answer('urn:example:complies'('urn:example:alice9159', true)). +answer('urn:example:complies'('urn:example:alice9160', true)). +answer('urn:example:complies'('urn:example:alice9161', true)). +answer('urn:example:complies'('urn:example:alice9162', true)). +answer('urn:example:complies'('urn:example:alice9163', true)). +answer('urn:example:complies'('urn:example:alice9164', true)). +answer('urn:example:complies'('urn:example:alice9165', true)). +answer('urn:example:complies'('urn:example:alice9166', true)). +answer('urn:example:complies'('urn:example:alice9167', true)). +answer('urn:example:complies'('urn:example:alice9168', true)). +answer('urn:example:complies'('urn:example:alice9169', true)). +answer('urn:example:complies'('urn:example:alice9170', true)). +answer('urn:example:complies'('urn:example:alice9171', true)). +answer('urn:example:complies'('urn:example:alice9172', true)). +answer('urn:example:complies'('urn:example:alice9173', true)). +answer('urn:example:complies'('urn:example:alice9174', true)). +answer('urn:example:complies'('urn:example:alice9175', true)). +answer('urn:example:complies'('urn:example:alice9176', true)). +answer('urn:example:complies'('urn:example:alice9177', true)). +answer('urn:example:complies'('urn:example:alice9178', true)). +answer('urn:example:complies'('urn:example:alice9179', true)). +answer('urn:example:complies'('urn:example:alice9180', true)). +answer('urn:example:complies'('urn:example:alice9181', true)). +answer('urn:example:complies'('urn:example:alice9182', true)). +answer('urn:example:complies'('urn:example:alice9183', true)). +answer('urn:example:complies'('urn:example:alice9184', true)). +answer('urn:example:complies'('urn:example:alice9185', true)). +answer('urn:example:complies'('urn:example:alice9186', true)). +answer('urn:example:complies'('urn:example:alice9187', true)). +answer('urn:example:complies'('urn:example:alice9188', true)). +answer('urn:example:complies'('urn:example:alice9189', true)). +answer('urn:example:complies'('urn:example:alice9190', true)). +answer('urn:example:complies'('urn:example:alice9191', true)). +answer('urn:example:complies'('urn:example:alice9192', true)). +answer('urn:example:complies'('urn:example:alice9193', true)). +answer('urn:example:complies'('urn:example:alice9194', true)). +answer('urn:example:complies'('urn:example:alice9195', true)). +answer('urn:example:complies'('urn:example:alice9196', true)). +answer('urn:example:complies'('urn:example:alice9197', true)). +answer('urn:example:complies'('urn:example:alice9198', true)). +answer('urn:example:complies'('urn:example:alice9199', true)). +answer('urn:example:complies'('urn:example:alice9200', true)). +answer('urn:example:complies'('urn:example:alice9201', true)). +answer('urn:example:complies'('urn:example:alice9202', true)). +answer('urn:example:complies'('urn:example:alice9203', true)). +answer('urn:example:complies'('urn:example:alice9204', true)). +answer('urn:example:complies'('urn:example:alice9205', true)). +answer('urn:example:complies'('urn:example:alice9206', true)). +answer('urn:example:complies'('urn:example:alice9207', true)). +answer('urn:example:complies'('urn:example:alice9208', true)). +answer('urn:example:complies'('urn:example:alice9209', true)). +answer('urn:example:complies'('urn:example:alice9210', true)). +answer('urn:example:complies'('urn:example:alice9211', true)). +answer('urn:example:complies'('urn:example:alice9212', true)). +answer('urn:example:complies'('urn:example:alice9213', true)). +answer('urn:example:complies'('urn:example:alice9214', true)). +answer('urn:example:complies'('urn:example:alice9215', true)). +answer('urn:example:complies'('urn:example:alice9216', true)). +answer('urn:example:complies'('urn:example:alice9217', true)). +answer('urn:example:complies'('urn:example:alice9218', true)). +answer('urn:example:complies'('urn:example:alice9219', true)). +answer('urn:example:complies'('urn:example:alice9220', true)). +answer('urn:example:complies'('urn:example:alice9221', true)). +answer('urn:example:complies'('urn:example:alice9222', true)). +answer('urn:example:complies'('urn:example:alice9223', true)). +answer('urn:example:complies'('urn:example:alice9224', true)). +answer('urn:example:complies'('urn:example:alice9225', true)). +answer('urn:example:complies'('urn:example:alice9226', true)). +answer('urn:example:complies'('urn:example:alice9227', true)). +answer('urn:example:complies'('urn:example:alice9228', true)). +answer('urn:example:complies'('urn:example:alice9229', true)). +answer('urn:example:complies'('urn:example:alice9230', true)). +answer('urn:example:complies'('urn:example:alice9231', true)). +answer('urn:example:complies'('urn:example:alice9232', true)). +answer('urn:example:complies'('urn:example:alice9233', true)). +answer('urn:example:complies'('urn:example:alice9234', true)). +answer('urn:example:complies'('urn:example:alice9235', true)). +answer('urn:example:complies'('urn:example:alice9236', true)). +answer('urn:example:complies'('urn:example:alice9237', true)). +answer('urn:example:complies'('urn:example:alice9238', true)). +answer('urn:example:complies'('urn:example:alice9239', true)). +answer('urn:example:complies'('urn:example:alice9240', true)). +answer('urn:example:complies'('urn:example:alice9241', true)). +answer('urn:example:complies'('urn:example:alice9242', true)). +answer('urn:example:complies'('urn:example:alice9243', true)). +answer('urn:example:complies'('urn:example:alice9244', true)). +answer('urn:example:complies'('urn:example:alice9245', true)). +answer('urn:example:complies'('urn:example:alice9246', true)). +answer('urn:example:complies'('urn:example:alice9247', true)). +answer('urn:example:complies'('urn:example:alice9248', true)). +answer('urn:example:complies'('urn:example:alice9249', true)). +answer('urn:example:complies'('urn:example:alice9250', true)). +answer('urn:example:complies'('urn:example:alice9251', true)). +answer('urn:example:complies'('urn:example:alice9252', true)). +answer('urn:example:complies'('urn:example:alice9253', true)). +answer('urn:example:complies'('urn:example:alice9254', true)). +answer('urn:example:complies'('urn:example:alice9255', true)). +answer('urn:example:complies'('urn:example:alice9256', true)). +answer('urn:example:complies'('urn:example:alice9257', true)). +answer('urn:example:complies'('urn:example:alice9258', true)). +answer('urn:example:complies'('urn:example:alice9259', true)). +answer('urn:example:complies'('urn:example:alice9260', true)). +answer('urn:example:complies'('urn:example:alice9261', true)). +answer('urn:example:complies'('urn:example:alice9262', true)). +answer('urn:example:complies'('urn:example:alice9263', true)). +answer('urn:example:complies'('urn:example:alice9264', true)). +answer('urn:example:complies'('urn:example:alice9265', true)). +answer('urn:example:complies'('urn:example:alice9266', true)). +answer('urn:example:complies'('urn:example:alice9267', true)). +answer('urn:example:complies'('urn:example:alice9268', true)). +answer('urn:example:complies'('urn:example:alice9269', true)). +answer('urn:example:complies'('urn:example:alice9270', true)). +answer('urn:example:complies'('urn:example:alice9271', true)). +answer('urn:example:complies'('urn:example:alice9272', true)). +answer('urn:example:complies'('urn:example:alice9273', true)). +answer('urn:example:complies'('urn:example:alice9274', true)). +answer('urn:example:complies'('urn:example:alice9275', true)). +answer('urn:example:complies'('urn:example:alice9276', true)). +answer('urn:example:complies'('urn:example:alice9277', true)). +answer('urn:example:complies'('urn:example:alice9278', true)). +answer('urn:example:complies'('urn:example:alice9279', true)). +answer('urn:example:complies'('urn:example:alice9280', true)). +answer('urn:example:complies'('urn:example:alice9281', true)). +answer('urn:example:complies'('urn:example:alice9282', true)). +answer('urn:example:complies'('urn:example:alice9283', true)). +answer('urn:example:complies'('urn:example:alice9284', true)). +answer('urn:example:complies'('urn:example:alice9285', true)). +answer('urn:example:complies'('urn:example:alice9286', true)). +answer('urn:example:complies'('urn:example:alice9287', true)). +answer('urn:example:complies'('urn:example:alice9288', true)). +answer('urn:example:complies'('urn:example:alice9289', true)). +answer('urn:example:complies'('urn:example:alice9290', true)). +answer('urn:example:complies'('urn:example:alice9291', true)). +answer('urn:example:complies'('urn:example:alice9292', true)). +answer('urn:example:complies'('urn:example:alice9293', true)). +answer('urn:example:complies'('urn:example:alice9294', true)). +answer('urn:example:complies'('urn:example:alice9295', true)). +answer('urn:example:complies'('urn:example:alice9296', true)). +answer('urn:example:complies'('urn:example:alice9297', true)). +answer('urn:example:complies'('urn:example:alice9298', true)). +answer('urn:example:complies'('urn:example:alice9299', true)). +answer('urn:example:complies'('urn:example:alice9300', true)). +answer('urn:example:complies'('urn:example:alice9301', true)). +answer('urn:example:complies'('urn:example:alice9302', true)). +answer('urn:example:complies'('urn:example:alice9303', true)). +answer('urn:example:complies'('urn:example:alice9304', true)). +answer('urn:example:complies'('urn:example:alice9305', true)). +answer('urn:example:complies'('urn:example:alice9306', true)). +answer('urn:example:complies'('urn:example:alice9307', true)). +answer('urn:example:complies'('urn:example:alice9308', true)). +answer('urn:example:complies'('urn:example:alice9309', true)). +answer('urn:example:complies'('urn:example:alice9310', true)). +answer('urn:example:complies'('urn:example:alice9311', true)). +answer('urn:example:complies'('urn:example:alice9312', true)). +answer('urn:example:complies'('urn:example:alice9313', true)). +answer('urn:example:complies'('urn:example:alice9314', true)). +answer('urn:example:complies'('urn:example:alice9315', true)). +answer('urn:example:complies'('urn:example:alice9316', true)). +answer('urn:example:complies'('urn:example:alice9317', true)). +answer('urn:example:complies'('urn:example:alice9318', true)). +answer('urn:example:complies'('urn:example:alice9319', true)). +answer('urn:example:complies'('urn:example:alice9320', true)). +answer('urn:example:complies'('urn:example:alice9321', true)). +answer('urn:example:complies'('urn:example:alice9322', true)). +answer('urn:example:complies'('urn:example:alice9323', true)). +answer('urn:example:complies'('urn:example:alice9324', true)). +answer('urn:example:complies'('urn:example:alice9325', true)). +answer('urn:example:complies'('urn:example:alice9326', true)). +answer('urn:example:complies'('urn:example:alice9327', true)). +answer('urn:example:complies'('urn:example:alice9328', true)). +answer('urn:example:complies'('urn:example:alice9329', true)). +answer('urn:example:complies'('urn:example:alice9330', true)). +answer('urn:example:complies'('urn:example:alice9331', true)). +answer('urn:example:complies'('urn:example:alice9332', true)). +answer('urn:example:complies'('urn:example:alice9333', true)). +answer('urn:example:complies'('urn:example:alice9334', true)). +answer('urn:example:complies'('urn:example:alice9335', true)). +answer('urn:example:complies'('urn:example:alice9336', true)). +answer('urn:example:complies'('urn:example:alice9337', true)). +answer('urn:example:complies'('urn:example:alice9338', true)). +answer('urn:example:complies'('urn:example:alice9339', true)). +answer('urn:example:complies'('urn:example:alice9340', true)). +answer('urn:example:complies'('urn:example:alice9341', true)). +answer('urn:example:complies'('urn:example:alice9342', true)). +answer('urn:example:complies'('urn:example:alice9343', true)). +answer('urn:example:complies'('urn:example:alice9344', true)). +answer('urn:example:complies'('urn:example:alice9345', true)). +answer('urn:example:complies'('urn:example:alice9346', true)). +answer('urn:example:complies'('urn:example:alice9347', true)). +answer('urn:example:complies'('urn:example:alice9348', true)). +answer('urn:example:complies'('urn:example:alice9349', true)). +answer('urn:example:complies'('urn:example:alice9350', true)). +answer('urn:example:complies'('urn:example:alice9351', true)). +answer('urn:example:complies'('urn:example:alice9352', true)). +answer('urn:example:complies'('urn:example:alice9353', true)). +answer('urn:example:complies'('urn:example:alice9354', true)). +answer('urn:example:complies'('urn:example:alice9355', true)). +answer('urn:example:complies'('urn:example:alice9356', true)). +answer('urn:example:complies'('urn:example:alice9357', true)). +answer('urn:example:complies'('urn:example:alice9358', true)). +answer('urn:example:complies'('urn:example:alice9359', true)). +answer('urn:example:complies'('urn:example:alice9360', true)). +answer('urn:example:complies'('urn:example:alice9361', true)). +answer('urn:example:complies'('urn:example:alice9362', true)). +answer('urn:example:complies'('urn:example:alice9363', true)). +answer('urn:example:complies'('urn:example:alice9364', true)). +answer('urn:example:complies'('urn:example:alice9365', true)). +answer('urn:example:complies'('urn:example:alice9366', true)). +answer('urn:example:complies'('urn:example:alice9367', true)). +answer('urn:example:complies'('urn:example:alice9368', true)). +answer('urn:example:complies'('urn:example:alice9369', true)). +answer('urn:example:complies'('urn:example:alice9370', true)). +answer('urn:example:complies'('urn:example:alice9371', true)). +answer('urn:example:complies'('urn:example:alice9372', true)). +answer('urn:example:complies'('urn:example:alice9373', true)). +answer('urn:example:complies'('urn:example:alice9374', true)). +answer('urn:example:complies'('urn:example:alice9375', true)). +answer('urn:example:complies'('urn:example:alice9376', true)). +answer('urn:example:complies'('urn:example:alice9377', true)). +answer('urn:example:complies'('urn:example:alice9378', true)). +answer('urn:example:complies'('urn:example:alice9379', true)). +answer('urn:example:complies'('urn:example:alice9380', true)). +answer('urn:example:complies'('urn:example:alice9381', true)). +answer('urn:example:complies'('urn:example:alice9382', true)). +answer('urn:example:complies'('urn:example:alice9383', true)). +answer('urn:example:complies'('urn:example:alice9384', true)). +answer('urn:example:complies'('urn:example:alice9385', true)). +answer('urn:example:complies'('urn:example:alice9386', true)). +answer('urn:example:complies'('urn:example:alice9387', true)). +answer('urn:example:complies'('urn:example:alice9388', true)). +answer('urn:example:complies'('urn:example:alice9389', true)). +answer('urn:example:complies'('urn:example:alice9390', true)). +answer('urn:example:complies'('urn:example:alice9391', true)). +answer('urn:example:complies'('urn:example:alice9392', true)). +answer('urn:example:complies'('urn:example:alice9393', true)). +answer('urn:example:complies'('urn:example:alice9394', true)). +answer('urn:example:complies'('urn:example:alice9395', true)). +answer('urn:example:complies'('urn:example:alice9396', true)). +answer('urn:example:complies'('urn:example:alice9397', true)). +answer('urn:example:complies'('urn:example:alice9398', true)). +answer('urn:example:complies'('urn:example:alice9399', true)). +answer('urn:example:complies'('urn:example:alice9400', true)). +answer('urn:example:complies'('urn:example:alice9401', true)). +answer('urn:example:complies'('urn:example:alice9402', true)). +answer('urn:example:complies'('urn:example:alice9403', true)). +answer('urn:example:complies'('urn:example:alice9404', true)). +answer('urn:example:complies'('urn:example:alice9405', true)). +answer('urn:example:complies'('urn:example:alice9406', true)). +answer('urn:example:complies'('urn:example:alice9407', true)). +answer('urn:example:complies'('urn:example:alice9408', true)). +answer('urn:example:complies'('urn:example:alice9409', true)). +answer('urn:example:complies'('urn:example:alice9410', true)). +answer('urn:example:complies'('urn:example:alice9411', true)). +answer('urn:example:complies'('urn:example:alice9412', true)). +answer('urn:example:complies'('urn:example:alice9413', true)). +answer('urn:example:complies'('urn:example:alice9414', true)). +answer('urn:example:complies'('urn:example:alice9415', true)). +answer('urn:example:complies'('urn:example:alice9416', true)). +answer('urn:example:complies'('urn:example:alice9417', true)). +answer('urn:example:complies'('urn:example:alice9418', true)). +answer('urn:example:complies'('urn:example:alice9419', true)). +answer('urn:example:complies'('urn:example:alice9420', true)). +answer('urn:example:complies'('urn:example:alice9421', true)). +answer('urn:example:complies'('urn:example:alice9422', true)). +answer('urn:example:complies'('urn:example:alice9423', true)). +answer('urn:example:complies'('urn:example:alice9424', true)). +answer('urn:example:complies'('urn:example:alice9425', true)). +answer('urn:example:complies'('urn:example:alice9426', true)). +answer('urn:example:complies'('urn:example:alice9427', true)). +answer('urn:example:complies'('urn:example:alice9428', true)). +answer('urn:example:complies'('urn:example:alice9429', true)). +answer('urn:example:complies'('urn:example:alice9430', true)). +answer('urn:example:complies'('urn:example:alice9431', true)). +answer('urn:example:complies'('urn:example:alice9432', true)). +answer('urn:example:complies'('urn:example:alice9433', true)). +answer('urn:example:complies'('urn:example:alice9434', true)). +answer('urn:example:complies'('urn:example:alice9435', true)). +answer('urn:example:complies'('urn:example:alice9436', true)). +answer('urn:example:complies'('urn:example:alice9437', true)). +answer('urn:example:complies'('urn:example:alice9438', true)). +answer('urn:example:complies'('urn:example:alice9439', true)). +answer('urn:example:complies'('urn:example:alice9440', true)). +answer('urn:example:complies'('urn:example:alice9441', true)). +answer('urn:example:complies'('urn:example:alice9442', true)). +answer('urn:example:complies'('urn:example:alice9443', true)). +answer('urn:example:complies'('urn:example:alice9444', true)). +answer('urn:example:complies'('urn:example:alice9445', true)). +answer('urn:example:complies'('urn:example:alice9446', true)). +answer('urn:example:complies'('urn:example:alice9447', true)). +answer('urn:example:complies'('urn:example:alice9448', true)). +answer('urn:example:complies'('urn:example:alice9449', true)). +answer('urn:example:complies'('urn:example:alice9450', true)). +answer('urn:example:complies'('urn:example:alice9451', true)). +answer('urn:example:complies'('urn:example:alice9452', true)). +answer('urn:example:complies'('urn:example:alice9453', true)). +answer('urn:example:complies'('urn:example:alice9454', true)). +answer('urn:example:complies'('urn:example:alice9455', true)). +answer('urn:example:complies'('urn:example:alice9456', true)). +answer('urn:example:complies'('urn:example:alice9457', true)). +answer('urn:example:complies'('urn:example:alice9458', true)). +answer('urn:example:complies'('urn:example:alice9459', true)). +answer('urn:example:complies'('urn:example:alice9460', true)). +answer('urn:example:complies'('urn:example:alice9461', true)). +answer('urn:example:complies'('urn:example:alice9462', true)). +answer('urn:example:complies'('urn:example:alice9463', true)). +answer('urn:example:complies'('urn:example:alice9464', true)). +answer('urn:example:complies'('urn:example:alice9465', true)). +answer('urn:example:complies'('urn:example:alice9466', true)). +answer('urn:example:complies'('urn:example:alice9467', true)). +answer('urn:example:complies'('urn:example:alice9468', true)). +answer('urn:example:complies'('urn:example:alice9469', true)). +answer('urn:example:complies'('urn:example:alice9470', true)). +answer('urn:example:complies'('urn:example:alice9471', true)). +answer('urn:example:complies'('urn:example:alice9472', true)). +answer('urn:example:complies'('urn:example:alice9473', true)). +answer('urn:example:complies'('urn:example:alice9474', true)). +answer('urn:example:complies'('urn:example:alice9475', true)). +answer('urn:example:complies'('urn:example:alice9476', true)). +answer('urn:example:complies'('urn:example:alice9477', true)). +answer('urn:example:complies'('urn:example:alice9478', true)). +answer('urn:example:complies'('urn:example:alice9479', true)). +answer('urn:example:complies'('urn:example:alice9480', true)). +answer('urn:example:complies'('urn:example:alice9481', true)). +answer('urn:example:complies'('urn:example:alice9482', true)). +answer('urn:example:complies'('urn:example:alice9483', true)). +answer('urn:example:complies'('urn:example:alice9484', true)). +answer('urn:example:complies'('urn:example:alice9485', true)). +answer('urn:example:complies'('urn:example:alice9486', true)). +answer('urn:example:complies'('urn:example:alice9487', true)). +answer('urn:example:complies'('urn:example:alice9488', true)). +answer('urn:example:complies'('urn:example:alice9489', true)). +answer('urn:example:complies'('urn:example:alice9490', true)). +answer('urn:example:complies'('urn:example:alice9491', true)). +answer('urn:example:complies'('urn:example:alice9492', true)). +answer('urn:example:complies'('urn:example:alice9493', true)). +answer('urn:example:complies'('urn:example:alice9494', true)). +answer('urn:example:complies'('urn:example:alice9495', true)). +answer('urn:example:complies'('urn:example:alice9496', true)). +answer('urn:example:complies'('urn:example:alice9497', true)). +answer('urn:example:complies'('urn:example:alice9498', true)). +answer('urn:example:complies'('urn:example:alice9499', true)). +answer('urn:example:complies'('urn:example:alice9500', true)). +answer('urn:example:complies'('urn:example:alice9501', true)). +answer('urn:example:complies'('urn:example:alice9502', true)). +answer('urn:example:complies'('urn:example:alice9503', true)). +answer('urn:example:complies'('urn:example:alice9504', true)). +answer('urn:example:complies'('urn:example:alice9505', true)). +answer('urn:example:complies'('urn:example:alice9506', true)). +answer('urn:example:complies'('urn:example:alice9507', true)). +answer('urn:example:complies'('urn:example:alice9508', true)). +answer('urn:example:complies'('urn:example:alice9509', true)). +answer('urn:example:complies'('urn:example:alice9510', true)). +answer('urn:example:complies'('urn:example:alice9511', true)). +answer('urn:example:complies'('urn:example:alice9512', true)). +answer('urn:example:complies'('urn:example:alice9513', true)). +answer('urn:example:complies'('urn:example:alice9514', true)). +answer('urn:example:complies'('urn:example:alice9515', true)). +answer('urn:example:complies'('urn:example:alice9516', true)). +answer('urn:example:complies'('urn:example:alice9517', true)). +answer('urn:example:complies'('urn:example:alice9518', true)). +answer('urn:example:complies'('urn:example:alice9519', true)). +answer('urn:example:complies'('urn:example:alice9520', true)). +answer('urn:example:complies'('urn:example:alice9521', true)). +answer('urn:example:complies'('urn:example:alice9522', true)). +answer('urn:example:complies'('urn:example:alice9523', true)). +answer('urn:example:complies'('urn:example:alice9524', true)). +answer('urn:example:complies'('urn:example:alice9525', true)). +answer('urn:example:complies'('urn:example:alice9526', true)). +answer('urn:example:complies'('urn:example:alice9527', true)). +answer('urn:example:complies'('urn:example:alice9528', true)). +answer('urn:example:complies'('urn:example:alice9529', true)). +answer('urn:example:complies'('urn:example:alice9530', true)). +answer('urn:example:complies'('urn:example:alice9531', true)). +answer('urn:example:complies'('urn:example:alice9532', true)). +answer('urn:example:complies'('urn:example:alice9533', true)). +answer('urn:example:complies'('urn:example:alice9534', true)). +answer('urn:example:complies'('urn:example:alice9535', true)). +answer('urn:example:complies'('urn:example:alice9536', true)). +answer('urn:example:complies'('urn:example:alice9537', true)). +answer('urn:example:complies'('urn:example:alice9538', true)). +answer('urn:example:complies'('urn:example:alice9539', true)). +answer('urn:example:complies'('urn:example:alice9540', true)). +answer('urn:example:complies'('urn:example:alice9541', true)). +answer('urn:example:complies'('urn:example:alice9542', true)). +answer('urn:example:complies'('urn:example:alice9543', true)). +answer('urn:example:complies'('urn:example:alice9544', true)). +answer('urn:example:complies'('urn:example:alice9545', true)). +answer('urn:example:complies'('urn:example:alice9546', true)). +answer('urn:example:complies'('urn:example:alice9547', true)). +answer('urn:example:complies'('urn:example:alice9548', true)). +answer('urn:example:complies'('urn:example:alice9549', true)). +answer('urn:example:complies'('urn:example:alice9550', true)). +answer('urn:example:complies'('urn:example:alice9551', true)). +answer('urn:example:complies'('urn:example:alice9552', true)). +answer('urn:example:complies'('urn:example:alice9553', true)). +answer('urn:example:complies'('urn:example:alice9554', true)). +answer('urn:example:complies'('urn:example:alice9555', true)). +answer('urn:example:complies'('urn:example:alice9556', true)). +answer('urn:example:complies'('urn:example:alice9557', true)). +answer('urn:example:complies'('urn:example:alice9558', true)). +answer('urn:example:complies'('urn:example:alice9559', true)). +answer('urn:example:complies'('urn:example:alice9560', true)). +answer('urn:example:complies'('urn:example:alice9561', true)). +answer('urn:example:complies'('urn:example:alice9562', true)). +answer('urn:example:complies'('urn:example:alice9563', true)). +answer('urn:example:complies'('urn:example:alice9564', true)). +answer('urn:example:complies'('urn:example:alice9565', true)). +answer('urn:example:complies'('urn:example:alice9566', true)). +answer('urn:example:complies'('urn:example:alice9567', true)). +answer('urn:example:complies'('urn:example:alice9568', true)). +answer('urn:example:complies'('urn:example:alice9569', true)). +answer('urn:example:complies'('urn:example:alice9570', true)). +answer('urn:example:complies'('urn:example:alice9571', true)). +answer('urn:example:complies'('urn:example:alice9572', true)). +answer('urn:example:complies'('urn:example:alice9573', true)). +answer('urn:example:complies'('urn:example:alice9574', true)). +answer('urn:example:complies'('urn:example:alice9575', true)). +answer('urn:example:complies'('urn:example:alice9576', true)). +answer('urn:example:complies'('urn:example:alice9577', true)). +answer('urn:example:complies'('urn:example:alice9578', true)). +answer('urn:example:complies'('urn:example:alice9579', true)). +answer('urn:example:complies'('urn:example:alice9580', true)). +answer('urn:example:complies'('urn:example:alice9581', true)). +answer('urn:example:complies'('urn:example:alice9582', true)). +answer('urn:example:complies'('urn:example:alice9583', true)). +answer('urn:example:complies'('urn:example:alice9584', true)). +answer('urn:example:complies'('urn:example:alice9585', true)). +answer('urn:example:complies'('urn:example:alice9586', true)). +answer('urn:example:complies'('urn:example:alice9587', true)). +answer('urn:example:complies'('urn:example:alice9588', true)). +answer('urn:example:complies'('urn:example:alice9589', true)). +answer('urn:example:complies'('urn:example:alice9590', true)). +answer('urn:example:complies'('urn:example:alice9591', true)). +answer('urn:example:complies'('urn:example:alice9592', true)). +answer('urn:example:complies'('urn:example:alice9593', true)). +answer('urn:example:complies'('urn:example:alice9594', true)). +answer('urn:example:complies'('urn:example:alice9595', true)). +answer('urn:example:complies'('urn:example:alice9596', true)). +answer('urn:example:complies'('urn:example:alice9597', true)). +answer('urn:example:complies'('urn:example:alice9598', true)). +answer('urn:example:complies'('urn:example:alice9599', true)). +answer('urn:example:complies'('urn:example:alice9600', true)). +answer('urn:example:complies'('urn:example:alice9601', true)). +answer('urn:example:complies'('urn:example:alice9602', true)). +answer('urn:example:complies'('urn:example:alice9603', true)). +answer('urn:example:complies'('urn:example:alice9604', true)). +answer('urn:example:complies'('urn:example:alice9605', true)). +answer('urn:example:complies'('urn:example:alice9606', true)). +answer('urn:example:complies'('urn:example:alice9607', true)). +answer('urn:example:complies'('urn:example:alice9608', true)). +answer('urn:example:complies'('urn:example:alice9609', true)). +answer('urn:example:complies'('urn:example:alice9610', true)). +answer('urn:example:complies'('urn:example:alice9611', true)). +answer('urn:example:complies'('urn:example:alice9612', true)). +answer('urn:example:complies'('urn:example:alice9613', true)). +answer('urn:example:complies'('urn:example:alice9614', true)). +answer('urn:example:complies'('urn:example:alice9615', true)). +answer('urn:example:complies'('urn:example:alice9616', true)). +answer('urn:example:complies'('urn:example:alice9617', true)). +answer('urn:example:complies'('urn:example:alice9618', true)). +answer('urn:example:complies'('urn:example:alice9619', true)). +answer('urn:example:complies'('urn:example:alice9620', true)). +answer('urn:example:complies'('urn:example:alice9621', true)). +answer('urn:example:complies'('urn:example:alice9622', true)). +answer('urn:example:complies'('urn:example:alice9623', true)). +answer('urn:example:complies'('urn:example:alice9624', true)). +answer('urn:example:complies'('urn:example:alice9625', true)). +answer('urn:example:complies'('urn:example:alice9626', true)). +answer('urn:example:complies'('urn:example:alice9627', true)). +answer('urn:example:complies'('urn:example:alice9628', true)). +answer('urn:example:complies'('urn:example:alice9629', true)). +answer('urn:example:complies'('urn:example:alice9630', true)). +answer('urn:example:complies'('urn:example:alice9631', true)). +answer('urn:example:complies'('urn:example:alice9632', true)). +answer('urn:example:complies'('urn:example:alice9633', true)). +answer('urn:example:complies'('urn:example:alice9634', true)). +answer('urn:example:complies'('urn:example:alice9635', true)). +answer('urn:example:complies'('urn:example:alice9636', true)). +answer('urn:example:complies'('urn:example:alice9637', true)). +answer('urn:example:complies'('urn:example:alice9638', true)). +answer('urn:example:complies'('urn:example:alice9639', true)). +answer('urn:example:complies'('urn:example:alice9640', true)). +answer('urn:example:complies'('urn:example:alice9641', true)). +answer('urn:example:complies'('urn:example:alice9642', true)). +answer('urn:example:complies'('urn:example:alice9643', true)). +answer('urn:example:complies'('urn:example:alice9644', true)). +answer('urn:example:complies'('urn:example:alice9645', true)). +answer('urn:example:complies'('urn:example:alice9646', true)). +answer('urn:example:complies'('urn:example:alice9647', true)). +answer('urn:example:complies'('urn:example:alice9648', true)). +answer('urn:example:complies'('urn:example:alice9649', true)). +answer('urn:example:complies'('urn:example:alice9650', true)). +answer('urn:example:complies'('urn:example:alice9651', true)). +answer('urn:example:complies'('urn:example:alice9652', true)). +answer('urn:example:complies'('urn:example:alice9653', true)). +answer('urn:example:complies'('urn:example:alice9654', true)). +answer('urn:example:complies'('urn:example:alice9655', true)). +answer('urn:example:complies'('urn:example:alice9656', true)). +answer('urn:example:complies'('urn:example:alice9657', true)). +answer('urn:example:complies'('urn:example:alice9658', true)). +answer('urn:example:complies'('urn:example:alice9659', true)). +answer('urn:example:complies'('urn:example:alice9660', true)). +answer('urn:example:complies'('urn:example:alice9661', true)). +answer('urn:example:complies'('urn:example:alice9662', true)). +answer('urn:example:complies'('urn:example:alice9663', true)). +answer('urn:example:complies'('urn:example:alice9664', true)). +answer('urn:example:complies'('urn:example:alice9665', true)). +answer('urn:example:complies'('urn:example:alice9666', true)). +answer('urn:example:complies'('urn:example:alice9667', true)). +answer('urn:example:complies'('urn:example:alice9668', true)). +answer('urn:example:complies'('urn:example:alice9669', true)). +answer('urn:example:complies'('urn:example:alice9670', true)). +answer('urn:example:complies'('urn:example:alice9671', true)). +answer('urn:example:complies'('urn:example:alice9672', true)). +answer('urn:example:complies'('urn:example:alice9673', true)). +answer('urn:example:complies'('urn:example:alice9674', true)). +answer('urn:example:complies'('urn:example:alice9675', true)). +answer('urn:example:complies'('urn:example:alice9676', true)). +answer('urn:example:complies'('urn:example:alice9677', true)). +answer('urn:example:complies'('urn:example:alice9678', true)). +answer('urn:example:complies'('urn:example:alice9679', true)). +answer('urn:example:complies'('urn:example:alice9680', true)). +answer('urn:example:complies'('urn:example:alice9681', true)). +answer('urn:example:complies'('urn:example:alice9682', true)). +answer('urn:example:complies'('urn:example:alice9683', true)). +answer('urn:example:complies'('urn:example:alice9684', true)). +answer('urn:example:complies'('urn:example:alice9685', true)). +answer('urn:example:complies'('urn:example:alice9686', true)). +answer('urn:example:complies'('urn:example:alice9687', true)). +answer('urn:example:complies'('urn:example:alice9688', true)). +answer('urn:example:complies'('urn:example:alice9689', true)). +answer('urn:example:complies'('urn:example:alice9690', true)). +answer('urn:example:complies'('urn:example:alice9691', true)). +answer('urn:example:complies'('urn:example:alice9692', true)). +answer('urn:example:complies'('urn:example:alice9693', true)). +answer('urn:example:complies'('urn:example:alice9694', true)). +answer('urn:example:complies'('urn:example:alice9695', true)). +answer('urn:example:complies'('urn:example:alice9696', true)). +answer('urn:example:complies'('urn:example:alice9697', true)). +answer('urn:example:complies'('urn:example:alice9698', true)). +answer('urn:example:complies'('urn:example:alice9699', true)). +answer('urn:example:complies'('urn:example:alice9700', true)). +answer('urn:example:complies'('urn:example:alice9701', true)). +answer('urn:example:complies'('urn:example:alice9702', true)). +answer('urn:example:complies'('urn:example:alice9703', true)). +answer('urn:example:complies'('urn:example:alice9704', true)). +answer('urn:example:complies'('urn:example:alice9705', true)). +answer('urn:example:complies'('urn:example:alice9706', true)). +answer('urn:example:complies'('urn:example:alice9707', true)). +answer('urn:example:complies'('urn:example:alice9708', true)). +answer('urn:example:complies'('urn:example:alice9709', true)). +answer('urn:example:complies'('urn:example:alice9710', true)). +answer('urn:example:complies'('urn:example:alice9711', true)). +answer('urn:example:complies'('urn:example:alice9712', true)). +answer('urn:example:complies'('urn:example:alice9713', true)). +answer('urn:example:complies'('urn:example:alice9714', true)). +answer('urn:example:complies'('urn:example:alice9715', true)). +answer('urn:example:complies'('urn:example:alice9716', true)). +answer('urn:example:complies'('urn:example:alice9717', true)). +answer('urn:example:complies'('urn:example:alice9718', true)). +answer('urn:example:complies'('urn:example:alice9719', true)). +answer('urn:example:complies'('urn:example:alice9720', true)). +answer('urn:example:complies'('urn:example:alice9721', true)). +answer('urn:example:complies'('urn:example:alice9722', true)). +answer('urn:example:complies'('urn:example:alice9723', true)). +answer('urn:example:complies'('urn:example:alice9724', true)). +answer('urn:example:complies'('urn:example:alice9725', true)). +answer('urn:example:complies'('urn:example:alice9726', true)). +answer('urn:example:complies'('urn:example:alice9727', true)). +answer('urn:example:complies'('urn:example:alice9728', true)). +answer('urn:example:complies'('urn:example:alice9729', true)). +answer('urn:example:complies'('urn:example:alice9730', true)). +answer('urn:example:complies'('urn:example:alice9731', true)). +answer('urn:example:complies'('urn:example:alice9732', true)). +answer('urn:example:complies'('urn:example:alice9733', true)). +answer('urn:example:complies'('urn:example:alice9734', true)). +answer('urn:example:complies'('urn:example:alice9735', true)). +answer('urn:example:complies'('urn:example:alice9736', true)). +answer('urn:example:complies'('urn:example:alice9737', true)). +answer('urn:example:complies'('urn:example:alice9738', true)). +answer('urn:example:complies'('urn:example:alice9739', true)). +answer('urn:example:complies'('urn:example:alice9740', true)). +answer('urn:example:complies'('urn:example:alice9741', true)). +answer('urn:example:complies'('urn:example:alice9742', true)). +answer('urn:example:complies'('urn:example:alice9743', true)). +answer('urn:example:complies'('urn:example:alice9744', true)). +answer('urn:example:complies'('urn:example:alice9745', true)). +answer('urn:example:complies'('urn:example:alice9746', true)). +answer('urn:example:complies'('urn:example:alice9747', true)). +answer('urn:example:complies'('urn:example:alice9748', true)). +answer('urn:example:complies'('urn:example:alice9749', true)). +answer('urn:example:complies'('urn:example:alice9750', true)). +answer('urn:example:complies'('urn:example:alice9751', true)). +answer('urn:example:complies'('urn:example:alice9752', true)). +answer('urn:example:complies'('urn:example:alice9753', true)). +answer('urn:example:complies'('urn:example:alice9754', true)). +answer('urn:example:complies'('urn:example:alice9755', true)). +answer('urn:example:complies'('urn:example:alice9756', true)). +answer('urn:example:complies'('urn:example:alice9757', true)). +answer('urn:example:complies'('urn:example:alice9758', true)). +answer('urn:example:complies'('urn:example:alice9759', true)). +answer('urn:example:complies'('urn:example:alice9760', true)). +answer('urn:example:complies'('urn:example:alice9761', true)). +answer('urn:example:complies'('urn:example:alice9762', true)). +answer('urn:example:complies'('urn:example:alice9763', true)). +answer('urn:example:complies'('urn:example:alice9764', true)). +answer('urn:example:complies'('urn:example:alice9765', true)). +answer('urn:example:complies'('urn:example:alice9766', true)). +answer('urn:example:complies'('urn:example:alice9767', true)). +answer('urn:example:complies'('urn:example:alice9768', true)). +answer('urn:example:complies'('urn:example:alice9769', true)). +answer('urn:example:complies'('urn:example:alice9770', true)). +answer('urn:example:complies'('urn:example:alice9771', true)). +answer('urn:example:complies'('urn:example:alice9772', true)). +answer('urn:example:complies'('urn:example:alice9773', true)). +answer('urn:example:complies'('urn:example:alice9774', true)). +answer('urn:example:complies'('urn:example:alice9775', true)). +answer('urn:example:complies'('urn:example:alice9776', true)). +answer('urn:example:complies'('urn:example:alice9777', true)). +answer('urn:example:complies'('urn:example:alice9778', true)). +answer('urn:example:complies'('urn:example:alice9779', true)). +answer('urn:example:complies'('urn:example:alice9780', true)). +answer('urn:example:complies'('urn:example:alice9781', true)). +answer('urn:example:complies'('urn:example:alice9782', true)). +answer('urn:example:complies'('urn:example:alice9783', true)). +answer('urn:example:complies'('urn:example:alice9784', true)). +answer('urn:example:complies'('urn:example:alice9785', true)). +answer('urn:example:complies'('urn:example:alice9786', true)). +answer('urn:example:complies'('urn:example:alice9787', true)). +answer('urn:example:complies'('urn:example:alice9788', true)). +answer('urn:example:complies'('urn:example:alice9789', true)). +answer('urn:example:complies'('urn:example:alice9790', true)). +answer('urn:example:complies'('urn:example:alice9791', true)). +answer('urn:example:complies'('urn:example:alice9792', true)). +answer('urn:example:complies'('urn:example:alice9793', true)). +answer('urn:example:complies'('urn:example:alice9794', true)). +answer('urn:example:complies'('urn:example:alice9795', true)). +answer('urn:example:complies'('urn:example:alice9796', true)). +answer('urn:example:complies'('urn:example:alice9797', true)). +answer('urn:example:complies'('urn:example:alice9798', true)). +answer('urn:example:complies'('urn:example:alice9799', true)). +answer('urn:example:complies'('urn:example:alice9800', true)). +answer('urn:example:complies'('urn:example:alice9801', true)). +answer('urn:example:complies'('urn:example:alice9802', true)). +answer('urn:example:complies'('urn:example:alice9803', true)). +answer('urn:example:complies'('urn:example:alice9804', true)). +answer('urn:example:complies'('urn:example:alice9805', true)). +answer('urn:example:complies'('urn:example:alice9806', true)). +answer('urn:example:complies'('urn:example:alice9807', true)). +answer('urn:example:complies'('urn:example:alice9808', true)). +answer('urn:example:complies'('urn:example:alice9809', true)). +answer('urn:example:complies'('urn:example:alice9810', true)). +answer('urn:example:complies'('urn:example:alice9811', true)). +answer('urn:example:complies'('urn:example:alice9812', true)). +answer('urn:example:complies'('urn:example:alice9813', true)). +answer('urn:example:complies'('urn:example:alice9814', true)). +answer('urn:example:complies'('urn:example:alice9815', true)). +answer('urn:example:complies'('urn:example:alice9816', true)). +answer('urn:example:complies'('urn:example:alice9817', true)). +answer('urn:example:complies'('urn:example:alice9818', true)). +answer('urn:example:complies'('urn:example:alice9819', true)). +answer('urn:example:complies'('urn:example:alice9820', true)). +answer('urn:example:complies'('urn:example:alice9821', true)). +answer('urn:example:complies'('urn:example:alice9822', true)). +answer('urn:example:complies'('urn:example:alice9823', true)). +answer('urn:example:complies'('urn:example:alice9824', true)). +answer('urn:example:complies'('urn:example:alice9825', true)). +answer('urn:example:complies'('urn:example:alice9826', true)). +answer('urn:example:complies'('urn:example:alice9827', true)). +answer('urn:example:complies'('urn:example:alice9828', true)). +answer('urn:example:complies'('urn:example:alice9829', true)). +answer('urn:example:complies'('urn:example:alice9830', true)). +answer('urn:example:complies'('urn:example:alice9831', true)). +answer('urn:example:complies'('urn:example:alice9832', true)). +answer('urn:example:complies'('urn:example:alice9833', true)). +answer('urn:example:complies'('urn:example:alice9834', true)). +answer('urn:example:complies'('urn:example:alice9835', true)). +answer('urn:example:complies'('urn:example:alice9836', true)). +answer('urn:example:complies'('urn:example:alice9837', true)). +answer('urn:example:complies'('urn:example:alice9838', true)). +answer('urn:example:complies'('urn:example:alice9839', true)). +answer('urn:example:complies'('urn:example:alice9840', true)). +answer('urn:example:complies'('urn:example:alice9841', true)). +answer('urn:example:complies'('urn:example:alice9842', true)). +answer('urn:example:complies'('urn:example:alice9843', true)). +answer('urn:example:complies'('urn:example:alice9844', true)). +answer('urn:example:complies'('urn:example:alice9845', true)). +answer('urn:example:complies'('urn:example:alice9846', true)). +answer('urn:example:complies'('urn:example:alice9847', true)). +answer('urn:example:complies'('urn:example:alice9848', true)). +answer('urn:example:complies'('urn:example:alice9849', true)). +answer('urn:example:complies'('urn:example:alice9850', true)). +answer('urn:example:complies'('urn:example:alice9851', true)). +answer('urn:example:complies'('urn:example:alice9852', true)). +answer('urn:example:complies'('urn:example:alice9853', true)). +answer('urn:example:complies'('urn:example:alice9854', true)). +answer('urn:example:complies'('urn:example:alice9855', true)). +answer('urn:example:complies'('urn:example:alice9856', true)). +answer('urn:example:complies'('urn:example:alice9857', true)). +answer('urn:example:complies'('urn:example:alice9858', true)). +answer('urn:example:complies'('urn:example:alice9859', true)). +answer('urn:example:complies'('urn:example:alice9860', true)). +answer('urn:example:complies'('urn:example:alice9861', true)). +answer('urn:example:complies'('urn:example:alice9862', true)). +answer('urn:example:complies'('urn:example:alice9863', true)). +answer('urn:example:complies'('urn:example:alice9864', true)). +answer('urn:example:complies'('urn:example:alice9865', true)). +answer('urn:example:complies'('urn:example:alice9866', true)). +answer('urn:example:complies'('urn:example:alice9867', true)). +answer('urn:example:complies'('urn:example:alice9868', true)). +answer('urn:example:complies'('urn:example:alice9869', true)). +answer('urn:example:complies'('urn:example:alice9870', true)). +answer('urn:example:complies'('urn:example:alice9871', true)). +answer('urn:example:complies'('urn:example:alice9872', true)). +answer('urn:example:complies'('urn:example:alice9873', true)). +answer('urn:example:complies'('urn:example:alice9874', true)). +answer('urn:example:complies'('urn:example:alice9875', true)). +answer('urn:example:complies'('urn:example:alice9876', true)). +answer('urn:example:complies'('urn:example:alice9877', true)). +answer('urn:example:complies'('urn:example:alice9878', true)). +answer('urn:example:complies'('urn:example:alice9879', true)). +answer('urn:example:complies'('urn:example:alice9880', true)). +answer('urn:example:complies'('urn:example:alice9881', true)). +answer('urn:example:complies'('urn:example:alice9882', true)). +answer('urn:example:complies'('urn:example:alice9883', true)). +answer('urn:example:complies'('urn:example:alice9884', true)). +answer('urn:example:complies'('urn:example:alice9885', true)). +answer('urn:example:complies'('urn:example:alice9886', true)). +answer('urn:example:complies'('urn:example:alice9887', true)). +answer('urn:example:complies'('urn:example:alice9888', true)). +answer('urn:example:complies'('urn:example:alice9889', true)). +answer('urn:example:complies'('urn:example:alice9890', true)). +answer('urn:example:complies'('urn:example:alice9891', true)). +answer('urn:example:complies'('urn:example:alice9892', true)). +answer('urn:example:complies'('urn:example:alice9893', true)). +answer('urn:example:complies'('urn:example:alice9894', true)). +answer('urn:example:complies'('urn:example:alice9895', true)). +answer('urn:example:complies'('urn:example:alice9896', true)). +answer('urn:example:complies'('urn:example:alice9897', true)). +answer('urn:example:complies'('urn:example:alice9898', true)). +answer('urn:example:complies'('urn:example:alice9899', true)). +answer('urn:example:complies'('urn:example:alice9900', true)). +answer('urn:example:complies'('urn:example:alice9901', true)). +answer('urn:example:complies'('urn:example:alice9902', true)). +answer('urn:example:complies'('urn:example:alice9903', true)). +answer('urn:example:complies'('urn:example:alice9904', true)). +answer('urn:example:complies'('urn:example:alice9905', true)). +answer('urn:example:complies'('urn:example:alice9906', true)). +answer('urn:example:complies'('urn:example:alice9907', true)). +answer('urn:example:complies'('urn:example:alice9908', true)). +answer('urn:example:complies'('urn:example:alice9909', true)). +answer('urn:example:complies'('urn:example:alice9910', true)). +answer('urn:example:complies'('urn:example:alice9911', true)). +answer('urn:example:complies'('urn:example:alice9912', true)). +answer('urn:example:complies'('urn:example:alice9913', true)). +answer('urn:example:complies'('urn:example:alice9914', true)). +answer('urn:example:complies'('urn:example:alice9915', true)). +answer('urn:example:complies'('urn:example:alice9916', true)). +answer('urn:example:complies'('urn:example:alice9917', true)). +answer('urn:example:complies'('urn:example:alice9918', true)). +answer('urn:example:complies'('urn:example:alice9919', true)). +answer('urn:example:complies'('urn:example:alice9920', true)). +answer('urn:example:complies'('urn:example:alice9921', true)). +answer('urn:example:complies'('urn:example:alice9922', true)). +answer('urn:example:complies'('urn:example:alice9923', true)). +answer('urn:example:complies'('urn:example:alice9924', true)). +answer('urn:example:complies'('urn:example:alice9925', true)). +answer('urn:example:complies'('urn:example:alice9926', true)). +answer('urn:example:complies'('urn:example:alice9927', true)). +answer('urn:example:complies'('urn:example:alice9928', true)). +answer('urn:example:complies'('urn:example:alice9929', true)). +answer('urn:example:complies'('urn:example:alice9930', true)). +answer('urn:example:complies'('urn:example:alice9931', true)). +answer('urn:example:complies'('urn:example:alice9932', true)). +answer('urn:example:complies'('urn:example:alice9933', true)). +answer('urn:example:complies'('urn:example:alice9934', true)). +answer('urn:example:complies'('urn:example:alice9935', true)). +answer('urn:example:complies'('urn:example:alice9936', true)). +answer('urn:example:complies'('urn:example:alice9937', true)). +answer('urn:example:complies'('urn:example:alice9938', true)). +answer('urn:example:complies'('urn:example:alice9939', true)). +answer('urn:example:complies'('urn:example:alice9940', true)). +answer('urn:example:complies'('urn:example:alice9941', true)). +answer('urn:example:complies'('urn:example:alice9942', true)). +answer('urn:example:complies'('urn:example:alice9943', true)). +answer('urn:example:complies'('urn:example:alice9944', true)). +answer('urn:example:complies'('urn:example:alice9945', true)). +answer('urn:example:complies'('urn:example:alice9946', true)). +answer('urn:example:complies'('urn:example:alice9947', true)). +answer('urn:example:complies'('urn:example:alice9948', true)). +answer('urn:example:complies'('urn:example:alice9949', true)). +answer('urn:example:complies'('urn:example:alice9950', true)). +answer('urn:example:complies'('urn:example:alice9951', true)). +answer('urn:example:complies'('urn:example:alice9952', true)). +answer('urn:example:complies'('urn:example:alice9953', true)). +answer('urn:example:complies'('urn:example:alice9954', true)). +answer('urn:example:complies'('urn:example:alice9955', true)). +answer('urn:example:complies'('urn:example:alice9956', true)). +answer('urn:example:complies'('urn:example:alice9957', true)). +answer('urn:example:complies'('urn:example:alice9958', true)). +answer('urn:example:complies'('urn:example:alice9959', true)). +answer('urn:example:complies'('urn:example:alice9960', true)). +answer('urn:example:complies'('urn:example:alice9961', true)). +answer('urn:example:complies'('urn:example:alice9962', true)). +answer('urn:example:complies'('urn:example:alice9963', true)). +answer('urn:example:complies'('urn:example:alice9964', true)). +answer('urn:example:complies'('urn:example:alice9965', true)). +answer('urn:example:complies'('urn:example:alice9966', true)). +answer('urn:example:complies'('urn:example:alice9967', true)). +answer('urn:example:complies'('urn:example:alice9968', true)). +answer('urn:example:complies'('urn:example:alice9969', true)). +answer('urn:example:complies'('urn:example:alice9970', true)). +answer('urn:example:complies'('urn:example:alice9971', true)). +answer('urn:example:complies'('urn:example:alice9972', true)). +answer('urn:example:complies'('urn:example:alice9973', true)). +answer('urn:example:complies'('urn:example:alice9974', true)). +answer('urn:example:complies'('urn:example:alice9975', true)). +answer('urn:example:complies'('urn:example:alice9976', true)). +answer('urn:example:complies'('urn:example:alice9977', true)). +answer('urn:example:complies'('urn:example:alice9978', true)). +answer('urn:example:complies'('urn:example:alice9979', true)). +answer('urn:example:complies'('urn:example:alice9980', true)). +answer('urn:example:complies'('urn:example:alice9981', true)). +answer('urn:example:complies'('urn:example:alice9982', true)). +answer('urn:example:complies'('urn:example:alice9983', true)). +answer('urn:example:complies'('urn:example:alice9984', true)). +answer('urn:example:complies'('urn:example:alice9985', true)). +answer('urn:example:complies'('urn:example:alice9986', true)). +answer('urn:example:complies'('urn:example:alice9987', true)). +answer('urn:example:complies'('urn:example:alice9988', true)). +answer('urn:example:complies'('urn:example:alice9989', true)). +answer('urn:example:complies'('urn:example:alice9990', true)). +answer('urn:example:complies'('urn:example:alice9991', true)). +answer('urn:example:complies'('urn:example:alice9992', true)). +answer('urn:example:complies'('urn:example:alice9993', true)). +answer('urn:example:complies'('urn:example:alice9994', true)). +answer('urn:example:complies'('urn:example:alice9995', true)). +answer('urn:example:complies'('urn:example:alice9996', true)). +answer('urn:example:complies'('urn:example:alice9997', true)). +answer('urn:example:complies'('urn:example:alice9998', true)). +answer('urn:example:complies'('urn:example:alice9999', true)). +answer('urn:example:complies'('urn:example:alice10000', true)). +answer('urn:example:complies'('urn:example:carol1', false)). +answer('urn:example:complies'('urn:example:carol2', false)). +answer('urn:example:complies'('urn:example:carol3', false)). +answer('urn:example:complies'('urn:example:carol4', false)). +answer('urn:example:complies'('urn:example:carol5', false)). +answer('urn:example:complies'('urn:example:carol6', false)). +answer('urn:example:complies'('urn:example:carol7', false)). +answer('urn:example:complies'('urn:example:carol8', false)). +answer('urn:example:complies'('urn:example:carol9', false)). +answer('urn:example:complies'('urn:example:carol10', false)). +answer('urn:example:complies'('urn:example:carol11', false)). +answer('urn:example:complies'('urn:example:carol12', false)). +answer('urn:example:complies'('urn:example:carol13', false)). +answer('urn:example:complies'('urn:example:carol14', false)). +answer('urn:example:complies'('urn:example:carol15', false)). +answer('urn:example:complies'('urn:example:carol16', false)). +answer('urn:example:complies'('urn:example:carol17', false)). +answer('urn:example:complies'('urn:example:carol18', false)). +answer('urn:example:complies'('urn:example:carol19', false)). +answer('urn:example:complies'('urn:example:carol20', false)). +answer('urn:example:complies'('urn:example:carol21', false)). +answer('urn:example:complies'('urn:example:carol22', false)). +answer('urn:example:complies'('urn:example:carol23', false)). +answer('urn:example:complies'('urn:example:carol24', false)). +answer('urn:example:complies'('urn:example:carol25', false)). +answer('urn:example:complies'('urn:example:carol26', false)). +answer('urn:example:complies'('urn:example:carol27', false)). +answer('urn:example:complies'('urn:example:carol28', false)). +answer('urn:example:complies'('urn:example:carol29', false)). +answer('urn:example:complies'('urn:example:carol30', false)). +answer('urn:example:complies'('urn:example:carol31', false)). +answer('urn:example:complies'('urn:example:carol32', false)). +answer('urn:example:complies'('urn:example:carol33', false)). +answer('urn:example:complies'('urn:example:carol34', false)). +answer('urn:example:complies'('urn:example:carol35', false)). +answer('urn:example:complies'('urn:example:carol36', false)). +answer('urn:example:complies'('urn:example:carol37', false)). +answer('urn:example:complies'('urn:example:carol38', false)). +answer('urn:example:complies'('urn:example:carol39', false)). +answer('urn:example:complies'('urn:example:carol40', false)). +answer('urn:example:complies'('urn:example:carol41', false)). +answer('urn:example:complies'('urn:example:carol42', false)). +answer('urn:example:complies'('urn:example:carol43', false)). +answer('urn:example:complies'('urn:example:carol44', false)). +answer('urn:example:complies'('urn:example:carol45', false)). +answer('urn:example:complies'('urn:example:carol46', false)). +answer('urn:example:complies'('urn:example:carol47', false)). +answer('urn:example:complies'('urn:example:carol48', false)). +answer('urn:example:complies'('urn:example:carol49', false)). +answer('urn:example:complies'('urn:example:carol50', false)). +answer('urn:example:complies'('urn:example:carol51', false)). +answer('urn:example:complies'('urn:example:carol52', false)). +answer('urn:example:complies'('urn:example:carol53', false)). +answer('urn:example:complies'('urn:example:carol54', false)). +answer('urn:example:complies'('urn:example:carol55', false)). +answer('urn:example:complies'('urn:example:carol56', false)). +answer('urn:example:complies'('urn:example:carol57', false)). +answer('urn:example:complies'('urn:example:carol58', false)). +answer('urn:example:complies'('urn:example:carol59', false)). +answer('urn:example:complies'('urn:example:carol60', false)). +answer('urn:example:complies'('urn:example:carol61', false)). +answer('urn:example:complies'('urn:example:carol62', false)). +answer('urn:example:complies'('urn:example:carol63', false)). +answer('urn:example:complies'('urn:example:carol64', false)). +answer('urn:example:complies'('urn:example:carol65', false)). +answer('urn:example:complies'('urn:example:carol66', false)). +answer('urn:example:complies'('urn:example:carol67', false)). +answer('urn:example:complies'('urn:example:carol68', false)). +answer('urn:example:complies'('urn:example:carol69', false)). +answer('urn:example:complies'('urn:example:carol70', false)). +answer('urn:example:complies'('urn:example:carol71', false)). +answer('urn:example:complies'('urn:example:carol72', false)). +answer('urn:example:complies'('urn:example:carol73', false)). +answer('urn:example:complies'('urn:example:carol74', false)). +answer('urn:example:complies'('urn:example:carol75', false)). +answer('urn:example:complies'('urn:example:carol76', false)). +answer('urn:example:complies'('urn:example:carol77', false)). +answer('urn:example:complies'('urn:example:carol78', false)). +answer('urn:example:complies'('urn:example:carol79', false)). +answer('urn:example:complies'('urn:example:carol80', false)). +answer('urn:example:complies'('urn:example:carol81', false)). +answer('urn:example:complies'('urn:example:carol82', false)). +answer('urn:example:complies'('urn:example:carol83', false)). +answer('urn:example:complies'('urn:example:carol84', false)). +answer('urn:example:complies'('urn:example:carol85', false)). +answer('urn:example:complies'('urn:example:carol86', false)). +answer('urn:example:complies'('urn:example:carol87', false)). +answer('urn:example:complies'('urn:example:carol88', false)). +answer('urn:example:complies'('urn:example:carol89', false)). +answer('urn:example:complies'('urn:example:carol90', false)). +answer('urn:example:complies'('urn:example:carol91', false)). +answer('urn:example:complies'('urn:example:carol92', false)). +answer('urn:example:complies'('urn:example:carol93', false)). +answer('urn:example:complies'('urn:example:carol94', false)). +answer('urn:example:complies'('urn:example:carol95', false)). +answer('urn:example:complies'('urn:example:carol96', false)). +answer('urn:example:complies'('urn:example:carol97', false)). +answer('urn:example:complies'('urn:example:carol98', false)). +answer('urn:example:complies'('urn:example:carol99', false)). +answer('urn:example:complies'('urn:example:carol100', false)). +answer('urn:example:complies'('urn:example:carol101', false)). +answer('urn:example:complies'('urn:example:carol102', false)). +answer('urn:example:complies'('urn:example:carol103', false)). +answer('urn:example:complies'('urn:example:carol104', false)). +answer('urn:example:complies'('urn:example:carol105', false)). +answer('urn:example:complies'('urn:example:carol106', false)). +answer('urn:example:complies'('urn:example:carol107', false)). +answer('urn:example:complies'('urn:example:carol108', false)). +answer('urn:example:complies'('urn:example:carol109', false)). +answer('urn:example:complies'('urn:example:carol110', false)). +answer('urn:example:complies'('urn:example:carol111', false)). +answer('urn:example:complies'('urn:example:carol112', false)). +answer('urn:example:complies'('urn:example:carol113', false)). +answer('urn:example:complies'('urn:example:carol114', false)). +answer('urn:example:complies'('urn:example:carol115', false)). +answer('urn:example:complies'('urn:example:carol116', false)). +answer('urn:example:complies'('urn:example:carol117', false)). +answer('urn:example:complies'('urn:example:carol118', false)). +answer('urn:example:complies'('urn:example:carol119', false)). +answer('urn:example:complies'('urn:example:carol120', false)). +answer('urn:example:complies'('urn:example:carol121', false)). +answer('urn:example:complies'('urn:example:carol122', false)). +answer('urn:example:complies'('urn:example:carol123', false)). +answer('urn:example:complies'('urn:example:carol124', false)). +answer('urn:example:complies'('urn:example:carol125', false)). +answer('urn:example:complies'('urn:example:carol126', false)). +answer('urn:example:complies'('urn:example:carol127', false)). +answer('urn:example:complies'('urn:example:carol128', false)). +answer('urn:example:complies'('urn:example:carol129', false)). +answer('urn:example:complies'('urn:example:carol130', false)). +answer('urn:example:complies'('urn:example:carol131', false)). +answer('urn:example:complies'('urn:example:carol132', false)). +answer('urn:example:complies'('urn:example:carol133', false)). +answer('urn:example:complies'('urn:example:carol134', false)). +answer('urn:example:complies'('urn:example:carol135', false)). +answer('urn:example:complies'('urn:example:carol136', false)). +answer('urn:example:complies'('urn:example:carol137', false)). +answer('urn:example:complies'('urn:example:carol138', false)). +answer('urn:example:complies'('urn:example:carol139', false)). +answer('urn:example:complies'('urn:example:carol140', false)). +answer('urn:example:complies'('urn:example:carol141', false)). +answer('urn:example:complies'('urn:example:carol142', false)). +answer('urn:example:complies'('urn:example:carol143', false)). +answer('urn:example:complies'('urn:example:carol144', false)). +answer('urn:example:complies'('urn:example:carol145', false)). +answer('urn:example:complies'('urn:example:carol146', false)). +answer('urn:example:complies'('urn:example:carol147', false)). +answer('urn:example:complies'('urn:example:carol148', false)). +answer('urn:example:complies'('urn:example:carol149', false)). +answer('urn:example:complies'('urn:example:carol150', false)). +answer('urn:example:complies'('urn:example:carol151', false)). +answer('urn:example:complies'('urn:example:carol152', false)). +answer('urn:example:complies'('urn:example:carol153', false)). +answer('urn:example:complies'('urn:example:carol154', false)). +answer('urn:example:complies'('urn:example:carol155', false)). +answer('urn:example:complies'('urn:example:carol156', false)). +answer('urn:example:complies'('urn:example:carol157', false)). +answer('urn:example:complies'('urn:example:carol158', false)). +answer('urn:example:complies'('urn:example:carol159', false)). +answer('urn:example:complies'('urn:example:carol160', false)). +answer('urn:example:complies'('urn:example:carol161', false)). +answer('urn:example:complies'('urn:example:carol162', false)). +answer('urn:example:complies'('urn:example:carol163', false)). +answer('urn:example:complies'('urn:example:carol164', false)). +answer('urn:example:complies'('urn:example:carol165', false)). +answer('urn:example:complies'('urn:example:carol166', false)). +answer('urn:example:complies'('urn:example:carol167', false)). +answer('urn:example:complies'('urn:example:carol168', false)). +answer('urn:example:complies'('urn:example:carol169', false)). +answer('urn:example:complies'('urn:example:carol170', false)). +answer('urn:example:complies'('urn:example:carol171', false)). +answer('urn:example:complies'('urn:example:carol172', false)). +answer('urn:example:complies'('urn:example:carol173', false)). +answer('urn:example:complies'('urn:example:carol174', false)). +answer('urn:example:complies'('urn:example:carol175', false)). +answer('urn:example:complies'('urn:example:carol176', false)). +answer('urn:example:complies'('urn:example:carol177', false)). +answer('urn:example:complies'('urn:example:carol178', false)). +answer('urn:example:complies'('urn:example:carol179', false)). +answer('urn:example:complies'('urn:example:carol180', false)). +answer('urn:example:complies'('urn:example:carol181', false)). +answer('urn:example:complies'('urn:example:carol182', false)). +answer('urn:example:complies'('urn:example:carol183', false)). +answer('urn:example:complies'('urn:example:carol184', false)). +answer('urn:example:complies'('urn:example:carol185', false)). +answer('urn:example:complies'('urn:example:carol186', false)). +answer('urn:example:complies'('urn:example:carol187', false)). +answer('urn:example:complies'('urn:example:carol188', false)). +answer('urn:example:complies'('urn:example:carol189', false)). +answer('urn:example:complies'('urn:example:carol190', false)). +answer('urn:example:complies'('urn:example:carol191', false)). +answer('urn:example:complies'('urn:example:carol192', false)). +answer('urn:example:complies'('urn:example:carol193', false)). +answer('urn:example:complies'('urn:example:carol194', false)). +answer('urn:example:complies'('urn:example:carol195', false)). +answer('urn:example:complies'('urn:example:carol196', false)). +answer('urn:example:complies'('urn:example:carol197', false)). +answer('urn:example:complies'('urn:example:carol198', false)). +answer('urn:example:complies'('urn:example:carol199', false)). +answer('urn:example:complies'('urn:example:carol200', false)). +answer('urn:example:complies'('urn:example:carol201', false)). +answer('urn:example:complies'('urn:example:carol202', false)). +answer('urn:example:complies'('urn:example:carol203', false)). +answer('urn:example:complies'('urn:example:carol204', false)). +answer('urn:example:complies'('urn:example:carol205', false)). +answer('urn:example:complies'('urn:example:carol206', false)). +answer('urn:example:complies'('urn:example:carol207', false)). +answer('urn:example:complies'('urn:example:carol208', false)). +answer('urn:example:complies'('urn:example:carol209', false)). +answer('urn:example:complies'('urn:example:carol210', false)). +answer('urn:example:complies'('urn:example:carol211', false)). +answer('urn:example:complies'('urn:example:carol212', false)). +answer('urn:example:complies'('urn:example:carol213', false)). +answer('urn:example:complies'('urn:example:carol214', false)). +answer('urn:example:complies'('urn:example:carol215', false)). +answer('urn:example:complies'('urn:example:carol216', false)). +answer('urn:example:complies'('urn:example:carol217', false)). +answer('urn:example:complies'('urn:example:carol218', false)). +answer('urn:example:complies'('urn:example:carol219', false)). +answer('urn:example:complies'('urn:example:carol220', false)). +answer('urn:example:complies'('urn:example:carol221', false)). +answer('urn:example:complies'('urn:example:carol222', false)). +answer('urn:example:complies'('urn:example:carol223', false)). +answer('urn:example:complies'('urn:example:carol224', false)). +answer('urn:example:complies'('urn:example:carol225', false)). +answer('urn:example:complies'('urn:example:carol226', false)). +answer('urn:example:complies'('urn:example:carol227', false)). +answer('urn:example:complies'('urn:example:carol228', false)). +answer('urn:example:complies'('urn:example:carol229', false)). +answer('urn:example:complies'('urn:example:carol230', false)). +answer('urn:example:complies'('urn:example:carol231', false)). +answer('urn:example:complies'('urn:example:carol232', false)). +answer('urn:example:complies'('urn:example:carol233', false)). +answer('urn:example:complies'('urn:example:carol234', false)). +answer('urn:example:complies'('urn:example:carol235', false)). +answer('urn:example:complies'('urn:example:carol236', false)). +answer('urn:example:complies'('urn:example:carol237', false)). +answer('urn:example:complies'('urn:example:carol238', false)). +answer('urn:example:complies'('urn:example:carol239', false)). +answer('urn:example:complies'('urn:example:carol240', false)). +answer('urn:example:complies'('urn:example:carol241', false)). +answer('urn:example:complies'('urn:example:carol242', false)). +answer('urn:example:complies'('urn:example:carol243', false)). +answer('urn:example:complies'('urn:example:carol244', false)). +answer('urn:example:complies'('urn:example:carol245', false)). +answer('urn:example:complies'('urn:example:carol246', false)). +answer('urn:example:complies'('urn:example:carol247', false)). +answer('urn:example:complies'('urn:example:carol248', false)). +answer('urn:example:complies'('urn:example:carol249', false)). +answer('urn:example:complies'('urn:example:carol250', false)). +answer('urn:example:complies'('urn:example:carol251', false)). +answer('urn:example:complies'('urn:example:carol252', false)). +answer('urn:example:complies'('urn:example:carol253', false)). +answer('urn:example:complies'('urn:example:carol254', false)). +answer('urn:example:complies'('urn:example:carol255', false)). +answer('urn:example:complies'('urn:example:carol256', false)). +answer('urn:example:complies'('urn:example:carol257', false)). +answer('urn:example:complies'('urn:example:carol258', false)). +answer('urn:example:complies'('urn:example:carol259', false)). +answer('urn:example:complies'('urn:example:carol260', false)). +answer('urn:example:complies'('urn:example:carol261', false)). +answer('urn:example:complies'('urn:example:carol262', false)). +answer('urn:example:complies'('urn:example:carol263', false)). +answer('urn:example:complies'('urn:example:carol264', false)). +answer('urn:example:complies'('urn:example:carol265', false)). +answer('urn:example:complies'('urn:example:carol266', false)). +answer('urn:example:complies'('urn:example:carol267', false)). +answer('urn:example:complies'('urn:example:carol268', false)). +answer('urn:example:complies'('urn:example:carol269', false)). +answer('urn:example:complies'('urn:example:carol270', false)). +answer('urn:example:complies'('urn:example:carol271', false)). +answer('urn:example:complies'('urn:example:carol272', false)). +answer('urn:example:complies'('urn:example:carol273', false)). +answer('urn:example:complies'('urn:example:carol274', false)). +answer('urn:example:complies'('urn:example:carol275', false)). +answer('urn:example:complies'('urn:example:carol276', false)). +answer('urn:example:complies'('urn:example:carol277', false)). +answer('urn:example:complies'('urn:example:carol278', false)). +answer('urn:example:complies'('urn:example:carol279', false)). +answer('urn:example:complies'('urn:example:carol280', false)). +answer('urn:example:complies'('urn:example:carol281', false)). +answer('urn:example:complies'('urn:example:carol282', false)). +answer('urn:example:complies'('urn:example:carol283', false)). +answer('urn:example:complies'('urn:example:carol284', false)). +answer('urn:example:complies'('urn:example:carol285', false)). +answer('urn:example:complies'('urn:example:carol286', false)). +answer('urn:example:complies'('urn:example:carol287', false)). +answer('urn:example:complies'('urn:example:carol288', false)). +answer('urn:example:complies'('urn:example:carol289', false)). +answer('urn:example:complies'('urn:example:carol290', false)). +answer('urn:example:complies'('urn:example:carol291', false)). +answer('urn:example:complies'('urn:example:carol292', false)). +answer('urn:example:complies'('urn:example:carol293', false)). +answer('urn:example:complies'('urn:example:carol294', false)). +answer('urn:example:complies'('urn:example:carol295', false)). +answer('urn:example:complies'('urn:example:carol296', false)). +answer('urn:example:complies'('urn:example:carol297', false)). +answer('urn:example:complies'('urn:example:carol298', false)). +answer('urn:example:complies'('urn:example:carol299', false)). +answer('urn:example:complies'('urn:example:carol300', false)). +answer('urn:example:complies'('urn:example:carol301', false)). +answer('urn:example:complies'('urn:example:carol302', false)). +answer('urn:example:complies'('urn:example:carol303', false)). +answer('urn:example:complies'('urn:example:carol304', false)). +answer('urn:example:complies'('urn:example:carol305', false)). +answer('urn:example:complies'('urn:example:carol306', false)). +answer('urn:example:complies'('urn:example:carol307', false)). +answer('urn:example:complies'('urn:example:carol308', false)). +answer('urn:example:complies'('urn:example:carol309', false)). +answer('urn:example:complies'('urn:example:carol310', false)). +answer('urn:example:complies'('urn:example:carol311', false)). +answer('urn:example:complies'('urn:example:carol312', false)). +answer('urn:example:complies'('urn:example:carol313', false)). +answer('urn:example:complies'('urn:example:carol314', false)). +answer('urn:example:complies'('urn:example:carol315', false)). +answer('urn:example:complies'('urn:example:carol316', false)). +answer('urn:example:complies'('urn:example:carol317', false)). +answer('urn:example:complies'('urn:example:carol318', false)). +answer('urn:example:complies'('urn:example:carol319', false)). +answer('urn:example:complies'('urn:example:carol320', false)). +answer('urn:example:complies'('urn:example:carol321', false)). +answer('urn:example:complies'('urn:example:carol322', false)). +answer('urn:example:complies'('urn:example:carol323', false)). +answer('urn:example:complies'('urn:example:carol324', false)). +answer('urn:example:complies'('urn:example:carol325', false)). +answer('urn:example:complies'('urn:example:carol326', false)). +answer('urn:example:complies'('urn:example:carol327', false)). +answer('urn:example:complies'('urn:example:carol328', false)). +answer('urn:example:complies'('urn:example:carol329', false)). +answer('urn:example:complies'('urn:example:carol330', false)). +answer('urn:example:complies'('urn:example:carol331', false)). +answer('urn:example:complies'('urn:example:carol332', false)). +answer('urn:example:complies'('urn:example:carol333', false)). +answer('urn:example:complies'('urn:example:carol334', false)). +answer('urn:example:complies'('urn:example:carol335', false)). +answer('urn:example:complies'('urn:example:carol336', false)). +answer('urn:example:complies'('urn:example:carol337', false)). +answer('urn:example:complies'('urn:example:carol338', false)). +answer('urn:example:complies'('urn:example:carol339', false)). +answer('urn:example:complies'('urn:example:carol340', false)). +answer('urn:example:complies'('urn:example:carol341', false)). +answer('urn:example:complies'('urn:example:carol342', false)). +answer('urn:example:complies'('urn:example:carol343', false)). +answer('urn:example:complies'('urn:example:carol344', false)). +answer('urn:example:complies'('urn:example:carol345', false)). +answer('urn:example:complies'('urn:example:carol346', false)). +answer('urn:example:complies'('urn:example:carol347', false)). +answer('urn:example:complies'('urn:example:carol348', false)). +answer('urn:example:complies'('urn:example:carol349', false)). +answer('urn:example:complies'('urn:example:carol350', false)). +answer('urn:example:complies'('urn:example:carol351', false)). +answer('urn:example:complies'('urn:example:carol352', false)). +answer('urn:example:complies'('urn:example:carol353', false)). +answer('urn:example:complies'('urn:example:carol354', false)). +answer('urn:example:complies'('urn:example:carol355', false)). +answer('urn:example:complies'('urn:example:carol356', false)). +answer('urn:example:complies'('urn:example:carol357', false)). +answer('urn:example:complies'('urn:example:carol358', false)). +answer('urn:example:complies'('urn:example:carol359', false)). +answer('urn:example:complies'('urn:example:carol360', false)). +answer('urn:example:complies'('urn:example:carol361', false)). +answer('urn:example:complies'('urn:example:carol362', false)). +answer('urn:example:complies'('urn:example:carol363', false)). +answer('urn:example:complies'('urn:example:carol364', false)). +answer('urn:example:complies'('urn:example:carol365', false)). +answer('urn:example:complies'('urn:example:carol366', false)). +answer('urn:example:complies'('urn:example:carol367', false)). +answer('urn:example:complies'('urn:example:carol368', false)). +answer('urn:example:complies'('urn:example:carol369', false)). +answer('urn:example:complies'('urn:example:carol370', false)). +answer('urn:example:complies'('urn:example:carol371', false)). +answer('urn:example:complies'('urn:example:carol372', false)). +answer('urn:example:complies'('urn:example:carol373', false)). +answer('urn:example:complies'('urn:example:carol374', false)). +answer('urn:example:complies'('urn:example:carol375', false)). +answer('urn:example:complies'('urn:example:carol376', false)). +answer('urn:example:complies'('urn:example:carol377', false)). +answer('urn:example:complies'('urn:example:carol378', false)). +answer('urn:example:complies'('urn:example:carol379', false)). +answer('urn:example:complies'('urn:example:carol380', false)). +answer('urn:example:complies'('urn:example:carol381', false)). +answer('urn:example:complies'('urn:example:carol382', false)). +answer('urn:example:complies'('urn:example:carol383', false)). +answer('urn:example:complies'('urn:example:carol384', false)). +answer('urn:example:complies'('urn:example:carol385', false)). +answer('urn:example:complies'('urn:example:carol386', false)). +answer('urn:example:complies'('urn:example:carol387', false)). +answer('urn:example:complies'('urn:example:carol388', false)). +answer('urn:example:complies'('urn:example:carol389', false)). +answer('urn:example:complies'('urn:example:carol390', false)). +answer('urn:example:complies'('urn:example:carol391', false)). +answer('urn:example:complies'('urn:example:carol392', false)). +answer('urn:example:complies'('urn:example:carol393', false)). +answer('urn:example:complies'('urn:example:carol394', false)). +answer('urn:example:complies'('urn:example:carol395', false)). +answer('urn:example:complies'('urn:example:carol396', false)). +answer('urn:example:complies'('urn:example:carol397', false)). +answer('urn:example:complies'('urn:example:carol398', false)). +answer('urn:example:complies'('urn:example:carol399', false)). +answer('urn:example:complies'('urn:example:carol400', false)). +answer('urn:example:complies'('urn:example:carol401', false)). +answer('urn:example:complies'('urn:example:carol402', false)). +answer('urn:example:complies'('urn:example:carol403', false)). +answer('urn:example:complies'('urn:example:carol404', false)). +answer('urn:example:complies'('urn:example:carol405', false)). +answer('urn:example:complies'('urn:example:carol406', false)). +answer('urn:example:complies'('urn:example:carol407', false)). +answer('urn:example:complies'('urn:example:carol408', false)). +answer('urn:example:complies'('urn:example:carol409', false)). +answer('urn:example:complies'('urn:example:carol410', false)). +answer('urn:example:complies'('urn:example:carol411', false)). +answer('urn:example:complies'('urn:example:carol412', false)). +answer('urn:example:complies'('urn:example:carol413', false)). +answer('urn:example:complies'('urn:example:carol414', false)). +answer('urn:example:complies'('urn:example:carol415', false)). +answer('urn:example:complies'('urn:example:carol416', false)). +answer('urn:example:complies'('urn:example:carol417', false)). +answer('urn:example:complies'('urn:example:carol418', false)). +answer('urn:example:complies'('urn:example:carol419', false)). +answer('urn:example:complies'('urn:example:carol420', false)). +answer('urn:example:complies'('urn:example:carol421', false)). +answer('urn:example:complies'('urn:example:carol422', false)). +answer('urn:example:complies'('urn:example:carol423', false)). +answer('urn:example:complies'('urn:example:carol424', false)). +answer('urn:example:complies'('urn:example:carol425', false)). +answer('urn:example:complies'('urn:example:carol426', false)). +answer('urn:example:complies'('urn:example:carol427', false)). +answer('urn:example:complies'('urn:example:carol428', false)). +answer('urn:example:complies'('urn:example:carol429', false)). +answer('urn:example:complies'('urn:example:carol430', false)). +answer('urn:example:complies'('urn:example:carol431', false)). +answer('urn:example:complies'('urn:example:carol432', false)). +answer('urn:example:complies'('urn:example:carol433', false)). +answer('urn:example:complies'('urn:example:carol434', false)). +answer('urn:example:complies'('urn:example:carol435', false)). +answer('urn:example:complies'('urn:example:carol436', false)). +answer('urn:example:complies'('urn:example:carol437', false)). +answer('urn:example:complies'('urn:example:carol438', false)). +answer('urn:example:complies'('urn:example:carol439', false)). +answer('urn:example:complies'('urn:example:carol440', false)). +answer('urn:example:complies'('urn:example:carol441', false)). +answer('urn:example:complies'('urn:example:carol442', false)). +answer('urn:example:complies'('urn:example:carol443', false)). +answer('urn:example:complies'('urn:example:carol444', false)). +answer('urn:example:complies'('urn:example:carol445', false)). +answer('urn:example:complies'('urn:example:carol446', false)). +answer('urn:example:complies'('urn:example:carol447', false)). +answer('urn:example:complies'('urn:example:carol448', false)). +answer('urn:example:complies'('urn:example:carol449', false)). +answer('urn:example:complies'('urn:example:carol450', false)). +answer('urn:example:complies'('urn:example:carol451', false)). +answer('urn:example:complies'('urn:example:carol452', false)). +answer('urn:example:complies'('urn:example:carol453', false)). +answer('urn:example:complies'('urn:example:carol454', false)). +answer('urn:example:complies'('urn:example:carol455', false)). +answer('urn:example:complies'('urn:example:carol456', false)). +answer('urn:example:complies'('urn:example:carol457', false)). +answer('urn:example:complies'('urn:example:carol458', false)). +answer('urn:example:complies'('urn:example:carol459', false)). +answer('urn:example:complies'('urn:example:carol460', false)). +answer('urn:example:complies'('urn:example:carol461', false)). +answer('urn:example:complies'('urn:example:carol462', false)). +answer('urn:example:complies'('urn:example:carol463', false)). +answer('urn:example:complies'('urn:example:carol464', false)). +answer('urn:example:complies'('urn:example:carol465', false)). +answer('urn:example:complies'('urn:example:carol466', false)). +answer('urn:example:complies'('urn:example:carol467', false)). +answer('urn:example:complies'('urn:example:carol468', false)). +answer('urn:example:complies'('urn:example:carol469', false)). +answer('urn:example:complies'('urn:example:carol470', false)). +answer('urn:example:complies'('urn:example:carol471', false)). +answer('urn:example:complies'('urn:example:carol472', false)). +answer('urn:example:complies'('urn:example:carol473', false)). +answer('urn:example:complies'('urn:example:carol474', false)). +answer('urn:example:complies'('urn:example:carol475', false)). +answer('urn:example:complies'('urn:example:carol476', false)). +answer('urn:example:complies'('urn:example:carol477', false)). +answer('urn:example:complies'('urn:example:carol478', false)). +answer('urn:example:complies'('urn:example:carol479', false)). +answer('urn:example:complies'('urn:example:carol480', false)). +answer('urn:example:complies'('urn:example:carol481', false)). +answer('urn:example:complies'('urn:example:carol482', false)). +answer('urn:example:complies'('urn:example:carol483', false)). +answer('urn:example:complies'('urn:example:carol484', false)). +answer('urn:example:complies'('urn:example:carol485', false)). +answer('urn:example:complies'('urn:example:carol486', false)). +answer('urn:example:complies'('urn:example:carol487', false)). +answer('urn:example:complies'('urn:example:carol488', false)). +answer('urn:example:complies'('urn:example:carol489', false)). +answer('urn:example:complies'('urn:example:carol490', false)). +answer('urn:example:complies'('urn:example:carol491', false)). +answer('urn:example:complies'('urn:example:carol492', false)). +answer('urn:example:complies'('urn:example:carol493', false)). +answer('urn:example:complies'('urn:example:carol494', false)). +answer('urn:example:complies'('urn:example:carol495', false)). +answer('urn:example:complies'('urn:example:carol496', false)). +answer('urn:example:complies'('urn:example:carol497', false)). +answer('urn:example:complies'('urn:example:carol498', false)). +answer('urn:example:complies'('urn:example:carol499', false)). +answer('urn:example:complies'('urn:example:carol500', false)). +answer('urn:example:complies'('urn:example:carol501', false)). +answer('urn:example:complies'('urn:example:carol502', false)). +answer('urn:example:complies'('urn:example:carol503', false)). +answer('urn:example:complies'('urn:example:carol504', false)). +answer('urn:example:complies'('urn:example:carol505', false)). +answer('urn:example:complies'('urn:example:carol506', false)). +answer('urn:example:complies'('urn:example:carol507', false)). +answer('urn:example:complies'('urn:example:carol508', false)). +answer('urn:example:complies'('urn:example:carol509', false)). +answer('urn:example:complies'('urn:example:carol510', false)). +answer('urn:example:complies'('urn:example:carol511', false)). +answer('urn:example:complies'('urn:example:carol512', false)). +answer('urn:example:complies'('urn:example:carol513', false)). +answer('urn:example:complies'('urn:example:carol514', false)). +answer('urn:example:complies'('urn:example:carol515', false)). +answer('urn:example:complies'('urn:example:carol516', false)). +answer('urn:example:complies'('urn:example:carol517', false)). +answer('urn:example:complies'('urn:example:carol518', false)). +answer('urn:example:complies'('urn:example:carol519', false)). +answer('urn:example:complies'('urn:example:carol520', false)). +answer('urn:example:complies'('urn:example:carol521', false)). +answer('urn:example:complies'('urn:example:carol522', false)). +answer('urn:example:complies'('urn:example:carol523', false)). +answer('urn:example:complies'('urn:example:carol524', false)). +answer('urn:example:complies'('urn:example:carol525', false)). +answer('urn:example:complies'('urn:example:carol526', false)). +answer('urn:example:complies'('urn:example:carol527', false)). +answer('urn:example:complies'('urn:example:carol528', false)). +answer('urn:example:complies'('urn:example:carol529', false)). +answer('urn:example:complies'('urn:example:carol530', false)). +answer('urn:example:complies'('urn:example:carol531', false)). +answer('urn:example:complies'('urn:example:carol532', false)). +answer('urn:example:complies'('urn:example:carol533', false)). +answer('urn:example:complies'('urn:example:carol534', false)). +answer('urn:example:complies'('urn:example:carol535', false)). +answer('urn:example:complies'('urn:example:carol536', false)). +answer('urn:example:complies'('urn:example:carol537', false)). +answer('urn:example:complies'('urn:example:carol538', false)). +answer('urn:example:complies'('urn:example:carol539', false)). +answer('urn:example:complies'('urn:example:carol540', false)). +answer('urn:example:complies'('urn:example:carol541', false)). +answer('urn:example:complies'('urn:example:carol542', false)). +answer('urn:example:complies'('urn:example:carol543', false)). +answer('urn:example:complies'('urn:example:carol544', false)). +answer('urn:example:complies'('urn:example:carol545', false)). +answer('urn:example:complies'('urn:example:carol546', false)). +answer('urn:example:complies'('urn:example:carol547', false)). +answer('urn:example:complies'('urn:example:carol548', false)). +answer('urn:example:complies'('urn:example:carol549', false)). +answer('urn:example:complies'('urn:example:carol550', false)). +answer('urn:example:complies'('urn:example:carol551', false)). +answer('urn:example:complies'('urn:example:carol552', false)). +answer('urn:example:complies'('urn:example:carol553', false)). +answer('urn:example:complies'('urn:example:carol554', false)). +answer('urn:example:complies'('urn:example:carol555', false)). +answer('urn:example:complies'('urn:example:carol556', false)). +answer('urn:example:complies'('urn:example:carol557', false)). +answer('urn:example:complies'('urn:example:carol558', false)). +answer('urn:example:complies'('urn:example:carol559', false)). +answer('urn:example:complies'('urn:example:carol560', false)). +answer('urn:example:complies'('urn:example:carol561', false)). +answer('urn:example:complies'('urn:example:carol562', false)). +answer('urn:example:complies'('urn:example:carol563', false)). +answer('urn:example:complies'('urn:example:carol564', false)). +answer('urn:example:complies'('urn:example:carol565', false)). +answer('urn:example:complies'('urn:example:carol566', false)). +answer('urn:example:complies'('urn:example:carol567', false)). +answer('urn:example:complies'('urn:example:carol568', false)). +answer('urn:example:complies'('urn:example:carol569', false)). +answer('urn:example:complies'('urn:example:carol570', false)). +answer('urn:example:complies'('urn:example:carol571', false)). +answer('urn:example:complies'('urn:example:carol572', false)). +answer('urn:example:complies'('urn:example:carol573', false)). +answer('urn:example:complies'('urn:example:carol574', false)). +answer('urn:example:complies'('urn:example:carol575', false)). +answer('urn:example:complies'('urn:example:carol576', false)). +answer('urn:example:complies'('urn:example:carol577', false)). +answer('urn:example:complies'('urn:example:carol578', false)). +answer('urn:example:complies'('urn:example:carol579', false)). +answer('urn:example:complies'('urn:example:carol580', false)). +answer('urn:example:complies'('urn:example:carol581', false)). +answer('urn:example:complies'('urn:example:carol582', false)). +answer('urn:example:complies'('urn:example:carol583', false)). +answer('urn:example:complies'('urn:example:carol584', false)). +answer('urn:example:complies'('urn:example:carol585', false)). +answer('urn:example:complies'('urn:example:carol586', false)). +answer('urn:example:complies'('urn:example:carol587', false)). +answer('urn:example:complies'('urn:example:carol588', false)). +answer('urn:example:complies'('urn:example:carol589', false)). +answer('urn:example:complies'('urn:example:carol590', false)). +answer('urn:example:complies'('urn:example:carol591', false)). +answer('urn:example:complies'('urn:example:carol592', false)). +answer('urn:example:complies'('urn:example:carol593', false)). +answer('urn:example:complies'('urn:example:carol594', false)). +answer('urn:example:complies'('urn:example:carol595', false)). +answer('urn:example:complies'('urn:example:carol596', false)). +answer('urn:example:complies'('urn:example:carol597', false)). +answer('urn:example:complies'('urn:example:carol598', false)). +answer('urn:example:complies'('urn:example:carol599', false)). +answer('urn:example:complies'('urn:example:carol600', false)). +answer('urn:example:complies'('urn:example:carol601', false)). +answer('urn:example:complies'('urn:example:carol602', false)). +answer('urn:example:complies'('urn:example:carol603', false)). +answer('urn:example:complies'('urn:example:carol604', false)). +answer('urn:example:complies'('urn:example:carol605', false)). +answer('urn:example:complies'('urn:example:carol606', false)). +answer('urn:example:complies'('urn:example:carol607', false)). +answer('urn:example:complies'('urn:example:carol608', false)). +answer('urn:example:complies'('urn:example:carol609', false)). +answer('urn:example:complies'('urn:example:carol610', false)). +answer('urn:example:complies'('urn:example:carol611', false)). +answer('urn:example:complies'('urn:example:carol612', false)). +answer('urn:example:complies'('urn:example:carol613', false)). +answer('urn:example:complies'('urn:example:carol614', false)). +answer('urn:example:complies'('urn:example:carol615', false)). +answer('urn:example:complies'('urn:example:carol616', false)). +answer('urn:example:complies'('urn:example:carol617', false)). +answer('urn:example:complies'('urn:example:carol618', false)). +answer('urn:example:complies'('urn:example:carol619', false)). +answer('urn:example:complies'('urn:example:carol620', false)). +answer('urn:example:complies'('urn:example:carol621', false)). +answer('urn:example:complies'('urn:example:carol622', false)). +answer('urn:example:complies'('urn:example:carol623', false)). +answer('urn:example:complies'('urn:example:carol624', false)). +answer('urn:example:complies'('urn:example:carol625', false)). +answer('urn:example:complies'('urn:example:carol626', false)). +answer('urn:example:complies'('urn:example:carol627', false)). +answer('urn:example:complies'('urn:example:carol628', false)). +answer('urn:example:complies'('urn:example:carol629', false)). +answer('urn:example:complies'('urn:example:carol630', false)). +answer('urn:example:complies'('urn:example:carol631', false)). +answer('urn:example:complies'('urn:example:carol632', false)). +answer('urn:example:complies'('urn:example:carol633', false)). +answer('urn:example:complies'('urn:example:carol634', false)). +answer('urn:example:complies'('urn:example:carol635', false)). +answer('urn:example:complies'('urn:example:carol636', false)). +answer('urn:example:complies'('urn:example:carol637', false)). +answer('urn:example:complies'('urn:example:carol638', false)). +answer('urn:example:complies'('urn:example:carol639', false)). +answer('urn:example:complies'('urn:example:carol640', false)). +answer('urn:example:complies'('urn:example:carol641', false)). +answer('urn:example:complies'('urn:example:carol642', false)). +answer('urn:example:complies'('urn:example:carol643', false)). +answer('urn:example:complies'('urn:example:carol644', false)). +answer('urn:example:complies'('urn:example:carol645', false)). +answer('urn:example:complies'('urn:example:carol646', false)). +answer('urn:example:complies'('urn:example:carol647', false)). +answer('urn:example:complies'('urn:example:carol648', false)). +answer('urn:example:complies'('urn:example:carol649', false)). +answer('urn:example:complies'('urn:example:carol650', false)). +answer('urn:example:complies'('urn:example:carol651', false)). +answer('urn:example:complies'('urn:example:carol652', false)). +answer('urn:example:complies'('urn:example:carol653', false)). +answer('urn:example:complies'('urn:example:carol654', false)). +answer('urn:example:complies'('urn:example:carol655', false)). +answer('urn:example:complies'('urn:example:carol656', false)). +answer('urn:example:complies'('urn:example:carol657', false)). +answer('urn:example:complies'('urn:example:carol658', false)). +answer('urn:example:complies'('urn:example:carol659', false)). +answer('urn:example:complies'('urn:example:carol660', false)). +answer('urn:example:complies'('urn:example:carol661', false)). +answer('urn:example:complies'('urn:example:carol662', false)). +answer('urn:example:complies'('urn:example:carol663', false)). +answer('urn:example:complies'('urn:example:carol664', false)). +answer('urn:example:complies'('urn:example:carol665', false)). +answer('urn:example:complies'('urn:example:carol666', false)). +answer('urn:example:complies'('urn:example:carol667', false)). +answer('urn:example:complies'('urn:example:carol668', false)). +answer('urn:example:complies'('urn:example:carol669', false)). +answer('urn:example:complies'('urn:example:carol670', false)). +answer('urn:example:complies'('urn:example:carol671', false)). +answer('urn:example:complies'('urn:example:carol672', false)). +answer('urn:example:complies'('urn:example:carol673', false)). +answer('urn:example:complies'('urn:example:carol674', false)). +answer('urn:example:complies'('urn:example:carol675', false)). +answer('urn:example:complies'('urn:example:carol676', false)). +answer('urn:example:complies'('urn:example:carol677', false)). +answer('urn:example:complies'('urn:example:carol678', false)). +answer('urn:example:complies'('urn:example:carol679', false)). +answer('urn:example:complies'('urn:example:carol680', false)). +answer('urn:example:complies'('urn:example:carol681', false)). +answer('urn:example:complies'('urn:example:carol682', false)). +answer('urn:example:complies'('urn:example:carol683', false)). +answer('urn:example:complies'('urn:example:carol684', false)). +answer('urn:example:complies'('urn:example:carol685', false)). +answer('urn:example:complies'('urn:example:carol686', false)). +answer('urn:example:complies'('urn:example:carol687', false)). +answer('urn:example:complies'('urn:example:carol688', false)). +answer('urn:example:complies'('urn:example:carol689', false)). +answer('urn:example:complies'('urn:example:carol690', false)). +answer('urn:example:complies'('urn:example:carol691', false)). +answer('urn:example:complies'('urn:example:carol692', false)). +answer('urn:example:complies'('urn:example:carol693', false)). +answer('urn:example:complies'('urn:example:carol694', false)). +answer('urn:example:complies'('urn:example:carol695', false)). +answer('urn:example:complies'('urn:example:carol696', false)). +answer('urn:example:complies'('urn:example:carol697', false)). +answer('urn:example:complies'('urn:example:carol698', false)). +answer('urn:example:complies'('urn:example:carol699', false)). +answer('urn:example:complies'('urn:example:carol700', false)). +answer('urn:example:complies'('urn:example:carol701', false)). +answer('urn:example:complies'('urn:example:carol702', false)). +answer('urn:example:complies'('urn:example:carol703', false)). +answer('urn:example:complies'('urn:example:carol704', false)). +answer('urn:example:complies'('urn:example:carol705', false)). +answer('urn:example:complies'('urn:example:carol706', false)). +answer('urn:example:complies'('urn:example:carol707', false)). +answer('urn:example:complies'('urn:example:carol708', false)). +answer('urn:example:complies'('urn:example:carol709', false)). +answer('urn:example:complies'('urn:example:carol710', false)). +answer('urn:example:complies'('urn:example:carol711', false)). +answer('urn:example:complies'('urn:example:carol712', false)). +answer('urn:example:complies'('urn:example:carol713', false)). +answer('urn:example:complies'('urn:example:carol714', false)). +answer('urn:example:complies'('urn:example:carol715', false)). +answer('urn:example:complies'('urn:example:carol716', false)). +answer('urn:example:complies'('urn:example:carol717', false)). +answer('urn:example:complies'('urn:example:carol718', false)). +answer('urn:example:complies'('urn:example:carol719', false)). +answer('urn:example:complies'('urn:example:carol720', false)). +answer('urn:example:complies'('urn:example:carol721', false)). +answer('urn:example:complies'('urn:example:carol722', false)). +answer('urn:example:complies'('urn:example:carol723', false)). +answer('urn:example:complies'('urn:example:carol724', false)). +answer('urn:example:complies'('urn:example:carol725', false)). +answer('urn:example:complies'('urn:example:carol726', false)). +answer('urn:example:complies'('urn:example:carol727', false)). +answer('urn:example:complies'('urn:example:carol728', false)). +answer('urn:example:complies'('urn:example:carol729', false)). +answer('urn:example:complies'('urn:example:carol730', false)). +answer('urn:example:complies'('urn:example:carol731', false)). +answer('urn:example:complies'('urn:example:carol732', false)). +answer('urn:example:complies'('urn:example:carol733', false)). +answer('urn:example:complies'('urn:example:carol734', false)). +answer('urn:example:complies'('urn:example:carol735', false)). +answer('urn:example:complies'('urn:example:carol736', false)). +answer('urn:example:complies'('urn:example:carol737', false)). +answer('urn:example:complies'('urn:example:carol738', false)). +answer('urn:example:complies'('urn:example:carol739', false)). +answer('urn:example:complies'('urn:example:carol740', false)). +answer('urn:example:complies'('urn:example:carol741', false)). +answer('urn:example:complies'('urn:example:carol742', false)). +answer('urn:example:complies'('urn:example:carol743', false)). +answer('urn:example:complies'('urn:example:carol744', false)). +answer('urn:example:complies'('urn:example:carol745', false)). +answer('urn:example:complies'('urn:example:carol746', false)). +answer('urn:example:complies'('urn:example:carol747', false)). +answer('urn:example:complies'('urn:example:carol748', false)). +answer('urn:example:complies'('urn:example:carol749', false)). +answer('urn:example:complies'('urn:example:carol750', false)). +answer('urn:example:complies'('urn:example:carol751', false)). +answer('urn:example:complies'('urn:example:carol752', false)). +answer('urn:example:complies'('urn:example:carol753', false)). +answer('urn:example:complies'('urn:example:carol754', false)). +answer('urn:example:complies'('urn:example:carol755', false)). +answer('urn:example:complies'('urn:example:carol756', false)). +answer('urn:example:complies'('urn:example:carol757', false)). +answer('urn:example:complies'('urn:example:carol758', false)). +answer('urn:example:complies'('urn:example:carol759', false)). +answer('urn:example:complies'('urn:example:carol760', false)). +answer('urn:example:complies'('urn:example:carol761', false)). +answer('urn:example:complies'('urn:example:carol762', false)). +answer('urn:example:complies'('urn:example:carol763', false)). +answer('urn:example:complies'('urn:example:carol764', false)). +answer('urn:example:complies'('urn:example:carol765', false)). +answer('urn:example:complies'('urn:example:carol766', false)). +answer('urn:example:complies'('urn:example:carol767', false)). +answer('urn:example:complies'('urn:example:carol768', false)). +answer('urn:example:complies'('urn:example:carol769', false)). +answer('urn:example:complies'('urn:example:carol770', false)). +answer('urn:example:complies'('urn:example:carol771', false)). +answer('urn:example:complies'('urn:example:carol772', false)). +answer('urn:example:complies'('urn:example:carol773', false)). +answer('urn:example:complies'('urn:example:carol774', false)). +answer('urn:example:complies'('urn:example:carol775', false)). +answer('urn:example:complies'('urn:example:carol776', false)). +answer('urn:example:complies'('urn:example:carol777', false)). +answer('urn:example:complies'('urn:example:carol778', false)). +answer('urn:example:complies'('urn:example:carol779', false)). +answer('urn:example:complies'('urn:example:carol780', false)). +answer('urn:example:complies'('urn:example:carol781', false)). +answer('urn:example:complies'('urn:example:carol782', false)). +answer('urn:example:complies'('urn:example:carol783', false)). +answer('urn:example:complies'('urn:example:carol784', false)). +answer('urn:example:complies'('urn:example:carol785', false)). +answer('urn:example:complies'('urn:example:carol786', false)). +answer('urn:example:complies'('urn:example:carol787', false)). +answer('urn:example:complies'('urn:example:carol788', false)). +answer('urn:example:complies'('urn:example:carol789', false)). +answer('urn:example:complies'('urn:example:carol790', false)). +answer('urn:example:complies'('urn:example:carol791', false)). +answer('urn:example:complies'('urn:example:carol792', false)). +answer('urn:example:complies'('urn:example:carol793', false)). +answer('urn:example:complies'('urn:example:carol794', false)). +answer('urn:example:complies'('urn:example:carol795', false)). +answer('urn:example:complies'('urn:example:carol796', false)). +answer('urn:example:complies'('urn:example:carol797', false)). +answer('urn:example:complies'('urn:example:carol798', false)). +answer('urn:example:complies'('urn:example:carol799', false)). +answer('urn:example:complies'('urn:example:carol800', false)). +answer('urn:example:complies'('urn:example:carol801', false)). +answer('urn:example:complies'('urn:example:carol802', false)). +answer('urn:example:complies'('urn:example:carol803', false)). +answer('urn:example:complies'('urn:example:carol804', false)). +answer('urn:example:complies'('urn:example:carol805', false)). +answer('urn:example:complies'('urn:example:carol806', false)). +answer('urn:example:complies'('urn:example:carol807', false)). +answer('urn:example:complies'('urn:example:carol808', false)). +answer('urn:example:complies'('urn:example:carol809', false)). +answer('urn:example:complies'('urn:example:carol810', false)). +answer('urn:example:complies'('urn:example:carol811', false)). +answer('urn:example:complies'('urn:example:carol812', false)). +answer('urn:example:complies'('urn:example:carol813', false)). +answer('urn:example:complies'('urn:example:carol814', false)). +answer('urn:example:complies'('urn:example:carol815', false)). +answer('urn:example:complies'('urn:example:carol816', false)). +answer('urn:example:complies'('urn:example:carol817', false)). +answer('urn:example:complies'('urn:example:carol818', false)). +answer('urn:example:complies'('urn:example:carol819', false)). +answer('urn:example:complies'('urn:example:carol820', false)). +answer('urn:example:complies'('urn:example:carol821', false)). +answer('urn:example:complies'('urn:example:carol822', false)). +answer('urn:example:complies'('urn:example:carol823', false)). +answer('urn:example:complies'('urn:example:carol824', false)). +answer('urn:example:complies'('urn:example:carol825', false)). +answer('urn:example:complies'('urn:example:carol826', false)). +answer('urn:example:complies'('urn:example:carol827', false)). +answer('urn:example:complies'('urn:example:carol828', false)). +answer('urn:example:complies'('urn:example:carol829', false)). +answer('urn:example:complies'('urn:example:carol830', false)). +answer('urn:example:complies'('urn:example:carol831', false)). +answer('urn:example:complies'('urn:example:carol832', false)). +answer('urn:example:complies'('urn:example:carol833', false)). +answer('urn:example:complies'('urn:example:carol834', false)). +answer('urn:example:complies'('urn:example:carol835', false)). +answer('urn:example:complies'('urn:example:carol836', false)). +answer('urn:example:complies'('urn:example:carol837', false)). +answer('urn:example:complies'('urn:example:carol838', false)). +answer('urn:example:complies'('urn:example:carol839', false)). +answer('urn:example:complies'('urn:example:carol840', false)). +answer('urn:example:complies'('urn:example:carol841', false)). +answer('urn:example:complies'('urn:example:carol842', false)). +answer('urn:example:complies'('urn:example:carol843', false)). +answer('urn:example:complies'('urn:example:carol844', false)). +answer('urn:example:complies'('urn:example:carol845', false)). +answer('urn:example:complies'('urn:example:carol846', false)). +answer('urn:example:complies'('urn:example:carol847', false)). +answer('urn:example:complies'('urn:example:carol848', false)). +answer('urn:example:complies'('urn:example:carol849', false)). +answer('urn:example:complies'('urn:example:carol850', false)). +answer('urn:example:complies'('urn:example:carol851', false)). +answer('urn:example:complies'('urn:example:carol852', false)). +answer('urn:example:complies'('urn:example:carol853', false)). +answer('urn:example:complies'('urn:example:carol854', false)). +answer('urn:example:complies'('urn:example:carol855', false)). +answer('urn:example:complies'('urn:example:carol856', false)). +answer('urn:example:complies'('urn:example:carol857', false)). +answer('urn:example:complies'('urn:example:carol858', false)). +answer('urn:example:complies'('urn:example:carol859', false)). +answer('urn:example:complies'('urn:example:carol860', false)). +answer('urn:example:complies'('urn:example:carol861', false)). +answer('urn:example:complies'('urn:example:carol862', false)). +answer('urn:example:complies'('urn:example:carol863', false)). +answer('urn:example:complies'('urn:example:carol864', false)). +answer('urn:example:complies'('urn:example:carol865', false)). +answer('urn:example:complies'('urn:example:carol866', false)). +answer('urn:example:complies'('urn:example:carol867', false)). +answer('urn:example:complies'('urn:example:carol868', false)). +answer('urn:example:complies'('urn:example:carol869', false)). +answer('urn:example:complies'('urn:example:carol870', false)). +answer('urn:example:complies'('urn:example:carol871', false)). +answer('urn:example:complies'('urn:example:carol872', false)). +answer('urn:example:complies'('urn:example:carol873', false)). +answer('urn:example:complies'('urn:example:carol874', false)). +answer('urn:example:complies'('urn:example:carol875', false)). +answer('urn:example:complies'('urn:example:carol876', false)). +answer('urn:example:complies'('urn:example:carol877', false)). +answer('urn:example:complies'('urn:example:carol878', false)). +answer('urn:example:complies'('urn:example:carol879', false)). +answer('urn:example:complies'('urn:example:carol880', false)). +answer('urn:example:complies'('urn:example:carol881', false)). +answer('urn:example:complies'('urn:example:carol882', false)). +answer('urn:example:complies'('urn:example:carol883', false)). +answer('urn:example:complies'('urn:example:carol884', false)). +answer('urn:example:complies'('urn:example:carol885', false)). +answer('urn:example:complies'('urn:example:carol886', false)). +answer('urn:example:complies'('urn:example:carol887', false)). +answer('urn:example:complies'('urn:example:carol888', false)). +answer('urn:example:complies'('urn:example:carol889', false)). +answer('urn:example:complies'('urn:example:carol890', false)). +answer('urn:example:complies'('urn:example:carol891', false)). +answer('urn:example:complies'('urn:example:carol892', false)). +answer('urn:example:complies'('urn:example:carol893', false)). +answer('urn:example:complies'('urn:example:carol894', false)). +answer('urn:example:complies'('urn:example:carol895', false)). +answer('urn:example:complies'('urn:example:carol896', false)). +answer('urn:example:complies'('urn:example:carol897', false)). +answer('urn:example:complies'('urn:example:carol898', false)). +answer('urn:example:complies'('urn:example:carol899', false)). +answer('urn:example:complies'('urn:example:carol900', false)). +answer('urn:example:complies'('urn:example:carol901', false)). +answer('urn:example:complies'('urn:example:carol902', false)). +answer('urn:example:complies'('urn:example:carol903', false)). +answer('urn:example:complies'('urn:example:carol904', false)). +answer('urn:example:complies'('urn:example:carol905', false)). +answer('urn:example:complies'('urn:example:carol906', false)). +answer('urn:example:complies'('urn:example:carol907', false)). +answer('urn:example:complies'('urn:example:carol908', false)). +answer('urn:example:complies'('urn:example:carol909', false)). +answer('urn:example:complies'('urn:example:carol910', false)). +answer('urn:example:complies'('urn:example:carol911', false)). +answer('urn:example:complies'('urn:example:carol912', false)). +answer('urn:example:complies'('urn:example:carol913', false)). +answer('urn:example:complies'('urn:example:carol914', false)). +answer('urn:example:complies'('urn:example:carol915', false)). +answer('urn:example:complies'('urn:example:carol916', false)). +answer('urn:example:complies'('urn:example:carol917', false)). +answer('urn:example:complies'('urn:example:carol918', false)). +answer('urn:example:complies'('urn:example:carol919', false)). +answer('urn:example:complies'('urn:example:carol920', false)). +answer('urn:example:complies'('urn:example:carol921', false)). +answer('urn:example:complies'('urn:example:carol922', false)). +answer('urn:example:complies'('urn:example:carol923', false)). +answer('urn:example:complies'('urn:example:carol924', false)). +answer('urn:example:complies'('urn:example:carol925', false)). +answer('urn:example:complies'('urn:example:carol926', false)). +answer('urn:example:complies'('urn:example:carol927', false)). +answer('urn:example:complies'('urn:example:carol928', false)). +answer('urn:example:complies'('urn:example:carol929', false)). +answer('urn:example:complies'('urn:example:carol930', false)). +answer('urn:example:complies'('urn:example:carol931', false)). +answer('urn:example:complies'('urn:example:carol932', false)). +answer('urn:example:complies'('urn:example:carol933', false)). +answer('urn:example:complies'('urn:example:carol934', false)). +answer('urn:example:complies'('urn:example:carol935', false)). +answer('urn:example:complies'('urn:example:carol936', false)). +answer('urn:example:complies'('urn:example:carol937', false)). +answer('urn:example:complies'('urn:example:carol938', false)). +answer('urn:example:complies'('urn:example:carol939', false)). +answer('urn:example:complies'('urn:example:carol940', false)). +answer('urn:example:complies'('urn:example:carol941', false)). +answer('urn:example:complies'('urn:example:carol942', false)). +answer('urn:example:complies'('urn:example:carol943', false)). +answer('urn:example:complies'('urn:example:carol944', false)). +answer('urn:example:complies'('urn:example:carol945', false)). +answer('urn:example:complies'('urn:example:carol946', false)). +answer('urn:example:complies'('urn:example:carol947', false)). +answer('urn:example:complies'('urn:example:carol948', false)). +answer('urn:example:complies'('urn:example:carol949', false)). +answer('urn:example:complies'('urn:example:carol950', false)). +answer('urn:example:complies'('urn:example:carol951', false)). +answer('urn:example:complies'('urn:example:carol952', false)). +answer('urn:example:complies'('urn:example:carol953', false)). +answer('urn:example:complies'('urn:example:carol954', false)). +answer('urn:example:complies'('urn:example:carol955', false)). +answer('urn:example:complies'('urn:example:carol956', false)). +answer('urn:example:complies'('urn:example:carol957', false)). +answer('urn:example:complies'('urn:example:carol958', false)). +answer('urn:example:complies'('urn:example:carol959', false)). +answer('urn:example:complies'('urn:example:carol960', false)). +answer('urn:example:complies'('urn:example:carol961', false)). +answer('urn:example:complies'('urn:example:carol962', false)). +answer('urn:example:complies'('urn:example:carol963', false)). +answer('urn:example:complies'('urn:example:carol964', false)). +answer('urn:example:complies'('urn:example:carol965', false)). +answer('urn:example:complies'('urn:example:carol966', false)). +answer('urn:example:complies'('urn:example:carol967', false)). +answer('urn:example:complies'('urn:example:carol968', false)). +answer('urn:example:complies'('urn:example:carol969', false)). +answer('urn:example:complies'('urn:example:carol970', false)). +answer('urn:example:complies'('urn:example:carol971', false)). +answer('urn:example:complies'('urn:example:carol972', false)). +answer('urn:example:complies'('urn:example:carol973', false)). +answer('urn:example:complies'('urn:example:carol974', false)). +answer('urn:example:complies'('urn:example:carol975', false)). +answer('urn:example:complies'('urn:example:carol976', false)). +answer('urn:example:complies'('urn:example:carol977', false)). +answer('urn:example:complies'('urn:example:carol978', false)). +answer('urn:example:complies'('urn:example:carol979', false)). +answer('urn:example:complies'('urn:example:carol980', false)). +answer('urn:example:complies'('urn:example:carol981', false)). +answer('urn:example:complies'('urn:example:carol982', false)). +answer('urn:example:complies'('urn:example:carol983', false)). +answer('urn:example:complies'('urn:example:carol984', false)). +answer('urn:example:complies'('urn:example:carol985', false)). +answer('urn:example:complies'('urn:example:carol986', false)). +answer('urn:example:complies'('urn:example:carol987', false)). +answer('urn:example:complies'('urn:example:carol988', false)). +answer('urn:example:complies'('urn:example:carol989', false)). +answer('urn:example:complies'('urn:example:carol990', false)). +answer('urn:example:complies'('urn:example:carol991', false)). +answer('urn:example:complies'('urn:example:carol992', false)). +answer('urn:example:complies'('urn:example:carol993', false)). +answer('urn:example:complies'('urn:example:carol994', false)). +answer('urn:example:complies'('urn:example:carol995', false)). +answer('urn:example:complies'('urn:example:carol996', false)). +answer('urn:example:complies'('urn:example:carol997', false)). +answer('urn:example:complies'('urn:example:carol998', false)). +answer('urn:example:complies'('urn:example:carol999', false)). +answer('urn:example:complies'('urn:example:carol1000', false)). +answer('urn:example:complies'('urn:example:carol1001', false)). +answer('urn:example:complies'('urn:example:carol1002', false)). +answer('urn:example:complies'('urn:example:carol1003', false)). +answer('urn:example:complies'('urn:example:carol1004', false)). +answer('urn:example:complies'('urn:example:carol1005', false)). +answer('urn:example:complies'('urn:example:carol1006', false)). +answer('urn:example:complies'('urn:example:carol1007', false)). +answer('urn:example:complies'('urn:example:carol1008', false)). +answer('urn:example:complies'('urn:example:carol1009', false)). +answer('urn:example:complies'('urn:example:carol1010', false)). +answer('urn:example:complies'('urn:example:carol1011', false)). +answer('urn:example:complies'('urn:example:carol1012', false)). +answer('urn:example:complies'('urn:example:carol1013', false)). +answer('urn:example:complies'('urn:example:carol1014', false)). +answer('urn:example:complies'('urn:example:carol1015', false)). +answer('urn:example:complies'('urn:example:carol1016', false)). +answer('urn:example:complies'('urn:example:carol1017', false)). +answer('urn:example:complies'('urn:example:carol1018', false)). +answer('urn:example:complies'('urn:example:carol1019', false)). +answer('urn:example:complies'('urn:example:carol1020', false)). +answer('urn:example:complies'('urn:example:carol1021', false)). +answer('urn:example:complies'('urn:example:carol1022', false)). +answer('urn:example:complies'('urn:example:carol1023', false)). +answer('urn:example:complies'('urn:example:carol1024', false)). +answer('urn:example:complies'('urn:example:carol1025', false)). +answer('urn:example:complies'('urn:example:carol1026', false)). +answer('urn:example:complies'('urn:example:carol1027', false)). +answer('urn:example:complies'('urn:example:carol1028', false)). +answer('urn:example:complies'('urn:example:carol1029', false)). +answer('urn:example:complies'('urn:example:carol1030', false)). +answer('urn:example:complies'('urn:example:carol1031', false)). +answer('urn:example:complies'('urn:example:carol1032', false)). +answer('urn:example:complies'('urn:example:carol1033', false)). +answer('urn:example:complies'('urn:example:carol1034', false)). +answer('urn:example:complies'('urn:example:carol1035', false)). +answer('urn:example:complies'('urn:example:carol1036', false)). +answer('urn:example:complies'('urn:example:carol1037', false)). +answer('urn:example:complies'('urn:example:carol1038', false)). +answer('urn:example:complies'('urn:example:carol1039', false)). +answer('urn:example:complies'('urn:example:carol1040', false)). +answer('urn:example:complies'('urn:example:carol1041', false)). +answer('urn:example:complies'('urn:example:carol1042', false)). +answer('urn:example:complies'('urn:example:carol1043', false)). +answer('urn:example:complies'('urn:example:carol1044', false)). +answer('urn:example:complies'('urn:example:carol1045', false)). +answer('urn:example:complies'('urn:example:carol1046', false)). +answer('urn:example:complies'('urn:example:carol1047', false)). +answer('urn:example:complies'('urn:example:carol1048', false)). +answer('urn:example:complies'('urn:example:carol1049', false)). +answer('urn:example:complies'('urn:example:carol1050', false)). +answer('urn:example:complies'('urn:example:carol1051', false)). +answer('urn:example:complies'('urn:example:carol1052', false)). +answer('urn:example:complies'('urn:example:carol1053', false)). +answer('urn:example:complies'('urn:example:carol1054', false)). +answer('urn:example:complies'('urn:example:carol1055', false)). +answer('urn:example:complies'('urn:example:carol1056', false)). +answer('urn:example:complies'('urn:example:carol1057', false)). +answer('urn:example:complies'('urn:example:carol1058', false)). +answer('urn:example:complies'('urn:example:carol1059', false)). +answer('urn:example:complies'('urn:example:carol1060', false)). +answer('urn:example:complies'('urn:example:carol1061', false)). +answer('urn:example:complies'('urn:example:carol1062', false)). +answer('urn:example:complies'('urn:example:carol1063', false)). +answer('urn:example:complies'('urn:example:carol1064', false)). +answer('urn:example:complies'('urn:example:carol1065', false)). +answer('urn:example:complies'('urn:example:carol1066', false)). +answer('urn:example:complies'('urn:example:carol1067', false)). +answer('urn:example:complies'('urn:example:carol1068', false)). +answer('urn:example:complies'('urn:example:carol1069', false)). +answer('urn:example:complies'('urn:example:carol1070', false)). +answer('urn:example:complies'('urn:example:carol1071', false)). +answer('urn:example:complies'('urn:example:carol1072', false)). +answer('urn:example:complies'('urn:example:carol1073', false)). +answer('urn:example:complies'('urn:example:carol1074', false)). +answer('urn:example:complies'('urn:example:carol1075', false)). +answer('urn:example:complies'('urn:example:carol1076', false)). +answer('urn:example:complies'('urn:example:carol1077', false)). +answer('urn:example:complies'('urn:example:carol1078', false)). +answer('urn:example:complies'('urn:example:carol1079', false)). +answer('urn:example:complies'('urn:example:carol1080', false)). +answer('urn:example:complies'('urn:example:carol1081', false)). +answer('urn:example:complies'('urn:example:carol1082', false)). +answer('urn:example:complies'('urn:example:carol1083', false)). +answer('urn:example:complies'('urn:example:carol1084', false)). +answer('urn:example:complies'('urn:example:carol1085', false)). +answer('urn:example:complies'('urn:example:carol1086', false)). +answer('urn:example:complies'('urn:example:carol1087', false)). +answer('urn:example:complies'('urn:example:carol1088', false)). +answer('urn:example:complies'('urn:example:carol1089', false)). +answer('urn:example:complies'('urn:example:carol1090', false)). +answer('urn:example:complies'('urn:example:carol1091', false)). +answer('urn:example:complies'('urn:example:carol1092', false)). +answer('urn:example:complies'('urn:example:carol1093', false)). +answer('urn:example:complies'('urn:example:carol1094', false)). +answer('urn:example:complies'('urn:example:carol1095', false)). +answer('urn:example:complies'('urn:example:carol1096', false)). +answer('urn:example:complies'('urn:example:carol1097', false)). +answer('urn:example:complies'('urn:example:carol1098', false)). +answer('urn:example:complies'('urn:example:carol1099', false)). +answer('urn:example:complies'('urn:example:carol1100', false)). +answer('urn:example:complies'('urn:example:carol1101', false)). +answer('urn:example:complies'('urn:example:carol1102', false)). +answer('urn:example:complies'('urn:example:carol1103', false)). +answer('urn:example:complies'('urn:example:carol1104', false)). +answer('urn:example:complies'('urn:example:carol1105', false)). +answer('urn:example:complies'('urn:example:carol1106', false)). +answer('urn:example:complies'('urn:example:carol1107', false)). +answer('urn:example:complies'('urn:example:carol1108', false)). +answer('urn:example:complies'('urn:example:carol1109', false)). +answer('urn:example:complies'('urn:example:carol1110', false)). +answer('urn:example:complies'('urn:example:carol1111', false)). +answer('urn:example:complies'('urn:example:carol1112', false)). +answer('urn:example:complies'('urn:example:carol1113', false)). +answer('urn:example:complies'('urn:example:carol1114', false)). +answer('urn:example:complies'('urn:example:carol1115', false)). +answer('urn:example:complies'('urn:example:carol1116', false)). +answer('urn:example:complies'('urn:example:carol1117', false)). +answer('urn:example:complies'('urn:example:carol1118', false)). +answer('urn:example:complies'('urn:example:carol1119', false)). +answer('urn:example:complies'('urn:example:carol1120', false)). +answer('urn:example:complies'('urn:example:carol1121', false)). +answer('urn:example:complies'('urn:example:carol1122', false)). +answer('urn:example:complies'('urn:example:carol1123', false)). +answer('urn:example:complies'('urn:example:carol1124', false)). +answer('urn:example:complies'('urn:example:carol1125', false)). +answer('urn:example:complies'('urn:example:carol1126', false)). +answer('urn:example:complies'('urn:example:carol1127', false)). +answer('urn:example:complies'('urn:example:carol1128', false)). +answer('urn:example:complies'('urn:example:carol1129', false)). +answer('urn:example:complies'('urn:example:carol1130', false)). +answer('urn:example:complies'('urn:example:carol1131', false)). +answer('urn:example:complies'('urn:example:carol1132', false)). +answer('urn:example:complies'('urn:example:carol1133', false)). +answer('urn:example:complies'('urn:example:carol1134', false)). +answer('urn:example:complies'('urn:example:carol1135', false)). +answer('urn:example:complies'('urn:example:carol1136', false)). +answer('urn:example:complies'('urn:example:carol1137', false)). +answer('urn:example:complies'('urn:example:carol1138', false)). +answer('urn:example:complies'('urn:example:carol1139', false)). +answer('urn:example:complies'('urn:example:carol1140', false)). +answer('urn:example:complies'('urn:example:carol1141', false)). +answer('urn:example:complies'('urn:example:carol1142', false)). +answer('urn:example:complies'('urn:example:carol1143', false)). +answer('urn:example:complies'('urn:example:carol1144', false)). +answer('urn:example:complies'('urn:example:carol1145', false)). +answer('urn:example:complies'('urn:example:carol1146', false)). +answer('urn:example:complies'('urn:example:carol1147', false)). +answer('urn:example:complies'('urn:example:carol1148', false)). +answer('urn:example:complies'('urn:example:carol1149', false)). +answer('urn:example:complies'('urn:example:carol1150', false)). +answer('urn:example:complies'('urn:example:carol1151', false)). +answer('urn:example:complies'('urn:example:carol1152', false)). +answer('urn:example:complies'('urn:example:carol1153', false)). +answer('urn:example:complies'('urn:example:carol1154', false)). +answer('urn:example:complies'('urn:example:carol1155', false)). +answer('urn:example:complies'('urn:example:carol1156', false)). +answer('urn:example:complies'('urn:example:carol1157', false)). +answer('urn:example:complies'('urn:example:carol1158', false)). +answer('urn:example:complies'('urn:example:carol1159', false)). +answer('urn:example:complies'('urn:example:carol1160', false)). +answer('urn:example:complies'('urn:example:carol1161', false)). +answer('urn:example:complies'('urn:example:carol1162', false)). +answer('urn:example:complies'('urn:example:carol1163', false)). +answer('urn:example:complies'('urn:example:carol1164', false)). +answer('urn:example:complies'('urn:example:carol1165', false)). +answer('urn:example:complies'('urn:example:carol1166', false)). +answer('urn:example:complies'('urn:example:carol1167', false)). +answer('urn:example:complies'('urn:example:carol1168', false)). +answer('urn:example:complies'('urn:example:carol1169', false)). +answer('urn:example:complies'('urn:example:carol1170', false)). +answer('urn:example:complies'('urn:example:carol1171', false)). +answer('urn:example:complies'('urn:example:carol1172', false)). +answer('urn:example:complies'('urn:example:carol1173', false)). +answer('urn:example:complies'('urn:example:carol1174', false)). +answer('urn:example:complies'('urn:example:carol1175', false)). +answer('urn:example:complies'('urn:example:carol1176', false)). +answer('urn:example:complies'('urn:example:carol1177', false)). +answer('urn:example:complies'('urn:example:carol1178', false)). +answer('urn:example:complies'('urn:example:carol1179', false)). +answer('urn:example:complies'('urn:example:carol1180', false)). +answer('urn:example:complies'('urn:example:carol1181', false)). +answer('urn:example:complies'('urn:example:carol1182', false)). +answer('urn:example:complies'('urn:example:carol1183', false)). +answer('urn:example:complies'('urn:example:carol1184', false)). +answer('urn:example:complies'('urn:example:carol1185', false)). +answer('urn:example:complies'('urn:example:carol1186', false)). +answer('urn:example:complies'('urn:example:carol1187', false)). +answer('urn:example:complies'('urn:example:carol1188', false)). +answer('urn:example:complies'('urn:example:carol1189', false)). +answer('urn:example:complies'('urn:example:carol1190', false)). +answer('urn:example:complies'('urn:example:carol1191', false)). +answer('urn:example:complies'('urn:example:carol1192', false)). +answer('urn:example:complies'('urn:example:carol1193', false)). +answer('urn:example:complies'('urn:example:carol1194', false)). +answer('urn:example:complies'('urn:example:carol1195', false)). +answer('urn:example:complies'('urn:example:carol1196', false)). +answer('urn:example:complies'('urn:example:carol1197', false)). +answer('urn:example:complies'('urn:example:carol1198', false)). +answer('urn:example:complies'('urn:example:carol1199', false)). +answer('urn:example:complies'('urn:example:carol1200', false)). +answer('urn:example:complies'('urn:example:carol1201', false)). +answer('urn:example:complies'('urn:example:carol1202', false)). +answer('urn:example:complies'('urn:example:carol1203', false)). +answer('urn:example:complies'('urn:example:carol1204', false)). +answer('urn:example:complies'('urn:example:carol1205', false)). +answer('urn:example:complies'('urn:example:carol1206', false)). +answer('urn:example:complies'('urn:example:carol1207', false)). +answer('urn:example:complies'('urn:example:carol1208', false)). +answer('urn:example:complies'('urn:example:carol1209', false)). +answer('urn:example:complies'('urn:example:carol1210', false)). +answer('urn:example:complies'('urn:example:carol1211', false)). +answer('urn:example:complies'('urn:example:carol1212', false)). +answer('urn:example:complies'('urn:example:carol1213', false)). +answer('urn:example:complies'('urn:example:carol1214', false)). +answer('urn:example:complies'('urn:example:carol1215', false)). +answer('urn:example:complies'('urn:example:carol1216', false)). +answer('urn:example:complies'('urn:example:carol1217', false)). +answer('urn:example:complies'('urn:example:carol1218', false)). +answer('urn:example:complies'('urn:example:carol1219', false)). +answer('urn:example:complies'('urn:example:carol1220', false)). +answer('urn:example:complies'('urn:example:carol1221', false)). +answer('urn:example:complies'('urn:example:carol1222', false)). +answer('urn:example:complies'('urn:example:carol1223', false)). +answer('urn:example:complies'('urn:example:carol1224', false)). +answer('urn:example:complies'('urn:example:carol1225', false)). +answer('urn:example:complies'('urn:example:carol1226', false)). +answer('urn:example:complies'('urn:example:carol1227', false)). +answer('urn:example:complies'('urn:example:carol1228', false)). +answer('urn:example:complies'('urn:example:carol1229', false)). +answer('urn:example:complies'('urn:example:carol1230', false)). +answer('urn:example:complies'('urn:example:carol1231', false)). +answer('urn:example:complies'('urn:example:carol1232', false)). +answer('urn:example:complies'('urn:example:carol1233', false)). +answer('urn:example:complies'('urn:example:carol1234', false)). +answer('urn:example:complies'('urn:example:carol1235', false)). +answer('urn:example:complies'('urn:example:carol1236', false)). +answer('urn:example:complies'('urn:example:carol1237', false)). +answer('urn:example:complies'('urn:example:carol1238', false)). +answer('urn:example:complies'('urn:example:carol1239', false)). +answer('urn:example:complies'('urn:example:carol1240', false)). +answer('urn:example:complies'('urn:example:carol1241', false)). +answer('urn:example:complies'('urn:example:carol1242', false)). +answer('urn:example:complies'('urn:example:carol1243', false)). +answer('urn:example:complies'('urn:example:carol1244', false)). +answer('urn:example:complies'('urn:example:carol1245', false)). +answer('urn:example:complies'('urn:example:carol1246', false)). +answer('urn:example:complies'('urn:example:carol1247', false)). +answer('urn:example:complies'('urn:example:carol1248', false)). +answer('urn:example:complies'('urn:example:carol1249', false)). +answer('urn:example:complies'('urn:example:carol1250', false)). +answer('urn:example:complies'('urn:example:carol1251', false)). +answer('urn:example:complies'('urn:example:carol1252', false)). +answer('urn:example:complies'('urn:example:carol1253', false)). +answer('urn:example:complies'('urn:example:carol1254', false)). +answer('urn:example:complies'('urn:example:carol1255', false)). +answer('urn:example:complies'('urn:example:carol1256', false)). +answer('urn:example:complies'('urn:example:carol1257', false)). +answer('urn:example:complies'('urn:example:carol1258', false)). +answer('urn:example:complies'('urn:example:carol1259', false)). +answer('urn:example:complies'('urn:example:carol1260', false)). +answer('urn:example:complies'('urn:example:carol1261', false)). +answer('urn:example:complies'('urn:example:carol1262', false)). +answer('urn:example:complies'('urn:example:carol1263', false)). +answer('urn:example:complies'('urn:example:carol1264', false)). +answer('urn:example:complies'('urn:example:carol1265', false)). +answer('urn:example:complies'('urn:example:carol1266', false)). +answer('urn:example:complies'('urn:example:carol1267', false)). +answer('urn:example:complies'('urn:example:carol1268', false)). +answer('urn:example:complies'('urn:example:carol1269', false)). +answer('urn:example:complies'('urn:example:carol1270', false)). +answer('urn:example:complies'('urn:example:carol1271', false)). +answer('urn:example:complies'('urn:example:carol1272', false)). +answer('urn:example:complies'('urn:example:carol1273', false)). +answer('urn:example:complies'('urn:example:carol1274', false)). +answer('urn:example:complies'('urn:example:carol1275', false)). +answer('urn:example:complies'('urn:example:carol1276', false)). +answer('urn:example:complies'('urn:example:carol1277', false)). +answer('urn:example:complies'('urn:example:carol1278', false)). +answer('urn:example:complies'('urn:example:carol1279', false)). +answer('urn:example:complies'('urn:example:carol1280', false)). +answer('urn:example:complies'('urn:example:carol1281', false)). +answer('urn:example:complies'('urn:example:carol1282', false)). +answer('urn:example:complies'('urn:example:carol1283', false)). +answer('urn:example:complies'('urn:example:carol1284', false)). +answer('urn:example:complies'('urn:example:carol1285', false)). +answer('urn:example:complies'('urn:example:carol1286', false)). +answer('urn:example:complies'('urn:example:carol1287', false)). +answer('urn:example:complies'('urn:example:carol1288', false)). +answer('urn:example:complies'('urn:example:carol1289', false)). +answer('urn:example:complies'('urn:example:carol1290', false)). +answer('urn:example:complies'('urn:example:carol1291', false)). +answer('urn:example:complies'('urn:example:carol1292', false)). +answer('urn:example:complies'('urn:example:carol1293', false)). +answer('urn:example:complies'('urn:example:carol1294', false)). +answer('urn:example:complies'('urn:example:carol1295', false)). +answer('urn:example:complies'('urn:example:carol1296', false)). +answer('urn:example:complies'('urn:example:carol1297', false)). +answer('urn:example:complies'('urn:example:carol1298', false)). +answer('urn:example:complies'('urn:example:carol1299', false)). +answer('urn:example:complies'('urn:example:carol1300', false)). +answer('urn:example:complies'('urn:example:carol1301', false)). +answer('urn:example:complies'('urn:example:carol1302', false)). +answer('urn:example:complies'('urn:example:carol1303', false)). +answer('urn:example:complies'('urn:example:carol1304', false)). +answer('urn:example:complies'('urn:example:carol1305', false)). +answer('urn:example:complies'('urn:example:carol1306', false)). +answer('urn:example:complies'('urn:example:carol1307', false)). +answer('urn:example:complies'('urn:example:carol1308', false)). +answer('urn:example:complies'('urn:example:carol1309', false)). +answer('urn:example:complies'('urn:example:carol1310', false)). +answer('urn:example:complies'('urn:example:carol1311', false)). +answer('urn:example:complies'('urn:example:carol1312', false)). +answer('urn:example:complies'('urn:example:carol1313', false)). +answer('urn:example:complies'('urn:example:carol1314', false)). +answer('urn:example:complies'('urn:example:carol1315', false)). +answer('urn:example:complies'('urn:example:carol1316', false)). +answer('urn:example:complies'('urn:example:carol1317', false)). +answer('urn:example:complies'('urn:example:carol1318', false)). +answer('urn:example:complies'('urn:example:carol1319', false)). +answer('urn:example:complies'('urn:example:carol1320', false)). +answer('urn:example:complies'('urn:example:carol1321', false)). +answer('urn:example:complies'('urn:example:carol1322', false)). +answer('urn:example:complies'('urn:example:carol1323', false)). +answer('urn:example:complies'('urn:example:carol1324', false)). +answer('urn:example:complies'('urn:example:carol1325', false)). +answer('urn:example:complies'('urn:example:carol1326', false)). +answer('urn:example:complies'('urn:example:carol1327', false)). +answer('urn:example:complies'('urn:example:carol1328', false)). +answer('urn:example:complies'('urn:example:carol1329', false)). +answer('urn:example:complies'('urn:example:carol1330', false)). +answer('urn:example:complies'('urn:example:carol1331', false)). +answer('urn:example:complies'('urn:example:carol1332', false)). +answer('urn:example:complies'('urn:example:carol1333', false)). +answer('urn:example:complies'('urn:example:carol1334', false)). +answer('urn:example:complies'('urn:example:carol1335', false)). +answer('urn:example:complies'('urn:example:carol1336', false)). +answer('urn:example:complies'('urn:example:carol1337', false)). +answer('urn:example:complies'('urn:example:carol1338', false)). +answer('urn:example:complies'('urn:example:carol1339', false)). +answer('urn:example:complies'('urn:example:carol1340', false)). +answer('urn:example:complies'('urn:example:carol1341', false)). +answer('urn:example:complies'('urn:example:carol1342', false)). +answer('urn:example:complies'('urn:example:carol1343', false)). +answer('urn:example:complies'('urn:example:carol1344', false)). +answer('urn:example:complies'('urn:example:carol1345', false)). +answer('urn:example:complies'('urn:example:carol1346', false)). +answer('urn:example:complies'('urn:example:carol1347', false)). +answer('urn:example:complies'('urn:example:carol1348', false)). +answer('urn:example:complies'('urn:example:carol1349', false)). +answer('urn:example:complies'('urn:example:carol1350', false)). +answer('urn:example:complies'('urn:example:carol1351', false)). +answer('urn:example:complies'('urn:example:carol1352', false)). +answer('urn:example:complies'('urn:example:carol1353', false)). +answer('urn:example:complies'('urn:example:carol1354', false)). +answer('urn:example:complies'('urn:example:carol1355', false)). +answer('urn:example:complies'('urn:example:carol1356', false)). +answer('urn:example:complies'('urn:example:carol1357', false)). +answer('urn:example:complies'('urn:example:carol1358', false)). +answer('urn:example:complies'('urn:example:carol1359', false)). +answer('urn:example:complies'('urn:example:carol1360', false)). +answer('urn:example:complies'('urn:example:carol1361', false)). +answer('urn:example:complies'('urn:example:carol1362', false)). +answer('urn:example:complies'('urn:example:carol1363', false)). +answer('urn:example:complies'('urn:example:carol1364', false)). +answer('urn:example:complies'('urn:example:carol1365', false)). +answer('urn:example:complies'('urn:example:carol1366', false)). +answer('urn:example:complies'('urn:example:carol1367', false)). +answer('urn:example:complies'('urn:example:carol1368', false)). +answer('urn:example:complies'('urn:example:carol1369', false)). +answer('urn:example:complies'('urn:example:carol1370', false)). +answer('urn:example:complies'('urn:example:carol1371', false)). +answer('urn:example:complies'('urn:example:carol1372', false)). +answer('urn:example:complies'('urn:example:carol1373', false)). +answer('urn:example:complies'('urn:example:carol1374', false)). +answer('urn:example:complies'('urn:example:carol1375', false)). +answer('urn:example:complies'('urn:example:carol1376', false)). +answer('urn:example:complies'('urn:example:carol1377', false)). +answer('urn:example:complies'('urn:example:carol1378', false)). +answer('urn:example:complies'('urn:example:carol1379', false)). +answer('urn:example:complies'('urn:example:carol1380', false)). +answer('urn:example:complies'('urn:example:carol1381', false)). +answer('urn:example:complies'('urn:example:carol1382', false)). +answer('urn:example:complies'('urn:example:carol1383', false)). +answer('urn:example:complies'('urn:example:carol1384', false)). +answer('urn:example:complies'('urn:example:carol1385', false)). +answer('urn:example:complies'('urn:example:carol1386', false)). +answer('urn:example:complies'('urn:example:carol1387', false)). +answer('urn:example:complies'('urn:example:carol1388', false)). +answer('urn:example:complies'('urn:example:carol1389', false)). +answer('urn:example:complies'('urn:example:carol1390', false)). +answer('urn:example:complies'('urn:example:carol1391', false)). +answer('urn:example:complies'('urn:example:carol1392', false)). +answer('urn:example:complies'('urn:example:carol1393', false)). +answer('urn:example:complies'('urn:example:carol1394', false)). +answer('urn:example:complies'('urn:example:carol1395', false)). +answer('urn:example:complies'('urn:example:carol1396', false)). +answer('urn:example:complies'('urn:example:carol1397', false)). +answer('urn:example:complies'('urn:example:carol1398', false)). +answer('urn:example:complies'('urn:example:carol1399', false)). +answer('urn:example:complies'('urn:example:carol1400', false)). +answer('urn:example:complies'('urn:example:carol1401', false)). +answer('urn:example:complies'('urn:example:carol1402', false)). +answer('urn:example:complies'('urn:example:carol1403', false)). +answer('urn:example:complies'('urn:example:carol1404', false)). +answer('urn:example:complies'('urn:example:carol1405', false)). +answer('urn:example:complies'('urn:example:carol1406', false)). +answer('urn:example:complies'('urn:example:carol1407', false)). +answer('urn:example:complies'('urn:example:carol1408', false)). +answer('urn:example:complies'('urn:example:carol1409', false)). +answer('urn:example:complies'('urn:example:carol1410', false)). +answer('urn:example:complies'('urn:example:carol1411', false)). +answer('urn:example:complies'('urn:example:carol1412', false)). +answer('urn:example:complies'('urn:example:carol1413', false)). +answer('urn:example:complies'('urn:example:carol1414', false)). +answer('urn:example:complies'('urn:example:carol1415', false)). +answer('urn:example:complies'('urn:example:carol1416', false)). +answer('urn:example:complies'('urn:example:carol1417', false)). +answer('urn:example:complies'('urn:example:carol1418', false)). +answer('urn:example:complies'('urn:example:carol1419', false)). +answer('urn:example:complies'('urn:example:carol1420', false)). +answer('urn:example:complies'('urn:example:carol1421', false)). +answer('urn:example:complies'('urn:example:carol1422', false)). +answer('urn:example:complies'('urn:example:carol1423', false)). +answer('urn:example:complies'('urn:example:carol1424', false)). +answer('urn:example:complies'('urn:example:carol1425', false)). +answer('urn:example:complies'('urn:example:carol1426', false)). +answer('urn:example:complies'('urn:example:carol1427', false)). +answer('urn:example:complies'('urn:example:carol1428', false)). +answer('urn:example:complies'('urn:example:carol1429', false)). +answer('urn:example:complies'('urn:example:carol1430', false)). +answer('urn:example:complies'('urn:example:carol1431', false)). +answer('urn:example:complies'('urn:example:carol1432', false)). +answer('urn:example:complies'('urn:example:carol1433', false)). +answer('urn:example:complies'('urn:example:carol1434', false)). +answer('urn:example:complies'('urn:example:carol1435', false)). +answer('urn:example:complies'('urn:example:carol1436', false)). +answer('urn:example:complies'('urn:example:carol1437', false)). +answer('urn:example:complies'('urn:example:carol1438', false)). +answer('urn:example:complies'('urn:example:carol1439', false)). +answer('urn:example:complies'('urn:example:carol1440', false)). +answer('urn:example:complies'('urn:example:carol1441', false)). +answer('urn:example:complies'('urn:example:carol1442', false)). +answer('urn:example:complies'('urn:example:carol1443', false)). +answer('urn:example:complies'('urn:example:carol1444', false)). +answer('urn:example:complies'('urn:example:carol1445', false)). +answer('urn:example:complies'('urn:example:carol1446', false)). +answer('urn:example:complies'('urn:example:carol1447', false)). +answer('urn:example:complies'('urn:example:carol1448', false)). +answer('urn:example:complies'('urn:example:carol1449', false)). +answer('urn:example:complies'('urn:example:carol1450', false)). +answer('urn:example:complies'('urn:example:carol1451', false)). +answer('urn:example:complies'('urn:example:carol1452', false)). +answer('urn:example:complies'('urn:example:carol1453', false)). +answer('urn:example:complies'('urn:example:carol1454', false)). +answer('urn:example:complies'('urn:example:carol1455', false)). +answer('urn:example:complies'('urn:example:carol1456', false)). +answer('urn:example:complies'('urn:example:carol1457', false)). +answer('urn:example:complies'('urn:example:carol1458', false)). +answer('urn:example:complies'('urn:example:carol1459', false)). +answer('urn:example:complies'('urn:example:carol1460', false)). +answer('urn:example:complies'('urn:example:carol1461', false)). +answer('urn:example:complies'('urn:example:carol1462', false)). +answer('urn:example:complies'('urn:example:carol1463', false)). +answer('urn:example:complies'('urn:example:carol1464', false)). +answer('urn:example:complies'('urn:example:carol1465', false)). +answer('urn:example:complies'('urn:example:carol1466', false)). +answer('urn:example:complies'('urn:example:carol1467', false)). +answer('urn:example:complies'('urn:example:carol1468', false)). +answer('urn:example:complies'('urn:example:carol1469', false)). +answer('urn:example:complies'('urn:example:carol1470', false)). +answer('urn:example:complies'('urn:example:carol1471', false)). +answer('urn:example:complies'('urn:example:carol1472', false)). +answer('urn:example:complies'('urn:example:carol1473', false)). +answer('urn:example:complies'('urn:example:carol1474', false)). +answer('urn:example:complies'('urn:example:carol1475', false)). +answer('urn:example:complies'('urn:example:carol1476', false)). +answer('urn:example:complies'('urn:example:carol1477', false)). +answer('urn:example:complies'('urn:example:carol1478', false)). +answer('urn:example:complies'('urn:example:carol1479', false)). +answer('urn:example:complies'('urn:example:carol1480', false)). +answer('urn:example:complies'('urn:example:carol1481', false)). +answer('urn:example:complies'('urn:example:carol1482', false)). +answer('urn:example:complies'('urn:example:carol1483', false)). +answer('urn:example:complies'('urn:example:carol1484', false)). +answer('urn:example:complies'('urn:example:carol1485', false)). +answer('urn:example:complies'('urn:example:carol1486', false)). +answer('urn:example:complies'('urn:example:carol1487', false)). +answer('urn:example:complies'('urn:example:carol1488', false)). +answer('urn:example:complies'('urn:example:carol1489', false)). +answer('urn:example:complies'('urn:example:carol1490', false)). +answer('urn:example:complies'('urn:example:carol1491', false)). +answer('urn:example:complies'('urn:example:carol1492', false)). +answer('urn:example:complies'('urn:example:carol1493', false)). +answer('urn:example:complies'('urn:example:carol1494', false)). +answer('urn:example:complies'('urn:example:carol1495', false)). +answer('urn:example:complies'('urn:example:carol1496', false)). +answer('urn:example:complies'('urn:example:carol1497', false)). +answer('urn:example:complies'('urn:example:carol1498', false)). +answer('urn:example:complies'('urn:example:carol1499', false)). +answer('urn:example:complies'('urn:example:carol1500', false)). +answer('urn:example:complies'('urn:example:carol1501', false)). +answer('urn:example:complies'('urn:example:carol1502', false)). +answer('urn:example:complies'('urn:example:carol1503', false)). +answer('urn:example:complies'('urn:example:carol1504', false)). +answer('urn:example:complies'('urn:example:carol1505', false)). +answer('urn:example:complies'('urn:example:carol1506', false)). +answer('urn:example:complies'('urn:example:carol1507', false)). +answer('urn:example:complies'('urn:example:carol1508', false)). +answer('urn:example:complies'('urn:example:carol1509', false)). +answer('urn:example:complies'('urn:example:carol1510', false)). +answer('urn:example:complies'('urn:example:carol1511', false)). +answer('urn:example:complies'('urn:example:carol1512', false)). +answer('urn:example:complies'('urn:example:carol1513', false)). +answer('urn:example:complies'('urn:example:carol1514', false)). +answer('urn:example:complies'('urn:example:carol1515', false)). +answer('urn:example:complies'('urn:example:carol1516', false)). +answer('urn:example:complies'('urn:example:carol1517', false)). +answer('urn:example:complies'('urn:example:carol1518', false)). +answer('urn:example:complies'('urn:example:carol1519', false)). +answer('urn:example:complies'('urn:example:carol1520', false)). +answer('urn:example:complies'('urn:example:carol1521', false)). +answer('urn:example:complies'('urn:example:carol1522', false)). +answer('urn:example:complies'('urn:example:carol1523', false)). +answer('urn:example:complies'('urn:example:carol1524', false)). +answer('urn:example:complies'('urn:example:carol1525', false)). +answer('urn:example:complies'('urn:example:carol1526', false)). +answer('urn:example:complies'('urn:example:carol1527', false)). +answer('urn:example:complies'('urn:example:carol1528', false)). +answer('urn:example:complies'('urn:example:carol1529', false)). +answer('urn:example:complies'('urn:example:carol1530', false)). +answer('urn:example:complies'('urn:example:carol1531', false)). +answer('urn:example:complies'('urn:example:carol1532', false)). +answer('urn:example:complies'('urn:example:carol1533', false)). +answer('urn:example:complies'('urn:example:carol1534', false)). +answer('urn:example:complies'('urn:example:carol1535', false)). +answer('urn:example:complies'('urn:example:carol1536', false)). +answer('urn:example:complies'('urn:example:carol1537', false)). +answer('urn:example:complies'('urn:example:carol1538', false)). +answer('urn:example:complies'('urn:example:carol1539', false)). +answer('urn:example:complies'('urn:example:carol1540', false)). +answer('urn:example:complies'('urn:example:carol1541', false)). +answer('urn:example:complies'('urn:example:carol1542', false)). +answer('urn:example:complies'('urn:example:carol1543', false)). +answer('urn:example:complies'('urn:example:carol1544', false)). +answer('urn:example:complies'('urn:example:carol1545', false)). +answer('urn:example:complies'('urn:example:carol1546', false)). +answer('urn:example:complies'('urn:example:carol1547', false)). +answer('urn:example:complies'('urn:example:carol1548', false)). +answer('urn:example:complies'('urn:example:carol1549', false)). +answer('urn:example:complies'('urn:example:carol1550', false)). +answer('urn:example:complies'('urn:example:carol1551', false)). +answer('urn:example:complies'('urn:example:carol1552', false)). +answer('urn:example:complies'('urn:example:carol1553', false)). +answer('urn:example:complies'('urn:example:carol1554', false)). +answer('urn:example:complies'('urn:example:carol1555', false)). +answer('urn:example:complies'('urn:example:carol1556', false)). +answer('urn:example:complies'('urn:example:carol1557', false)). +answer('urn:example:complies'('urn:example:carol1558', false)). +answer('urn:example:complies'('urn:example:carol1559', false)). +answer('urn:example:complies'('urn:example:carol1560', false)). +answer('urn:example:complies'('urn:example:carol1561', false)). +answer('urn:example:complies'('urn:example:carol1562', false)). +answer('urn:example:complies'('urn:example:carol1563', false)). +answer('urn:example:complies'('urn:example:carol1564', false)). +answer('urn:example:complies'('urn:example:carol1565', false)). +answer('urn:example:complies'('urn:example:carol1566', false)). +answer('urn:example:complies'('urn:example:carol1567', false)). +answer('urn:example:complies'('urn:example:carol1568', false)). +answer('urn:example:complies'('urn:example:carol1569', false)). +answer('urn:example:complies'('urn:example:carol1570', false)). +answer('urn:example:complies'('urn:example:carol1571', false)). +answer('urn:example:complies'('urn:example:carol1572', false)). +answer('urn:example:complies'('urn:example:carol1573', false)). +answer('urn:example:complies'('urn:example:carol1574', false)). +answer('urn:example:complies'('urn:example:carol1575', false)). +answer('urn:example:complies'('urn:example:carol1576', false)). +answer('urn:example:complies'('urn:example:carol1577', false)). +answer('urn:example:complies'('urn:example:carol1578', false)). +answer('urn:example:complies'('urn:example:carol1579', false)). +answer('urn:example:complies'('urn:example:carol1580', false)). +answer('urn:example:complies'('urn:example:carol1581', false)). +answer('urn:example:complies'('urn:example:carol1582', false)). +answer('urn:example:complies'('urn:example:carol1583', false)). +answer('urn:example:complies'('urn:example:carol1584', false)). +answer('urn:example:complies'('urn:example:carol1585', false)). +answer('urn:example:complies'('urn:example:carol1586', false)). +answer('urn:example:complies'('urn:example:carol1587', false)). +answer('urn:example:complies'('urn:example:carol1588', false)). +answer('urn:example:complies'('urn:example:carol1589', false)). +answer('urn:example:complies'('urn:example:carol1590', false)). +answer('urn:example:complies'('urn:example:carol1591', false)). +answer('urn:example:complies'('urn:example:carol1592', false)). +answer('urn:example:complies'('urn:example:carol1593', false)). +answer('urn:example:complies'('urn:example:carol1594', false)). +answer('urn:example:complies'('urn:example:carol1595', false)). +answer('urn:example:complies'('urn:example:carol1596', false)). +answer('urn:example:complies'('urn:example:carol1597', false)). +answer('urn:example:complies'('urn:example:carol1598', false)). +answer('urn:example:complies'('urn:example:carol1599', false)). +answer('urn:example:complies'('urn:example:carol1600', false)). +answer('urn:example:complies'('urn:example:carol1601', false)). +answer('urn:example:complies'('urn:example:carol1602', false)). +answer('urn:example:complies'('urn:example:carol1603', false)). +answer('urn:example:complies'('urn:example:carol1604', false)). +answer('urn:example:complies'('urn:example:carol1605', false)). +answer('urn:example:complies'('urn:example:carol1606', false)). +answer('urn:example:complies'('urn:example:carol1607', false)). +answer('urn:example:complies'('urn:example:carol1608', false)). +answer('urn:example:complies'('urn:example:carol1609', false)). +answer('urn:example:complies'('urn:example:carol1610', false)). +answer('urn:example:complies'('urn:example:carol1611', false)). +answer('urn:example:complies'('urn:example:carol1612', false)). +answer('urn:example:complies'('urn:example:carol1613', false)). +answer('urn:example:complies'('urn:example:carol1614', false)). +answer('urn:example:complies'('urn:example:carol1615', false)). +answer('urn:example:complies'('urn:example:carol1616', false)). +answer('urn:example:complies'('urn:example:carol1617', false)). +answer('urn:example:complies'('urn:example:carol1618', false)). +answer('urn:example:complies'('urn:example:carol1619', false)). +answer('urn:example:complies'('urn:example:carol1620', false)). +answer('urn:example:complies'('urn:example:carol1621', false)). +answer('urn:example:complies'('urn:example:carol1622', false)). +answer('urn:example:complies'('urn:example:carol1623', false)). +answer('urn:example:complies'('urn:example:carol1624', false)). +answer('urn:example:complies'('urn:example:carol1625', false)). +answer('urn:example:complies'('urn:example:carol1626', false)). +answer('urn:example:complies'('urn:example:carol1627', false)). +answer('urn:example:complies'('urn:example:carol1628', false)). +answer('urn:example:complies'('urn:example:carol1629', false)). +answer('urn:example:complies'('urn:example:carol1630', false)). +answer('urn:example:complies'('urn:example:carol1631', false)). +answer('urn:example:complies'('urn:example:carol1632', false)). +answer('urn:example:complies'('urn:example:carol1633', false)). +answer('urn:example:complies'('urn:example:carol1634', false)). +answer('urn:example:complies'('urn:example:carol1635', false)). +answer('urn:example:complies'('urn:example:carol1636', false)). +answer('urn:example:complies'('urn:example:carol1637', false)). +answer('urn:example:complies'('urn:example:carol1638', false)). +answer('urn:example:complies'('urn:example:carol1639', false)). +answer('urn:example:complies'('urn:example:carol1640', false)). +answer('urn:example:complies'('urn:example:carol1641', false)). +answer('urn:example:complies'('urn:example:carol1642', false)). +answer('urn:example:complies'('urn:example:carol1643', false)). +answer('urn:example:complies'('urn:example:carol1644', false)). +answer('urn:example:complies'('urn:example:carol1645', false)). +answer('urn:example:complies'('urn:example:carol1646', false)). +answer('urn:example:complies'('urn:example:carol1647', false)). +answer('urn:example:complies'('urn:example:carol1648', false)). +answer('urn:example:complies'('urn:example:carol1649', false)). +answer('urn:example:complies'('urn:example:carol1650', false)). +answer('urn:example:complies'('urn:example:carol1651', false)). +answer('urn:example:complies'('urn:example:carol1652', false)). +answer('urn:example:complies'('urn:example:carol1653', false)). +answer('urn:example:complies'('urn:example:carol1654', false)). +answer('urn:example:complies'('urn:example:carol1655', false)). +answer('urn:example:complies'('urn:example:carol1656', false)). +answer('urn:example:complies'('urn:example:carol1657', false)). +answer('urn:example:complies'('urn:example:carol1658', false)). +answer('urn:example:complies'('urn:example:carol1659', false)). +answer('urn:example:complies'('urn:example:carol1660', false)). +answer('urn:example:complies'('urn:example:carol1661', false)). +answer('urn:example:complies'('urn:example:carol1662', false)). +answer('urn:example:complies'('urn:example:carol1663', false)). +answer('urn:example:complies'('urn:example:carol1664', false)). +answer('urn:example:complies'('urn:example:carol1665', false)). +answer('urn:example:complies'('urn:example:carol1666', false)). +answer('urn:example:complies'('urn:example:carol1667', false)). +answer('urn:example:complies'('urn:example:carol1668', false)). +answer('urn:example:complies'('urn:example:carol1669', false)). +answer('urn:example:complies'('urn:example:carol1670', false)). +answer('urn:example:complies'('urn:example:carol1671', false)). +answer('urn:example:complies'('urn:example:carol1672', false)). +answer('urn:example:complies'('urn:example:carol1673', false)). +answer('urn:example:complies'('urn:example:carol1674', false)). +answer('urn:example:complies'('urn:example:carol1675', false)). +answer('urn:example:complies'('urn:example:carol1676', false)). +answer('urn:example:complies'('urn:example:carol1677', false)). +answer('urn:example:complies'('urn:example:carol1678', false)). +answer('urn:example:complies'('urn:example:carol1679', false)). +answer('urn:example:complies'('urn:example:carol1680', false)). +answer('urn:example:complies'('urn:example:carol1681', false)). +answer('urn:example:complies'('urn:example:carol1682', false)). +answer('urn:example:complies'('urn:example:carol1683', false)). +answer('urn:example:complies'('urn:example:carol1684', false)). +answer('urn:example:complies'('urn:example:carol1685', false)). +answer('urn:example:complies'('urn:example:carol1686', false)). +answer('urn:example:complies'('urn:example:carol1687', false)). +answer('urn:example:complies'('urn:example:carol1688', false)). +answer('urn:example:complies'('urn:example:carol1689', false)). +answer('urn:example:complies'('urn:example:carol1690', false)). +answer('urn:example:complies'('urn:example:carol1691', false)). +answer('urn:example:complies'('urn:example:carol1692', false)). +answer('urn:example:complies'('urn:example:carol1693', false)). +answer('urn:example:complies'('urn:example:carol1694', false)). +answer('urn:example:complies'('urn:example:carol1695', false)). +answer('urn:example:complies'('urn:example:carol1696', false)). +answer('urn:example:complies'('urn:example:carol1697', false)). +answer('urn:example:complies'('urn:example:carol1698', false)). +answer('urn:example:complies'('urn:example:carol1699', false)). +answer('urn:example:complies'('urn:example:carol1700', false)). +answer('urn:example:complies'('urn:example:carol1701', false)). +answer('urn:example:complies'('urn:example:carol1702', false)). +answer('urn:example:complies'('urn:example:carol1703', false)). +answer('urn:example:complies'('urn:example:carol1704', false)). +answer('urn:example:complies'('urn:example:carol1705', false)). +answer('urn:example:complies'('urn:example:carol1706', false)). +answer('urn:example:complies'('urn:example:carol1707', false)). +answer('urn:example:complies'('urn:example:carol1708', false)). +answer('urn:example:complies'('urn:example:carol1709', false)). +answer('urn:example:complies'('urn:example:carol1710', false)). +answer('urn:example:complies'('urn:example:carol1711', false)). +answer('urn:example:complies'('urn:example:carol1712', false)). +answer('urn:example:complies'('urn:example:carol1713', false)). +answer('urn:example:complies'('urn:example:carol1714', false)). +answer('urn:example:complies'('urn:example:carol1715', false)). +answer('urn:example:complies'('urn:example:carol1716', false)). +answer('urn:example:complies'('urn:example:carol1717', false)). +answer('urn:example:complies'('urn:example:carol1718', false)). +answer('urn:example:complies'('urn:example:carol1719', false)). +answer('urn:example:complies'('urn:example:carol1720', false)). +answer('urn:example:complies'('urn:example:carol1721', false)). +answer('urn:example:complies'('urn:example:carol1722', false)). +answer('urn:example:complies'('urn:example:carol1723', false)). +answer('urn:example:complies'('urn:example:carol1724', false)). +answer('urn:example:complies'('urn:example:carol1725', false)). +answer('urn:example:complies'('urn:example:carol1726', false)). +answer('urn:example:complies'('urn:example:carol1727', false)). +answer('urn:example:complies'('urn:example:carol1728', false)). +answer('urn:example:complies'('urn:example:carol1729', false)). +answer('urn:example:complies'('urn:example:carol1730', false)). +answer('urn:example:complies'('urn:example:carol1731', false)). +answer('urn:example:complies'('urn:example:carol1732', false)). +answer('urn:example:complies'('urn:example:carol1733', false)). +answer('urn:example:complies'('urn:example:carol1734', false)). +answer('urn:example:complies'('urn:example:carol1735', false)). +answer('urn:example:complies'('urn:example:carol1736', false)). +answer('urn:example:complies'('urn:example:carol1737', false)). +answer('urn:example:complies'('urn:example:carol1738', false)). +answer('urn:example:complies'('urn:example:carol1739', false)). +answer('urn:example:complies'('urn:example:carol1740', false)). +answer('urn:example:complies'('urn:example:carol1741', false)). +answer('urn:example:complies'('urn:example:carol1742', false)). +answer('urn:example:complies'('urn:example:carol1743', false)). +answer('urn:example:complies'('urn:example:carol1744', false)). +answer('urn:example:complies'('urn:example:carol1745', false)). +answer('urn:example:complies'('urn:example:carol1746', false)). +answer('urn:example:complies'('urn:example:carol1747', false)). +answer('urn:example:complies'('urn:example:carol1748', false)). +answer('urn:example:complies'('urn:example:carol1749', false)). +answer('urn:example:complies'('urn:example:carol1750', false)). +answer('urn:example:complies'('urn:example:carol1751', false)). +answer('urn:example:complies'('urn:example:carol1752', false)). +answer('urn:example:complies'('urn:example:carol1753', false)). +answer('urn:example:complies'('urn:example:carol1754', false)). +answer('urn:example:complies'('urn:example:carol1755', false)). +answer('urn:example:complies'('urn:example:carol1756', false)). +answer('urn:example:complies'('urn:example:carol1757', false)). +answer('urn:example:complies'('urn:example:carol1758', false)). +answer('urn:example:complies'('urn:example:carol1759', false)). +answer('urn:example:complies'('urn:example:carol1760', false)). +answer('urn:example:complies'('urn:example:carol1761', false)). +answer('urn:example:complies'('urn:example:carol1762', false)). +answer('urn:example:complies'('urn:example:carol1763', false)). +answer('urn:example:complies'('urn:example:carol1764', false)). +answer('urn:example:complies'('urn:example:carol1765', false)). +answer('urn:example:complies'('urn:example:carol1766', false)). +answer('urn:example:complies'('urn:example:carol1767', false)). +answer('urn:example:complies'('urn:example:carol1768', false)). +answer('urn:example:complies'('urn:example:carol1769', false)). +answer('urn:example:complies'('urn:example:carol1770', false)). +answer('urn:example:complies'('urn:example:carol1771', false)). +answer('urn:example:complies'('urn:example:carol1772', false)). +answer('urn:example:complies'('urn:example:carol1773', false)). +answer('urn:example:complies'('urn:example:carol1774', false)). +answer('urn:example:complies'('urn:example:carol1775', false)). +answer('urn:example:complies'('urn:example:carol1776', false)). +answer('urn:example:complies'('urn:example:carol1777', false)). +answer('urn:example:complies'('urn:example:carol1778', false)). +answer('urn:example:complies'('urn:example:carol1779', false)). +answer('urn:example:complies'('urn:example:carol1780', false)). +answer('urn:example:complies'('urn:example:carol1781', false)). +answer('urn:example:complies'('urn:example:carol1782', false)). +answer('urn:example:complies'('urn:example:carol1783', false)). +answer('urn:example:complies'('urn:example:carol1784', false)). +answer('urn:example:complies'('urn:example:carol1785', false)). +answer('urn:example:complies'('urn:example:carol1786', false)). +answer('urn:example:complies'('urn:example:carol1787', false)). +answer('urn:example:complies'('urn:example:carol1788', false)). +answer('urn:example:complies'('urn:example:carol1789', false)). +answer('urn:example:complies'('urn:example:carol1790', false)). +answer('urn:example:complies'('urn:example:carol1791', false)). +answer('urn:example:complies'('urn:example:carol1792', false)). +answer('urn:example:complies'('urn:example:carol1793', false)). +answer('urn:example:complies'('urn:example:carol1794', false)). +answer('urn:example:complies'('urn:example:carol1795', false)). +answer('urn:example:complies'('urn:example:carol1796', false)). +answer('urn:example:complies'('urn:example:carol1797', false)). +answer('urn:example:complies'('urn:example:carol1798', false)). +answer('urn:example:complies'('urn:example:carol1799', false)). +answer('urn:example:complies'('urn:example:carol1800', false)). +answer('urn:example:complies'('urn:example:carol1801', false)). +answer('urn:example:complies'('urn:example:carol1802', false)). +answer('urn:example:complies'('urn:example:carol1803', false)). +answer('urn:example:complies'('urn:example:carol1804', false)). +answer('urn:example:complies'('urn:example:carol1805', false)). +answer('urn:example:complies'('urn:example:carol1806', false)). +answer('urn:example:complies'('urn:example:carol1807', false)). +answer('urn:example:complies'('urn:example:carol1808', false)). +answer('urn:example:complies'('urn:example:carol1809', false)). +answer('urn:example:complies'('urn:example:carol1810', false)). +answer('urn:example:complies'('urn:example:carol1811', false)). +answer('urn:example:complies'('urn:example:carol1812', false)). +answer('urn:example:complies'('urn:example:carol1813', false)). +answer('urn:example:complies'('urn:example:carol1814', false)). +answer('urn:example:complies'('urn:example:carol1815', false)). +answer('urn:example:complies'('urn:example:carol1816', false)). +answer('urn:example:complies'('urn:example:carol1817', false)). +answer('urn:example:complies'('urn:example:carol1818', false)). +answer('urn:example:complies'('urn:example:carol1819', false)). +answer('urn:example:complies'('urn:example:carol1820', false)). +answer('urn:example:complies'('urn:example:carol1821', false)). +answer('urn:example:complies'('urn:example:carol1822', false)). +answer('urn:example:complies'('urn:example:carol1823', false)). +answer('urn:example:complies'('urn:example:carol1824', false)). +answer('urn:example:complies'('urn:example:carol1825', false)). +answer('urn:example:complies'('urn:example:carol1826', false)). +answer('urn:example:complies'('urn:example:carol1827', false)). +answer('urn:example:complies'('urn:example:carol1828', false)). +answer('urn:example:complies'('urn:example:carol1829', false)). +answer('urn:example:complies'('urn:example:carol1830', false)). +answer('urn:example:complies'('urn:example:carol1831', false)). +answer('urn:example:complies'('urn:example:carol1832', false)). +answer('urn:example:complies'('urn:example:carol1833', false)). +answer('urn:example:complies'('urn:example:carol1834', false)). +answer('urn:example:complies'('urn:example:carol1835', false)). +answer('urn:example:complies'('urn:example:carol1836', false)). +answer('urn:example:complies'('urn:example:carol1837', false)). +answer('urn:example:complies'('urn:example:carol1838', false)). +answer('urn:example:complies'('urn:example:carol1839', false)). +answer('urn:example:complies'('urn:example:carol1840', false)). +answer('urn:example:complies'('urn:example:carol1841', false)). +answer('urn:example:complies'('urn:example:carol1842', false)). +answer('urn:example:complies'('urn:example:carol1843', false)). +answer('urn:example:complies'('urn:example:carol1844', false)). +answer('urn:example:complies'('urn:example:carol1845', false)). +answer('urn:example:complies'('urn:example:carol1846', false)). +answer('urn:example:complies'('urn:example:carol1847', false)). +answer('urn:example:complies'('urn:example:carol1848', false)). +answer('urn:example:complies'('urn:example:carol1849', false)). +answer('urn:example:complies'('urn:example:carol1850', false)). +answer('urn:example:complies'('urn:example:carol1851', false)). +answer('urn:example:complies'('urn:example:carol1852', false)). +answer('urn:example:complies'('urn:example:carol1853', false)). +answer('urn:example:complies'('urn:example:carol1854', false)). +answer('urn:example:complies'('urn:example:carol1855', false)). +answer('urn:example:complies'('urn:example:carol1856', false)). +answer('urn:example:complies'('urn:example:carol1857', false)). +answer('urn:example:complies'('urn:example:carol1858', false)). +answer('urn:example:complies'('urn:example:carol1859', false)). +answer('urn:example:complies'('urn:example:carol1860', false)). +answer('urn:example:complies'('urn:example:carol1861', false)). +answer('urn:example:complies'('urn:example:carol1862', false)). +answer('urn:example:complies'('urn:example:carol1863', false)). +answer('urn:example:complies'('urn:example:carol1864', false)). +answer('urn:example:complies'('urn:example:carol1865', false)). +answer('urn:example:complies'('urn:example:carol1866', false)). +answer('urn:example:complies'('urn:example:carol1867', false)). +answer('urn:example:complies'('urn:example:carol1868', false)). +answer('urn:example:complies'('urn:example:carol1869', false)). +answer('urn:example:complies'('urn:example:carol1870', false)). +answer('urn:example:complies'('urn:example:carol1871', false)). +answer('urn:example:complies'('urn:example:carol1872', false)). +answer('urn:example:complies'('urn:example:carol1873', false)). +answer('urn:example:complies'('urn:example:carol1874', false)). +answer('urn:example:complies'('urn:example:carol1875', false)). +answer('urn:example:complies'('urn:example:carol1876', false)). +answer('urn:example:complies'('urn:example:carol1877', false)). +answer('urn:example:complies'('urn:example:carol1878', false)). +answer('urn:example:complies'('urn:example:carol1879', false)). +answer('urn:example:complies'('urn:example:carol1880', false)). +answer('urn:example:complies'('urn:example:carol1881', false)). +answer('urn:example:complies'('urn:example:carol1882', false)). +answer('urn:example:complies'('urn:example:carol1883', false)). +answer('urn:example:complies'('urn:example:carol1884', false)). +answer('urn:example:complies'('urn:example:carol1885', false)). +answer('urn:example:complies'('urn:example:carol1886', false)). +answer('urn:example:complies'('urn:example:carol1887', false)). +answer('urn:example:complies'('urn:example:carol1888', false)). +answer('urn:example:complies'('urn:example:carol1889', false)). +answer('urn:example:complies'('urn:example:carol1890', false)). +answer('urn:example:complies'('urn:example:carol1891', false)). +answer('urn:example:complies'('urn:example:carol1892', false)). +answer('urn:example:complies'('urn:example:carol1893', false)). +answer('urn:example:complies'('urn:example:carol1894', false)). +answer('urn:example:complies'('urn:example:carol1895', false)). +answer('urn:example:complies'('urn:example:carol1896', false)). +answer('urn:example:complies'('urn:example:carol1897', false)). +answer('urn:example:complies'('urn:example:carol1898', false)). +answer('urn:example:complies'('urn:example:carol1899', false)). +answer('urn:example:complies'('urn:example:carol1900', false)). +answer('urn:example:complies'('urn:example:carol1901', false)). +answer('urn:example:complies'('urn:example:carol1902', false)). +answer('urn:example:complies'('urn:example:carol1903', false)). +answer('urn:example:complies'('urn:example:carol1904', false)). +answer('urn:example:complies'('urn:example:carol1905', false)). +answer('urn:example:complies'('urn:example:carol1906', false)). +answer('urn:example:complies'('urn:example:carol1907', false)). +answer('urn:example:complies'('urn:example:carol1908', false)). +answer('urn:example:complies'('urn:example:carol1909', false)). +answer('urn:example:complies'('urn:example:carol1910', false)). +answer('urn:example:complies'('urn:example:carol1911', false)). +answer('urn:example:complies'('urn:example:carol1912', false)). +answer('urn:example:complies'('urn:example:carol1913', false)). +answer('urn:example:complies'('urn:example:carol1914', false)). +answer('urn:example:complies'('urn:example:carol1915', false)). +answer('urn:example:complies'('urn:example:carol1916', false)). +answer('urn:example:complies'('urn:example:carol1917', false)). +answer('urn:example:complies'('urn:example:carol1918', false)). +answer('urn:example:complies'('urn:example:carol1919', false)). +answer('urn:example:complies'('urn:example:carol1920', false)). +answer('urn:example:complies'('urn:example:carol1921', false)). +answer('urn:example:complies'('urn:example:carol1922', false)). +answer('urn:example:complies'('urn:example:carol1923', false)). +answer('urn:example:complies'('urn:example:carol1924', false)). +answer('urn:example:complies'('urn:example:carol1925', false)). +answer('urn:example:complies'('urn:example:carol1926', false)). +answer('urn:example:complies'('urn:example:carol1927', false)). +answer('urn:example:complies'('urn:example:carol1928', false)). +answer('urn:example:complies'('urn:example:carol1929', false)). +answer('urn:example:complies'('urn:example:carol1930', false)). +answer('urn:example:complies'('urn:example:carol1931', false)). +answer('urn:example:complies'('urn:example:carol1932', false)). +answer('urn:example:complies'('urn:example:carol1933', false)). +answer('urn:example:complies'('urn:example:carol1934', false)). +answer('urn:example:complies'('urn:example:carol1935', false)). +answer('urn:example:complies'('urn:example:carol1936', false)). +answer('urn:example:complies'('urn:example:carol1937', false)). +answer('urn:example:complies'('urn:example:carol1938', false)). +answer('urn:example:complies'('urn:example:carol1939', false)). +answer('urn:example:complies'('urn:example:carol1940', false)). +answer('urn:example:complies'('urn:example:carol1941', false)). +answer('urn:example:complies'('urn:example:carol1942', false)). +answer('urn:example:complies'('urn:example:carol1943', false)). +answer('urn:example:complies'('urn:example:carol1944', false)). +answer('urn:example:complies'('urn:example:carol1945', false)). +answer('urn:example:complies'('urn:example:carol1946', false)). +answer('urn:example:complies'('urn:example:carol1947', false)). +answer('urn:example:complies'('urn:example:carol1948', false)). +answer('urn:example:complies'('urn:example:carol1949', false)). +answer('urn:example:complies'('urn:example:carol1950', false)). +answer('urn:example:complies'('urn:example:carol1951', false)). +answer('urn:example:complies'('urn:example:carol1952', false)). +answer('urn:example:complies'('urn:example:carol1953', false)). +answer('urn:example:complies'('urn:example:carol1954', false)). +answer('urn:example:complies'('urn:example:carol1955', false)). +answer('urn:example:complies'('urn:example:carol1956', false)). +answer('urn:example:complies'('urn:example:carol1957', false)). +answer('urn:example:complies'('urn:example:carol1958', false)). +answer('urn:example:complies'('urn:example:carol1959', false)). +answer('urn:example:complies'('urn:example:carol1960', false)). +answer('urn:example:complies'('urn:example:carol1961', false)). +answer('urn:example:complies'('urn:example:carol1962', false)). +answer('urn:example:complies'('urn:example:carol1963', false)). +answer('urn:example:complies'('urn:example:carol1964', false)). +answer('urn:example:complies'('urn:example:carol1965', false)). +answer('urn:example:complies'('urn:example:carol1966', false)). +answer('urn:example:complies'('urn:example:carol1967', false)). +answer('urn:example:complies'('urn:example:carol1968', false)). +answer('urn:example:complies'('urn:example:carol1969', false)). +answer('urn:example:complies'('urn:example:carol1970', false)). +answer('urn:example:complies'('urn:example:carol1971', false)). +answer('urn:example:complies'('urn:example:carol1972', false)). +answer('urn:example:complies'('urn:example:carol1973', false)). +answer('urn:example:complies'('urn:example:carol1974', false)). +answer('urn:example:complies'('urn:example:carol1975', false)). +answer('urn:example:complies'('urn:example:carol1976', false)). +answer('urn:example:complies'('urn:example:carol1977', false)). +answer('urn:example:complies'('urn:example:carol1978', false)). +answer('urn:example:complies'('urn:example:carol1979', false)). +answer('urn:example:complies'('urn:example:carol1980', false)). +answer('urn:example:complies'('urn:example:carol1981', false)). +answer('urn:example:complies'('urn:example:carol1982', false)). +answer('urn:example:complies'('urn:example:carol1983', false)). +answer('urn:example:complies'('urn:example:carol1984', false)). +answer('urn:example:complies'('urn:example:carol1985', false)). +answer('urn:example:complies'('urn:example:carol1986', false)). +answer('urn:example:complies'('urn:example:carol1987', false)). +answer('urn:example:complies'('urn:example:carol1988', false)). +answer('urn:example:complies'('urn:example:carol1989', false)). +answer('urn:example:complies'('urn:example:carol1990', false)). +answer('urn:example:complies'('urn:example:carol1991', false)). +answer('urn:example:complies'('urn:example:carol1992', false)). +answer('urn:example:complies'('urn:example:carol1993', false)). +answer('urn:example:complies'('urn:example:carol1994', false)). +answer('urn:example:complies'('urn:example:carol1995', false)). +answer('urn:example:complies'('urn:example:carol1996', false)). +answer('urn:example:complies'('urn:example:carol1997', false)). +answer('urn:example:complies'('urn:example:carol1998', false)). +answer('urn:example:complies'('urn:example:carol1999', false)). +answer('urn:example:complies'('urn:example:carol2000', false)). +answer('urn:example:complies'('urn:example:carol2001', false)). +answer('urn:example:complies'('urn:example:carol2002', false)). +answer('urn:example:complies'('urn:example:carol2003', false)). +answer('urn:example:complies'('urn:example:carol2004', false)). +answer('urn:example:complies'('urn:example:carol2005', false)). +answer('urn:example:complies'('urn:example:carol2006', false)). +answer('urn:example:complies'('urn:example:carol2007', false)). +answer('urn:example:complies'('urn:example:carol2008', false)). +answer('urn:example:complies'('urn:example:carol2009', false)). +answer('urn:example:complies'('urn:example:carol2010', false)). +answer('urn:example:complies'('urn:example:carol2011', false)). +answer('urn:example:complies'('urn:example:carol2012', false)). +answer('urn:example:complies'('urn:example:carol2013', false)). +answer('urn:example:complies'('urn:example:carol2014', false)). +answer('urn:example:complies'('urn:example:carol2015', false)). +answer('urn:example:complies'('urn:example:carol2016', false)). +answer('urn:example:complies'('urn:example:carol2017', false)). +answer('urn:example:complies'('urn:example:carol2018', false)). +answer('urn:example:complies'('urn:example:carol2019', false)). +answer('urn:example:complies'('urn:example:carol2020', false)). +answer('urn:example:complies'('urn:example:carol2021', false)). +answer('urn:example:complies'('urn:example:carol2022', false)). +answer('urn:example:complies'('urn:example:carol2023', false)). +answer('urn:example:complies'('urn:example:carol2024', false)). +answer('urn:example:complies'('urn:example:carol2025', false)). +answer('urn:example:complies'('urn:example:carol2026', false)). +answer('urn:example:complies'('urn:example:carol2027', false)). +answer('urn:example:complies'('urn:example:carol2028', false)). +answer('urn:example:complies'('urn:example:carol2029', false)). +answer('urn:example:complies'('urn:example:carol2030', false)). +answer('urn:example:complies'('urn:example:carol2031', false)). +answer('urn:example:complies'('urn:example:carol2032', false)). +answer('urn:example:complies'('urn:example:carol2033', false)). +answer('urn:example:complies'('urn:example:carol2034', false)). +answer('urn:example:complies'('urn:example:carol2035', false)). +answer('urn:example:complies'('urn:example:carol2036', false)). +answer('urn:example:complies'('urn:example:carol2037', false)). +answer('urn:example:complies'('urn:example:carol2038', false)). +answer('urn:example:complies'('urn:example:carol2039', false)). +answer('urn:example:complies'('urn:example:carol2040', false)). +answer('urn:example:complies'('urn:example:carol2041', false)). +answer('urn:example:complies'('urn:example:carol2042', false)). +answer('urn:example:complies'('urn:example:carol2043', false)). +answer('urn:example:complies'('urn:example:carol2044', false)). +answer('urn:example:complies'('urn:example:carol2045', false)). +answer('urn:example:complies'('urn:example:carol2046', false)). +answer('urn:example:complies'('urn:example:carol2047', false)). +answer('urn:example:complies'('urn:example:carol2048', false)). +answer('urn:example:complies'('urn:example:carol2049', false)). +answer('urn:example:complies'('urn:example:carol2050', false)). +answer('urn:example:complies'('urn:example:carol2051', false)). +answer('urn:example:complies'('urn:example:carol2052', false)). +answer('urn:example:complies'('urn:example:carol2053', false)). +answer('urn:example:complies'('urn:example:carol2054', false)). +answer('urn:example:complies'('urn:example:carol2055', false)). +answer('urn:example:complies'('urn:example:carol2056', false)). +answer('urn:example:complies'('urn:example:carol2057', false)). +answer('urn:example:complies'('urn:example:carol2058', false)). +answer('urn:example:complies'('urn:example:carol2059', false)). +answer('urn:example:complies'('urn:example:carol2060', false)). +answer('urn:example:complies'('urn:example:carol2061', false)). +answer('urn:example:complies'('urn:example:carol2062', false)). +answer('urn:example:complies'('urn:example:carol2063', false)). +answer('urn:example:complies'('urn:example:carol2064', false)). +answer('urn:example:complies'('urn:example:carol2065', false)). +answer('urn:example:complies'('urn:example:carol2066', false)). +answer('urn:example:complies'('urn:example:carol2067', false)). +answer('urn:example:complies'('urn:example:carol2068', false)). +answer('urn:example:complies'('urn:example:carol2069', false)). +answer('urn:example:complies'('urn:example:carol2070', false)). +answer('urn:example:complies'('urn:example:carol2071', false)). +answer('urn:example:complies'('urn:example:carol2072', false)). +answer('urn:example:complies'('urn:example:carol2073', false)). +answer('urn:example:complies'('urn:example:carol2074', false)). +answer('urn:example:complies'('urn:example:carol2075', false)). +answer('urn:example:complies'('urn:example:carol2076', false)). +answer('urn:example:complies'('urn:example:carol2077', false)). +answer('urn:example:complies'('urn:example:carol2078', false)). +answer('urn:example:complies'('urn:example:carol2079', false)). +answer('urn:example:complies'('urn:example:carol2080', false)). +answer('urn:example:complies'('urn:example:carol2081', false)). +answer('urn:example:complies'('urn:example:carol2082', false)). +answer('urn:example:complies'('urn:example:carol2083', false)). +answer('urn:example:complies'('urn:example:carol2084', false)). +answer('urn:example:complies'('urn:example:carol2085', false)). +answer('urn:example:complies'('urn:example:carol2086', false)). +answer('urn:example:complies'('urn:example:carol2087', false)). +answer('urn:example:complies'('urn:example:carol2088', false)). +answer('urn:example:complies'('urn:example:carol2089', false)). +answer('urn:example:complies'('urn:example:carol2090', false)). +answer('urn:example:complies'('urn:example:carol2091', false)). +answer('urn:example:complies'('urn:example:carol2092', false)). +answer('urn:example:complies'('urn:example:carol2093', false)). +answer('urn:example:complies'('urn:example:carol2094', false)). +answer('urn:example:complies'('urn:example:carol2095', false)). +answer('urn:example:complies'('urn:example:carol2096', false)). +answer('urn:example:complies'('urn:example:carol2097', false)). +answer('urn:example:complies'('urn:example:carol2098', false)). +answer('urn:example:complies'('urn:example:carol2099', false)). +answer('urn:example:complies'('urn:example:carol2100', false)). +answer('urn:example:complies'('urn:example:carol2101', false)). +answer('urn:example:complies'('urn:example:carol2102', false)). +answer('urn:example:complies'('urn:example:carol2103', false)). +answer('urn:example:complies'('urn:example:carol2104', false)). +answer('urn:example:complies'('urn:example:carol2105', false)). +answer('urn:example:complies'('urn:example:carol2106', false)). +answer('urn:example:complies'('urn:example:carol2107', false)). +answer('urn:example:complies'('urn:example:carol2108', false)). +answer('urn:example:complies'('urn:example:carol2109', false)). +answer('urn:example:complies'('urn:example:carol2110', false)). +answer('urn:example:complies'('urn:example:carol2111', false)). +answer('urn:example:complies'('urn:example:carol2112', false)). +answer('urn:example:complies'('urn:example:carol2113', false)). +answer('urn:example:complies'('urn:example:carol2114', false)). +answer('urn:example:complies'('urn:example:carol2115', false)). +answer('urn:example:complies'('urn:example:carol2116', false)). +answer('urn:example:complies'('urn:example:carol2117', false)). +answer('urn:example:complies'('urn:example:carol2118', false)). +answer('urn:example:complies'('urn:example:carol2119', false)). +answer('urn:example:complies'('urn:example:carol2120', false)). +answer('urn:example:complies'('urn:example:carol2121', false)). +answer('urn:example:complies'('urn:example:carol2122', false)). +answer('urn:example:complies'('urn:example:carol2123', false)). +answer('urn:example:complies'('urn:example:carol2124', false)). +answer('urn:example:complies'('urn:example:carol2125', false)). +answer('urn:example:complies'('urn:example:carol2126', false)). +answer('urn:example:complies'('urn:example:carol2127', false)). +answer('urn:example:complies'('urn:example:carol2128', false)). +answer('urn:example:complies'('urn:example:carol2129', false)). +answer('urn:example:complies'('urn:example:carol2130', false)). +answer('urn:example:complies'('urn:example:carol2131', false)). +answer('urn:example:complies'('urn:example:carol2132', false)). +answer('urn:example:complies'('urn:example:carol2133', false)). +answer('urn:example:complies'('urn:example:carol2134', false)). +answer('urn:example:complies'('urn:example:carol2135', false)). +answer('urn:example:complies'('urn:example:carol2136', false)). +answer('urn:example:complies'('urn:example:carol2137', false)). +answer('urn:example:complies'('urn:example:carol2138', false)). +answer('urn:example:complies'('urn:example:carol2139', false)). +answer('urn:example:complies'('urn:example:carol2140', false)). +answer('urn:example:complies'('urn:example:carol2141', false)). +answer('urn:example:complies'('urn:example:carol2142', false)). +answer('urn:example:complies'('urn:example:carol2143', false)). +answer('urn:example:complies'('urn:example:carol2144', false)). +answer('urn:example:complies'('urn:example:carol2145', false)). +answer('urn:example:complies'('urn:example:carol2146', false)). +answer('urn:example:complies'('urn:example:carol2147', false)). +answer('urn:example:complies'('urn:example:carol2148', false)). +answer('urn:example:complies'('urn:example:carol2149', false)). +answer('urn:example:complies'('urn:example:carol2150', false)). +answer('urn:example:complies'('urn:example:carol2151', false)). +answer('urn:example:complies'('urn:example:carol2152', false)). +answer('urn:example:complies'('urn:example:carol2153', false)). +answer('urn:example:complies'('urn:example:carol2154', false)). +answer('urn:example:complies'('urn:example:carol2155', false)). +answer('urn:example:complies'('urn:example:carol2156', false)). +answer('urn:example:complies'('urn:example:carol2157', false)). +answer('urn:example:complies'('urn:example:carol2158', false)). +answer('urn:example:complies'('urn:example:carol2159', false)). +answer('urn:example:complies'('urn:example:carol2160', false)). +answer('urn:example:complies'('urn:example:carol2161', false)). +answer('urn:example:complies'('urn:example:carol2162', false)). +answer('urn:example:complies'('urn:example:carol2163', false)). +answer('urn:example:complies'('urn:example:carol2164', false)). +answer('urn:example:complies'('urn:example:carol2165', false)). +answer('urn:example:complies'('urn:example:carol2166', false)). +answer('urn:example:complies'('urn:example:carol2167', false)). +answer('urn:example:complies'('urn:example:carol2168', false)). +answer('urn:example:complies'('urn:example:carol2169', false)). +answer('urn:example:complies'('urn:example:carol2170', false)). +answer('urn:example:complies'('urn:example:carol2171', false)). +answer('urn:example:complies'('urn:example:carol2172', false)). +answer('urn:example:complies'('urn:example:carol2173', false)). +answer('urn:example:complies'('urn:example:carol2174', false)). +answer('urn:example:complies'('urn:example:carol2175', false)). +answer('urn:example:complies'('urn:example:carol2176', false)). +answer('urn:example:complies'('urn:example:carol2177', false)). +answer('urn:example:complies'('urn:example:carol2178', false)). +answer('urn:example:complies'('urn:example:carol2179', false)). +answer('urn:example:complies'('urn:example:carol2180', false)). +answer('urn:example:complies'('urn:example:carol2181', false)). +answer('urn:example:complies'('urn:example:carol2182', false)). +answer('urn:example:complies'('urn:example:carol2183', false)). +answer('urn:example:complies'('urn:example:carol2184', false)). +answer('urn:example:complies'('urn:example:carol2185', false)). +answer('urn:example:complies'('urn:example:carol2186', false)). +answer('urn:example:complies'('urn:example:carol2187', false)). +answer('urn:example:complies'('urn:example:carol2188', false)). +answer('urn:example:complies'('urn:example:carol2189', false)). +answer('urn:example:complies'('urn:example:carol2190', false)). +answer('urn:example:complies'('urn:example:carol2191', false)). +answer('urn:example:complies'('urn:example:carol2192', false)). +answer('urn:example:complies'('urn:example:carol2193', false)). +answer('urn:example:complies'('urn:example:carol2194', false)). +answer('urn:example:complies'('urn:example:carol2195', false)). +answer('urn:example:complies'('urn:example:carol2196', false)). +answer('urn:example:complies'('urn:example:carol2197', false)). +answer('urn:example:complies'('urn:example:carol2198', false)). +answer('urn:example:complies'('urn:example:carol2199', false)). +answer('urn:example:complies'('urn:example:carol2200', false)). +answer('urn:example:complies'('urn:example:carol2201', false)). +answer('urn:example:complies'('urn:example:carol2202', false)). +answer('urn:example:complies'('urn:example:carol2203', false)). +answer('urn:example:complies'('urn:example:carol2204', false)). +answer('urn:example:complies'('urn:example:carol2205', false)). +answer('urn:example:complies'('urn:example:carol2206', false)). +answer('urn:example:complies'('urn:example:carol2207', false)). +answer('urn:example:complies'('urn:example:carol2208', false)). +answer('urn:example:complies'('urn:example:carol2209', false)). +answer('urn:example:complies'('urn:example:carol2210', false)). +answer('urn:example:complies'('urn:example:carol2211', false)). +answer('urn:example:complies'('urn:example:carol2212', false)). +answer('urn:example:complies'('urn:example:carol2213', false)). +answer('urn:example:complies'('urn:example:carol2214', false)). +answer('urn:example:complies'('urn:example:carol2215', false)). +answer('urn:example:complies'('urn:example:carol2216', false)). +answer('urn:example:complies'('urn:example:carol2217', false)). +answer('urn:example:complies'('urn:example:carol2218', false)). +answer('urn:example:complies'('urn:example:carol2219', false)). +answer('urn:example:complies'('urn:example:carol2220', false)). +answer('urn:example:complies'('urn:example:carol2221', false)). +answer('urn:example:complies'('urn:example:carol2222', false)). +answer('urn:example:complies'('urn:example:carol2223', false)). +answer('urn:example:complies'('urn:example:carol2224', false)). +answer('urn:example:complies'('urn:example:carol2225', false)). +answer('urn:example:complies'('urn:example:carol2226', false)). +answer('urn:example:complies'('urn:example:carol2227', false)). +answer('urn:example:complies'('urn:example:carol2228', false)). +answer('urn:example:complies'('urn:example:carol2229', false)). +answer('urn:example:complies'('urn:example:carol2230', false)). +answer('urn:example:complies'('urn:example:carol2231', false)). +answer('urn:example:complies'('urn:example:carol2232', false)). +answer('urn:example:complies'('urn:example:carol2233', false)). +answer('urn:example:complies'('urn:example:carol2234', false)). +answer('urn:example:complies'('urn:example:carol2235', false)). +answer('urn:example:complies'('urn:example:carol2236', false)). +answer('urn:example:complies'('urn:example:carol2237', false)). +answer('urn:example:complies'('urn:example:carol2238', false)). +answer('urn:example:complies'('urn:example:carol2239', false)). +answer('urn:example:complies'('urn:example:carol2240', false)). +answer('urn:example:complies'('urn:example:carol2241', false)). +answer('urn:example:complies'('urn:example:carol2242', false)). +answer('urn:example:complies'('urn:example:carol2243', false)). +answer('urn:example:complies'('urn:example:carol2244', false)). +answer('urn:example:complies'('urn:example:carol2245', false)). +answer('urn:example:complies'('urn:example:carol2246', false)). +answer('urn:example:complies'('urn:example:carol2247', false)). +answer('urn:example:complies'('urn:example:carol2248', false)). +answer('urn:example:complies'('urn:example:carol2249', false)). +answer('urn:example:complies'('urn:example:carol2250', false)). +answer('urn:example:complies'('urn:example:carol2251', false)). +answer('urn:example:complies'('urn:example:carol2252', false)). +answer('urn:example:complies'('urn:example:carol2253', false)). +answer('urn:example:complies'('urn:example:carol2254', false)). +answer('urn:example:complies'('urn:example:carol2255', false)). +answer('urn:example:complies'('urn:example:carol2256', false)). +answer('urn:example:complies'('urn:example:carol2257', false)). +answer('urn:example:complies'('urn:example:carol2258', false)). +answer('urn:example:complies'('urn:example:carol2259', false)). +answer('urn:example:complies'('urn:example:carol2260', false)). +answer('urn:example:complies'('urn:example:carol2261', false)). +answer('urn:example:complies'('urn:example:carol2262', false)). +answer('urn:example:complies'('urn:example:carol2263', false)). +answer('urn:example:complies'('urn:example:carol2264', false)). +answer('urn:example:complies'('urn:example:carol2265', false)). +answer('urn:example:complies'('urn:example:carol2266', false)). +answer('urn:example:complies'('urn:example:carol2267', false)). +answer('urn:example:complies'('urn:example:carol2268', false)). +answer('urn:example:complies'('urn:example:carol2269', false)). +answer('urn:example:complies'('urn:example:carol2270', false)). +answer('urn:example:complies'('urn:example:carol2271', false)). +answer('urn:example:complies'('urn:example:carol2272', false)). +answer('urn:example:complies'('urn:example:carol2273', false)). +answer('urn:example:complies'('urn:example:carol2274', false)). +answer('urn:example:complies'('urn:example:carol2275', false)). +answer('urn:example:complies'('urn:example:carol2276', false)). +answer('urn:example:complies'('urn:example:carol2277', false)). +answer('urn:example:complies'('urn:example:carol2278', false)). +answer('urn:example:complies'('urn:example:carol2279', false)). +answer('urn:example:complies'('urn:example:carol2280', false)). +answer('urn:example:complies'('urn:example:carol2281', false)). +answer('urn:example:complies'('urn:example:carol2282', false)). +answer('urn:example:complies'('urn:example:carol2283', false)). +answer('urn:example:complies'('urn:example:carol2284', false)). +answer('urn:example:complies'('urn:example:carol2285', false)). +answer('urn:example:complies'('urn:example:carol2286', false)). +answer('urn:example:complies'('urn:example:carol2287', false)). +answer('urn:example:complies'('urn:example:carol2288', false)). +answer('urn:example:complies'('urn:example:carol2289', false)). +answer('urn:example:complies'('urn:example:carol2290', false)). +answer('urn:example:complies'('urn:example:carol2291', false)). +answer('urn:example:complies'('urn:example:carol2292', false)). +answer('urn:example:complies'('urn:example:carol2293', false)). +answer('urn:example:complies'('urn:example:carol2294', false)). +answer('urn:example:complies'('urn:example:carol2295', false)). +answer('urn:example:complies'('urn:example:carol2296', false)). +answer('urn:example:complies'('urn:example:carol2297', false)). +answer('urn:example:complies'('urn:example:carol2298', false)). +answer('urn:example:complies'('urn:example:carol2299', false)). +answer('urn:example:complies'('urn:example:carol2300', false)). +answer('urn:example:complies'('urn:example:carol2301', false)). +answer('urn:example:complies'('urn:example:carol2302', false)). +answer('urn:example:complies'('urn:example:carol2303', false)). +answer('urn:example:complies'('urn:example:carol2304', false)). +answer('urn:example:complies'('urn:example:carol2305', false)). +answer('urn:example:complies'('urn:example:carol2306', false)). +answer('urn:example:complies'('urn:example:carol2307', false)). +answer('urn:example:complies'('urn:example:carol2308', false)). +answer('urn:example:complies'('urn:example:carol2309', false)). +answer('urn:example:complies'('urn:example:carol2310', false)). +answer('urn:example:complies'('urn:example:carol2311', false)). +answer('urn:example:complies'('urn:example:carol2312', false)). +answer('urn:example:complies'('urn:example:carol2313', false)). +answer('urn:example:complies'('urn:example:carol2314', false)). +answer('urn:example:complies'('urn:example:carol2315', false)). +answer('urn:example:complies'('urn:example:carol2316', false)). +answer('urn:example:complies'('urn:example:carol2317', false)). +answer('urn:example:complies'('urn:example:carol2318', false)). +answer('urn:example:complies'('urn:example:carol2319', false)). +answer('urn:example:complies'('urn:example:carol2320', false)). +answer('urn:example:complies'('urn:example:carol2321', false)). +answer('urn:example:complies'('urn:example:carol2322', false)). +answer('urn:example:complies'('urn:example:carol2323', false)). +answer('urn:example:complies'('urn:example:carol2324', false)). +answer('urn:example:complies'('urn:example:carol2325', false)). +answer('urn:example:complies'('urn:example:carol2326', false)). +answer('urn:example:complies'('urn:example:carol2327', false)). +answer('urn:example:complies'('urn:example:carol2328', false)). +answer('urn:example:complies'('urn:example:carol2329', false)). +answer('urn:example:complies'('urn:example:carol2330', false)). +answer('urn:example:complies'('urn:example:carol2331', false)). +answer('urn:example:complies'('urn:example:carol2332', false)). +answer('urn:example:complies'('urn:example:carol2333', false)). +answer('urn:example:complies'('urn:example:carol2334', false)). +answer('urn:example:complies'('urn:example:carol2335', false)). +answer('urn:example:complies'('urn:example:carol2336', false)). +answer('urn:example:complies'('urn:example:carol2337', false)). +answer('urn:example:complies'('urn:example:carol2338', false)). +answer('urn:example:complies'('urn:example:carol2339', false)). +answer('urn:example:complies'('urn:example:carol2340', false)). +answer('urn:example:complies'('urn:example:carol2341', false)). +answer('urn:example:complies'('urn:example:carol2342', false)). +answer('urn:example:complies'('urn:example:carol2343', false)). +answer('urn:example:complies'('urn:example:carol2344', false)). +answer('urn:example:complies'('urn:example:carol2345', false)). +answer('urn:example:complies'('urn:example:carol2346', false)). +answer('urn:example:complies'('urn:example:carol2347', false)). +answer('urn:example:complies'('urn:example:carol2348', false)). +answer('urn:example:complies'('urn:example:carol2349', false)). +answer('urn:example:complies'('urn:example:carol2350', false)). +answer('urn:example:complies'('urn:example:carol2351', false)). +answer('urn:example:complies'('urn:example:carol2352', false)). +answer('urn:example:complies'('urn:example:carol2353', false)). +answer('urn:example:complies'('urn:example:carol2354', false)). +answer('urn:example:complies'('urn:example:carol2355', false)). +answer('urn:example:complies'('urn:example:carol2356', false)). +answer('urn:example:complies'('urn:example:carol2357', false)). +answer('urn:example:complies'('urn:example:carol2358', false)). +answer('urn:example:complies'('urn:example:carol2359', false)). +answer('urn:example:complies'('urn:example:carol2360', false)). +answer('urn:example:complies'('urn:example:carol2361', false)). +answer('urn:example:complies'('urn:example:carol2362', false)). +answer('urn:example:complies'('urn:example:carol2363', false)). +answer('urn:example:complies'('urn:example:carol2364', false)). +answer('urn:example:complies'('urn:example:carol2365', false)). +answer('urn:example:complies'('urn:example:carol2366', false)). +answer('urn:example:complies'('urn:example:carol2367', false)). +answer('urn:example:complies'('urn:example:carol2368', false)). +answer('urn:example:complies'('urn:example:carol2369', false)). +answer('urn:example:complies'('urn:example:carol2370', false)). +answer('urn:example:complies'('urn:example:carol2371', false)). +answer('urn:example:complies'('urn:example:carol2372', false)). +answer('urn:example:complies'('urn:example:carol2373', false)). +answer('urn:example:complies'('urn:example:carol2374', false)). +answer('urn:example:complies'('urn:example:carol2375', false)). +answer('urn:example:complies'('urn:example:carol2376', false)). +answer('urn:example:complies'('urn:example:carol2377', false)). +answer('urn:example:complies'('urn:example:carol2378', false)). +answer('urn:example:complies'('urn:example:carol2379', false)). +answer('urn:example:complies'('urn:example:carol2380', false)). +answer('urn:example:complies'('urn:example:carol2381', false)). +answer('urn:example:complies'('urn:example:carol2382', false)). +answer('urn:example:complies'('urn:example:carol2383', false)). +answer('urn:example:complies'('urn:example:carol2384', false)). +answer('urn:example:complies'('urn:example:carol2385', false)). +answer('urn:example:complies'('urn:example:carol2386', false)). +answer('urn:example:complies'('urn:example:carol2387', false)). +answer('urn:example:complies'('urn:example:carol2388', false)). +answer('urn:example:complies'('urn:example:carol2389', false)). +answer('urn:example:complies'('urn:example:carol2390', false)). +answer('urn:example:complies'('urn:example:carol2391', false)). +answer('urn:example:complies'('urn:example:carol2392', false)). +answer('urn:example:complies'('urn:example:carol2393', false)). +answer('urn:example:complies'('urn:example:carol2394', false)). +answer('urn:example:complies'('urn:example:carol2395', false)). +answer('urn:example:complies'('urn:example:carol2396', false)). +answer('urn:example:complies'('urn:example:carol2397', false)). +answer('urn:example:complies'('urn:example:carol2398', false)). +answer('urn:example:complies'('urn:example:carol2399', false)). +answer('urn:example:complies'('urn:example:carol2400', false)). +answer('urn:example:complies'('urn:example:carol2401', false)). +answer('urn:example:complies'('urn:example:carol2402', false)). +answer('urn:example:complies'('urn:example:carol2403', false)). +answer('urn:example:complies'('urn:example:carol2404', false)). +answer('urn:example:complies'('urn:example:carol2405', false)). +answer('urn:example:complies'('urn:example:carol2406', false)). +answer('urn:example:complies'('urn:example:carol2407', false)). +answer('urn:example:complies'('urn:example:carol2408', false)). +answer('urn:example:complies'('urn:example:carol2409', false)). +answer('urn:example:complies'('urn:example:carol2410', false)). +answer('urn:example:complies'('urn:example:carol2411', false)). +answer('urn:example:complies'('urn:example:carol2412', false)). +answer('urn:example:complies'('urn:example:carol2413', false)). +answer('urn:example:complies'('urn:example:carol2414', false)). +answer('urn:example:complies'('urn:example:carol2415', false)). +answer('urn:example:complies'('urn:example:carol2416', false)). +answer('urn:example:complies'('urn:example:carol2417', false)). +answer('urn:example:complies'('urn:example:carol2418', false)). +answer('urn:example:complies'('urn:example:carol2419', false)). +answer('urn:example:complies'('urn:example:carol2420', false)). +answer('urn:example:complies'('urn:example:carol2421', false)). +answer('urn:example:complies'('urn:example:carol2422', false)). +answer('urn:example:complies'('urn:example:carol2423', false)). +answer('urn:example:complies'('urn:example:carol2424', false)). +answer('urn:example:complies'('urn:example:carol2425', false)). +answer('urn:example:complies'('urn:example:carol2426', false)). +answer('urn:example:complies'('urn:example:carol2427', false)). +answer('urn:example:complies'('urn:example:carol2428', false)). +answer('urn:example:complies'('urn:example:carol2429', false)). +answer('urn:example:complies'('urn:example:carol2430', false)). +answer('urn:example:complies'('urn:example:carol2431', false)). +answer('urn:example:complies'('urn:example:carol2432', false)). +answer('urn:example:complies'('urn:example:carol2433', false)). +answer('urn:example:complies'('urn:example:carol2434', false)). +answer('urn:example:complies'('urn:example:carol2435', false)). +answer('urn:example:complies'('urn:example:carol2436', false)). +answer('urn:example:complies'('urn:example:carol2437', false)). +answer('urn:example:complies'('urn:example:carol2438', false)). +answer('urn:example:complies'('urn:example:carol2439', false)). +answer('urn:example:complies'('urn:example:carol2440', false)). +answer('urn:example:complies'('urn:example:carol2441', false)). +answer('urn:example:complies'('urn:example:carol2442', false)). +answer('urn:example:complies'('urn:example:carol2443', false)). +answer('urn:example:complies'('urn:example:carol2444', false)). +answer('urn:example:complies'('urn:example:carol2445', false)). +answer('urn:example:complies'('urn:example:carol2446', false)). +answer('urn:example:complies'('urn:example:carol2447', false)). +answer('urn:example:complies'('urn:example:carol2448', false)). +answer('urn:example:complies'('urn:example:carol2449', false)). +answer('urn:example:complies'('urn:example:carol2450', false)). +answer('urn:example:complies'('urn:example:carol2451', false)). +answer('urn:example:complies'('urn:example:carol2452', false)). +answer('urn:example:complies'('urn:example:carol2453', false)). +answer('urn:example:complies'('urn:example:carol2454', false)). +answer('urn:example:complies'('urn:example:carol2455', false)). +answer('urn:example:complies'('urn:example:carol2456', false)). +answer('urn:example:complies'('urn:example:carol2457', false)). +answer('urn:example:complies'('urn:example:carol2458', false)). +answer('urn:example:complies'('urn:example:carol2459', false)). +answer('urn:example:complies'('urn:example:carol2460', false)). +answer('urn:example:complies'('urn:example:carol2461', false)). +answer('urn:example:complies'('urn:example:carol2462', false)). +answer('urn:example:complies'('urn:example:carol2463', false)). +answer('urn:example:complies'('urn:example:carol2464', false)). +answer('urn:example:complies'('urn:example:carol2465', false)). +answer('urn:example:complies'('urn:example:carol2466', false)). +answer('urn:example:complies'('urn:example:carol2467', false)). +answer('urn:example:complies'('urn:example:carol2468', false)). +answer('urn:example:complies'('urn:example:carol2469', false)). +answer('urn:example:complies'('urn:example:carol2470', false)). +answer('urn:example:complies'('urn:example:carol2471', false)). +answer('urn:example:complies'('urn:example:carol2472', false)). +answer('urn:example:complies'('urn:example:carol2473', false)). +answer('urn:example:complies'('urn:example:carol2474', false)). +answer('urn:example:complies'('urn:example:carol2475', false)). +answer('urn:example:complies'('urn:example:carol2476', false)). +answer('urn:example:complies'('urn:example:carol2477', false)). +answer('urn:example:complies'('urn:example:carol2478', false)). +answer('urn:example:complies'('urn:example:carol2479', false)). +answer('urn:example:complies'('urn:example:carol2480', false)). +answer('urn:example:complies'('urn:example:carol2481', false)). +answer('urn:example:complies'('urn:example:carol2482', false)). +answer('urn:example:complies'('urn:example:carol2483', false)). +answer('urn:example:complies'('urn:example:carol2484', false)). +answer('urn:example:complies'('urn:example:carol2485', false)). +answer('urn:example:complies'('urn:example:carol2486', false)). +answer('urn:example:complies'('urn:example:carol2487', false)). +answer('urn:example:complies'('urn:example:carol2488', false)). +answer('urn:example:complies'('urn:example:carol2489', false)). +answer('urn:example:complies'('urn:example:carol2490', false)). +answer('urn:example:complies'('urn:example:carol2491', false)). +answer('urn:example:complies'('urn:example:carol2492', false)). +answer('urn:example:complies'('urn:example:carol2493', false)). +answer('urn:example:complies'('urn:example:carol2494', false)). +answer('urn:example:complies'('urn:example:carol2495', false)). +answer('urn:example:complies'('urn:example:carol2496', false)). +answer('urn:example:complies'('urn:example:carol2497', false)). +answer('urn:example:complies'('urn:example:carol2498', false)). +answer('urn:example:complies'('urn:example:carol2499', false)). +answer('urn:example:complies'('urn:example:carol2500', false)). +answer('urn:example:complies'('urn:example:carol2501', false)). +answer('urn:example:complies'('urn:example:carol2502', false)). +answer('urn:example:complies'('urn:example:carol2503', false)). +answer('urn:example:complies'('urn:example:carol2504', false)). +answer('urn:example:complies'('urn:example:carol2505', false)). +answer('urn:example:complies'('urn:example:carol2506', false)). +answer('urn:example:complies'('urn:example:carol2507', false)). +answer('urn:example:complies'('urn:example:carol2508', false)). +answer('urn:example:complies'('urn:example:carol2509', false)). +answer('urn:example:complies'('urn:example:carol2510', false)). +answer('urn:example:complies'('urn:example:carol2511', false)). +answer('urn:example:complies'('urn:example:carol2512', false)). +answer('urn:example:complies'('urn:example:carol2513', false)). +answer('urn:example:complies'('urn:example:carol2514', false)). +answer('urn:example:complies'('urn:example:carol2515', false)). +answer('urn:example:complies'('urn:example:carol2516', false)). +answer('urn:example:complies'('urn:example:carol2517', false)). +answer('urn:example:complies'('urn:example:carol2518', false)). +answer('urn:example:complies'('urn:example:carol2519', false)). +answer('urn:example:complies'('urn:example:carol2520', false)). +answer('urn:example:complies'('urn:example:carol2521', false)). +answer('urn:example:complies'('urn:example:carol2522', false)). +answer('urn:example:complies'('urn:example:carol2523', false)). +answer('urn:example:complies'('urn:example:carol2524', false)). +answer('urn:example:complies'('urn:example:carol2525', false)). +answer('urn:example:complies'('urn:example:carol2526', false)). +answer('urn:example:complies'('urn:example:carol2527', false)). +answer('urn:example:complies'('urn:example:carol2528', false)). +answer('urn:example:complies'('urn:example:carol2529', false)). +answer('urn:example:complies'('urn:example:carol2530', false)). +answer('urn:example:complies'('urn:example:carol2531', false)). +answer('urn:example:complies'('urn:example:carol2532', false)). +answer('urn:example:complies'('urn:example:carol2533', false)). +answer('urn:example:complies'('urn:example:carol2534', false)). +answer('urn:example:complies'('urn:example:carol2535', false)). +answer('urn:example:complies'('urn:example:carol2536', false)). +answer('urn:example:complies'('urn:example:carol2537', false)). +answer('urn:example:complies'('urn:example:carol2538', false)). +answer('urn:example:complies'('urn:example:carol2539', false)). +answer('urn:example:complies'('urn:example:carol2540', false)). +answer('urn:example:complies'('urn:example:carol2541', false)). +answer('urn:example:complies'('urn:example:carol2542', false)). +answer('urn:example:complies'('urn:example:carol2543', false)). +answer('urn:example:complies'('urn:example:carol2544', false)). +answer('urn:example:complies'('urn:example:carol2545', false)). +answer('urn:example:complies'('urn:example:carol2546', false)). +answer('urn:example:complies'('urn:example:carol2547', false)). +answer('urn:example:complies'('urn:example:carol2548', false)). +answer('urn:example:complies'('urn:example:carol2549', false)). +answer('urn:example:complies'('urn:example:carol2550', false)). +answer('urn:example:complies'('urn:example:carol2551', false)). +answer('urn:example:complies'('urn:example:carol2552', false)). +answer('urn:example:complies'('urn:example:carol2553', false)). +answer('urn:example:complies'('urn:example:carol2554', false)). +answer('urn:example:complies'('urn:example:carol2555', false)). +answer('urn:example:complies'('urn:example:carol2556', false)). +answer('urn:example:complies'('urn:example:carol2557', false)). +answer('urn:example:complies'('urn:example:carol2558', false)). +answer('urn:example:complies'('urn:example:carol2559', false)). +answer('urn:example:complies'('urn:example:carol2560', false)). +answer('urn:example:complies'('urn:example:carol2561', false)). +answer('urn:example:complies'('urn:example:carol2562', false)). +answer('urn:example:complies'('urn:example:carol2563', false)). +answer('urn:example:complies'('urn:example:carol2564', false)). +answer('urn:example:complies'('urn:example:carol2565', false)). +answer('urn:example:complies'('urn:example:carol2566', false)). +answer('urn:example:complies'('urn:example:carol2567', false)). +answer('urn:example:complies'('urn:example:carol2568', false)). +answer('urn:example:complies'('urn:example:carol2569', false)). +answer('urn:example:complies'('urn:example:carol2570', false)). +answer('urn:example:complies'('urn:example:carol2571', false)). +answer('urn:example:complies'('urn:example:carol2572', false)). +answer('urn:example:complies'('urn:example:carol2573', false)). +answer('urn:example:complies'('urn:example:carol2574', false)). +answer('urn:example:complies'('urn:example:carol2575', false)). +answer('urn:example:complies'('urn:example:carol2576', false)). +answer('urn:example:complies'('urn:example:carol2577', false)). +answer('urn:example:complies'('urn:example:carol2578', false)). +answer('urn:example:complies'('urn:example:carol2579', false)). +answer('urn:example:complies'('urn:example:carol2580', false)). +answer('urn:example:complies'('urn:example:carol2581', false)). +answer('urn:example:complies'('urn:example:carol2582', false)). +answer('urn:example:complies'('urn:example:carol2583', false)). +answer('urn:example:complies'('urn:example:carol2584', false)). +answer('urn:example:complies'('urn:example:carol2585', false)). +answer('urn:example:complies'('urn:example:carol2586', false)). +answer('urn:example:complies'('urn:example:carol2587', false)). +answer('urn:example:complies'('urn:example:carol2588', false)). +answer('urn:example:complies'('urn:example:carol2589', false)). +answer('urn:example:complies'('urn:example:carol2590', false)). +answer('urn:example:complies'('urn:example:carol2591', false)). +answer('urn:example:complies'('urn:example:carol2592', false)). +answer('urn:example:complies'('urn:example:carol2593', false)). +answer('urn:example:complies'('urn:example:carol2594', false)). +answer('urn:example:complies'('urn:example:carol2595', false)). +answer('urn:example:complies'('urn:example:carol2596', false)). +answer('urn:example:complies'('urn:example:carol2597', false)). +answer('urn:example:complies'('urn:example:carol2598', false)). +answer('urn:example:complies'('urn:example:carol2599', false)). +answer('urn:example:complies'('urn:example:carol2600', false)). +answer('urn:example:complies'('urn:example:carol2601', false)). +answer('urn:example:complies'('urn:example:carol2602', false)). +answer('urn:example:complies'('urn:example:carol2603', false)). +answer('urn:example:complies'('urn:example:carol2604', false)). +answer('urn:example:complies'('urn:example:carol2605', false)). +answer('urn:example:complies'('urn:example:carol2606', false)). +answer('urn:example:complies'('urn:example:carol2607', false)). +answer('urn:example:complies'('urn:example:carol2608', false)). +answer('urn:example:complies'('urn:example:carol2609', false)). +answer('urn:example:complies'('urn:example:carol2610', false)). +answer('urn:example:complies'('urn:example:carol2611', false)). +answer('urn:example:complies'('urn:example:carol2612', false)). +answer('urn:example:complies'('urn:example:carol2613', false)). +answer('urn:example:complies'('urn:example:carol2614', false)). +answer('urn:example:complies'('urn:example:carol2615', false)). +answer('urn:example:complies'('urn:example:carol2616', false)). +answer('urn:example:complies'('urn:example:carol2617', false)). +answer('urn:example:complies'('urn:example:carol2618', false)). +answer('urn:example:complies'('urn:example:carol2619', false)). +answer('urn:example:complies'('urn:example:carol2620', false)). +answer('urn:example:complies'('urn:example:carol2621', false)). +answer('urn:example:complies'('urn:example:carol2622', false)). +answer('urn:example:complies'('urn:example:carol2623', false)). +answer('urn:example:complies'('urn:example:carol2624', false)). +answer('urn:example:complies'('urn:example:carol2625', false)). +answer('urn:example:complies'('urn:example:carol2626', false)). +answer('urn:example:complies'('urn:example:carol2627', false)). +answer('urn:example:complies'('urn:example:carol2628', false)). +answer('urn:example:complies'('urn:example:carol2629', false)). +answer('urn:example:complies'('urn:example:carol2630', false)). +answer('urn:example:complies'('urn:example:carol2631', false)). +answer('urn:example:complies'('urn:example:carol2632', false)). +answer('urn:example:complies'('urn:example:carol2633', false)). +answer('urn:example:complies'('urn:example:carol2634', false)). +answer('urn:example:complies'('urn:example:carol2635', false)). +answer('urn:example:complies'('urn:example:carol2636', false)). +answer('urn:example:complies'('urn:example:carol2637', false)). +answer('urn:example:complies'('urn:example:carol2638', false)). +answer('urn:example:complies'('urn:example:carol2639', false)). +answer('urn:example:complies'('urn:example:carol2640', false)). +answer('urn:example:complies'('urn:example:carol2641', false)). +answer('urn:example:complies'('urn:example:carol2642', false)). +answer('urn:example:complies'('urn:example:carol2643', false)). +answer('urn:example:complies'('urn:example:carol2644', false)). +answer('urn:example:complies'('urn:example:carol2645', false)). +answer('urn:example:complies'('urn:example:carol2646', false)). +answer('urn:example:complies'('urn:example:carol2647', false)). +answer('urn:example:complies'('urn:example:carol2648', false)). +answer('urn:example:complies'('urn:example:carol2649', false)). +answer('urn:example:complies'('urn:example:carol2650', false)). +answer('urn:example:complies'('urn:example:carol2651', false)). +answer('urn:example:complies'('urn:example:carol2652', false)). +answer('urn:example:complies'('urn:example:carol2653', false)). +answer('urn:example:complies'('urn:example:carol2654', false)). +answer('urn:example:complies'('urn:example:carol2655', false)). +answer('urn:example:complies'('urn:example:carol2656', false)). +answer('urn:example:complies'('urn:example:carol2657', false)). +answer('urn:example:complies'('urn:example:carol2658', false)). +answer('urn:example:complies'('urn:example:carol2659', false)). +answer('urn:example:complies'('urn:example:carol2660', false)). +answer('urn:example:complies'('urn:example:carol2661', false)). +answer('urn:example:complies'('urn:example:carol2662', false)). +answer('urn:example:complies'('urn:example:carol2663', false)). +answer('urn:example:complies'('urn:example:carol2664', false)). +answer('urn:example:complies'('urn:example:carol2665', false)). +answer('urn:example:complies'('urn:example:carol2666', false)). +answer('urn:example:complies'('urn:example:carol2667', false)). +answer('urn:example:complies'('urn:example:carol2668', false)). +answer('urn:example:complies'('urn:example:carol2669', false)). +answer('urn:example:complies'('urn:example:carol2670', false)). +answer('urn:example:complies'('urn:example:carol2671', false)). +answer('urn:example:complies'('urn:example:carol2672', false)). +answer('urn:example:complies'('urn:example:carol2673', false)). +answer('urn:example:complies'('urn:example:carol2674', false)). +answer('urn:example:complies'('urn:example:carol2675', false)). +answer('urn:example:complies'('urn:example:carol2676', false)). +answer('urn:example:complies'('urn:example:carol2677', false)). +answer('urn:example:complies'('urn:example:carol2678', false)). +answer('urn:example:complies'('urn:example:carol2679', false)). +answer('urn:example:complies'('urn:example:carol2680', false)). +answer('urn:example:complies'('urn:example:carol2681', false)). +answer('urn:example:complies'('urn:example:carol2682', false)). +answer('urn:example:complies'('urn:example:carol2683', false)). +answer('urn:example:complies'('urn:example:carol2684', false)). +answer('urn:example:complies'('urn:example:carol2685', false)). +answer('urn:example:complies'('urn:example:carol2686', false)). +answer('urn:example:complies'('urn:example:carol2687', false)). +answer('urn:example:complies'('urn:example:carol2688', false)). +answer('urn:example:complies'('urn:example:carol2689', false)). +answer('urn:example:complies'('urn:example:carol2690', false)). +answer('urn:example:complies'('urn:example:carol2691', false)). +answer('urn:example:complies'('urn:example:carol2692', false)). +answer('urn:example:complies'('urn:example:carol2693', false)). +answer('urn:example:complies'('urn:example:carol2694', false)). +answer('urn:example:complies'('urn:example:carol2695', false)). +answer('urn:example:complies'('urn:example:carol2696', false)). +answer('urn:example:complies'('urn:example:carol2697', false)). +answer('urn:example:complies'('urn:example:carol2698', false)). +answer('urn:example:complies'('urn:example:carol2699', false)). +answer('urn:example:complies'('urn:example:carol2700', false)). +answer('urn:example:complies'('urn:example:carol2701', false)). +answer('urn:example:complies'('urn:example:carol2702', false)). +answer('urn:example:complies'('urn:example:carol2703', false)). +answer('urn:example:complies'('urn:example:carol2704', false)). +answer('urn:example:complies'('urn:example:carol2705', false)). +answer('urn:example:complies'('urn:example:carol2706', false)). +answer('urn:example:complies'('urn:example:carol2707', false)). +answer('urn:example:complies'('urn:example:carol2708', false)). +answer('urn:example:complies'('urn:example:carol2709', false)). +answer('urn:example:complies'('urn:example:carol2710', false)). +answer('urn:example:complies'('urn:example:carol2711', false)). +answer('urn:example:complies'('urn:example:carol2712', false)). +answer('urn:example:complies'('urn:example:carol2713', false)). +answer('urn:example:complies'('urn:example:carol2714', false)). +answer('urn:example:complies'('urn:example:carol2715', false)). +answer('urn:example:complies'('urn:example:carol2716', false)). +answer('urn:example:complies'('urn:example:carol2717', false)). +answer('urn:example:complies'('urn:example:carol2718', false)). +answer('urn:example:complies'('urn:example:carol2719', false)). +answer('urn:example:complies'('urn:example:carol2720', false)). +answer('urn:example:complies'('urn:example:carol2721', false)). +answer('urn:example:complies'('urn:example:carol2722', false)). +answer('urn:example:complies'('urn:example:carol2723', false)). +answer('urn:example:complies'('urn:example:carol2724', false)). +answer('urn:example:complies'('urn:example:carol2725', false)). +answer('urn:example:complies'('urn:example:carol2726', false)). +answer('urn:example:complies'('urn:example:carol2727', false)). +answer('urn:example:complies'('urn:example:carol2728', false)). +answer('urn:example:complies'('urn:example:carol2729', false)). +answer('urn:example:complies'('urn:example:carol2730', false)). +answer('urn:example:complies'('urn:example:carol2731', false)). +answer('urn:example:complies'('urn:example:carol2732', false)). +answer('urn:example:complies'('urn:example:carol2733', false)). +answer('urn:example:complies'('urn:example:carol2734', false)). +answer('urn:example:complies'('urn:example:carol2735', false)). +answer('urn:example:complies'('urn:example:carol2736', false)). +answer('urn:example:complies'('urn:example:carol2737', false)). +answer('urn:example:complies'('urn:example:carol2738', false)). +answer('urn:example:complies'('urn:example:carol2739', false)). +answer('urn:example:complies'('urn:example:carol2740', false)). +answer('urn:example:complies'('urn:example:carol2741', false)). +answer('urn:example:complies'('urn:example:carol2742', false)). +answer('urn:example:complies'('urn:example:carol2743', false)). +answer('urn:example:complies'('urn:example:carol2744', false)). +answer('urn:example:complies'('urn:example:carol2745', false)). +answer('urn:example:complies'('urn:example:carol2746', false)). +answer('urn:example:complies'('urn:example:carol2747', false)). +answer('urn:example:complies'('urn:example:carol2748', false)). +answer('urn:example:complies'('urn:example:carol2749', false)). +answer('urn:example:complies'('urn:example:carol2750', false)). +answer('urn:example:complies'('urn:example:carol2751', false)). +answer('urn:example:complies'('urn:example:carol2752', false)). +answer('urn:example:complies'('urn:example:carol2753', false)). +answer('urn:example:complies'('urn:example:carol2754', false)). +answer('urn:example:complies'('urn:example:carol2755', false)). +answer('urn:example:complies'('urn:example:carol2756', false)). +answer('urn:example:complies'('urn:example:carol2757', false)). +answer('urn:example:complies'('urn:example:carol2758', false)). +answer('urn:example:complies'('urn:example:carol2759', false)). +answer('urn:example:complies'('urn:example:carol2760', false)). +answer('urn:example:complies'('urn:example:carol2761', false)). +answer('urn:example:complies'('urn:example:carol2762', false)). +answer('urn:example:complies'('urn:example:carol2763', false)). +answer('urn:example:complies'('urn:example:carol2764', false)). +answer('urn:example:complies'('urn:example:carol2765', false)). +answer('urn:example:complies'('urn:example:carol2766', false)). +answer('urn:example:complies'('urn:example:carol2767', false)). +answer('urn:example:complies'('urn:example:carol2768', false)). +answer('urn:example:complies'('urn:example:carol2769', false)). +answer('urn:example:complies'('urn:example:carol2770', false)). +answer('urn:example:complies'('urn:example:carol2771', false)). +answer('urn:example:complies'('urn:example:carol2772', false)). +answer('urn:example:complies'('urn:example:carol2773', false)). +answer('urn:example:complies'('urn:example:carol2774', false)). +answer('urn:example:complies'('urn:example:carol2775', false)). +answer('urn:example:complies'('urn:example:carol2776', false)). +answer('urn:example:complies'('urn:example:carol2777', false)). +answer('urn:example:complies'('urn:example:carol2778', false)). +answer('urn:example:complies'('urn:example:carol2779', false)). +answer('urn:example:complies'('urn:example:carol2780', false)). +answer('urn:example:complies'('urn:example:carol2781', false)). +answer('urn:example:complies'('urn:example:carol2782', false)). +answer('urn:example:complies'('urn:example:carol2783', false)). +answer('urn:example:complies'('urn:example:carol2784', false)). +answer('urn:example:complies'('urn:example:carol2785', false)). +answer('urn:example:complies'('urn:example:carol2786', false)). +answer('urn:example:complies'('urn:example:carol2787', false)). +answer('urn:example:complies'('urn:example:carol2788', false)). +answer('urn:example:complies'('urn:example:carol2789', false)). +answer('urn:example:complies'('urn:example:carol2790', false)). +answer('urn:example:complies'('urn:example:carol2791', false)). +answer('urn:example:complies'('urn:example:carol2792', false)). +answer('urn:example:complies'('urn:example:carol2793', false)). +answer('urn:example:complies'('urn:example:carol2794', false)). +answer('urn:example:complies'('urn:example:carol2795', false)). +answer('urn:example:complies'('urn:example:carol2796', false)). +answer('urn:example:complies'('urn:example:carol2797', false)). +answer('urn:example:complies'('urn:example:carol2798', false)). +answer('urn:example:complies'('urn:example:carol2799', false)). +answer('urn:example:complies'('urn:example:carol2800', false)). +answer('urn:example:complies'('urn:example:carol2801', false)). +answer('urn:example:complies'('urn:example:carol2802', false)). +answer('urn:example:complies'('urn:example:carol2803', false)). +answer('urn:example:complies'('urn:example:carol2804', false)). +answer('urn:example:complies'('urn:example:carol2805', false)). +answer('urn:example:complies'('urn:example:carol2806', false)). +answer('urn:example:complies'('urn:example:carol2807', false)). +answer('urn:example:complies'('urn:example:carol2808', false)). +answer('urn:example:complies'('urn:example:carol2809', false)). +answer('urn:example:complies'('urn:example:carol2810', false)). +answer('urn:example:complies'('urn:example:carol2811', false)). +answer('urn:example:complies'('urn:example:carol2812', false)). +answer('urn:example:complies'('urn:example:carol2813', false)). +answer('urn:example:complies'('urn:example:carol2814', false)). +answer('urn:example:complies'('urn:example:carol2815', false)). +answer('urn:example:complies'('urn:example:carol2816', false)). +answer('urn:example:complies'('urn:example:carol2817', false)). +answer('urn:example:complies'('urn:example:carol2818', false)). +answer('urn:example:complies'('urn:example:carol2819', false)). +answer('urn:example:complies'('urn:example:carol2820', false)). +answer('urn:example:complies'('urn:example:carol2821', false)). +answer('urn:example:complies'('urn:example:carol2822', false)). +answer('urn:example:complies'('urn:example:carol2823', false)). +answer('urn:example:complies'('urn:example:carol2824', false)). +answer('urn:example:complies'('urn:example:carol2825', false)). +answer('urn:example:complies'('urn:example:carol2826', false)). +answer('urn:example:complies'('urn:example:carol2827', false)). +answer('urn:example:complies'('urn:example:carol2828', false)). +answer('urn:example:complies'('urn:example:carol2829', false)). +answer('urn:example:complies'('urn:example:carol2830', false)). +answer('urn:example:complies'('urn:example:carol2831', false)). +answer('urn:example:complies'('urn:example:carol2832', false)). +answer('urn:example:complies'('urn:example:carol2833', false)). +answer('urn:example:complies'('urn:example:carol2834', false)). +answer('urn:example:complies'('urn:example:carol2835', false)). +answer('urn:example:complies'('urn:example:carol2836', false)). +answer('urn:example:complies'('urn:example:carol2837', false)). +answer('urn:example:complies'('urn:example:carol2838', false)). +answer('urn:example:complies'('urn:example:carol2839', false)). +answer('urn:example:complies'('urn:example:carol2840', false)). +answer('urn:example:complies'('urn:example:carol2841', false)). +answer('urn:example:complies'('urn:example:carol2842', false)). +answer('urn:example:complies'('urn:example:carol2843', false)). +answer('urn:example:complies'('urn:example:carol2844', false)). +answer('urn:example:complies'('urn:example:carol2845', false)). +answer('urn:example:complies'('urn:example:carol2846', false)). +answer('urn:example:complies'('urn:example:carol2847', false)). +answer('urn:example:complies'('urn:example:carol2848', false)). +answer('urn:example:complies'('urn:example:carol2849', false)). +answer('urn:example:complies'('urn:example:carol2850', false)). +answer('urn:example:complies'('urn:example:carol2851', false)). +answer('urn:example:complies'('urn:example:carol2852', false)). +answer('urn:example:complies'('urn:example:carol2853', false)). +answer('urn:example:complies'('urn:example:carol2854', false)). +answer('urn:example:complies'('urn:example:carol2855', false)). +answer('urn:example:complies'('urn:example:carol2856', false)). +answer('urn:example:complies'('urn:example:carol2857', false)). +answer('urn:example:complies'('urn:example:carol2858', false)). +answer('urn:example:complies'('urn:example:carol2859', false)). +answer('urn:example:complies'('urn:example:carol2860', false)). +answer('urn:example:complies'('urn:example:carol2861', false)). +answer('urn:example:complies'('urn:example:carol2862', false)). +answer('urn:example:complies'('urn:example:carol2863', false)). +answer('urn:example:complies'('urn:example:carol2864', false)). +answer('urn:example:complies'('urn:example:carol2865', false)). +answer('urn:example:complies'('urn:example:carol2866', false)). +answer('urn:example:complies'('urn:example:carol2867', false)). +answer('urn:example:complies'('urn:example:carol2868', false)). +answer('urn:example:complies'('urn:example:carol2869', false)). +answer('urn:example:complies'('urn:example:carol2870', false)). +answer('urn:example:complies'('urn:example:carol2871', false)). +answer('urn:example:complies'('urn:example:carol2872', false)). +answer('urn:example:complies'('urn:example:carol2873', false)). +answer('urn:example:complies'('urn:example:carol2874', false)). +answer('urn:example:complies'('urn:example:carol2875', false)). +answer('urn:example:complies'('urn:example:carol2876', false)). +answer('urn:example:complies'('urn:example:carol2877', false)). +answer('urn:example:complies'('urn:example:carol2878', false)). +answer('urn:example:complies'('urn:example:carol2879', false)). +answer('urn:example:complies'('urn:example:carol2880', false)). +answer('urn:example:complies'('urn:example:carol2881', false)). +answer('urn:example:complies'('urn:example:carol2882', false)). +answer('urn:example:complies'('urn:example:carol2883', false)). +answer('urn:example:complies'('urn:example:carol2884', false)). +answer('urn:example:complies'('urn:example:carol2885', false)). +answer('urn:example:complies'('urn:example:carol2886', false)). +answer('urn:example:complies'('urn:example:carol2887', false)). +answer('urn:example:complies'('urn:example:carol2888', false)). +answer('urn:example:complies'('urn:example:carol2889', false)). +answer('urn:example:complies'('urn:example:carol2890', false)). +answer('urn:example:complies'('urn:example:carol2891', false)). +answer('urn:example:complies'('urn:example:carol2892', false)). +answer('urn:example:complies'('urn:example:carol2893', false)). +answer('urn:example:complies'('urn:example:carol2894', false)). +answer('urn:example:complies'('urn:example:carol2895', false)). +answer('urn:example:complies'('urn:example:carol2896', false)). +answer('urn:example:complies'('urn:example:carol2897', false)). +answer('urn:example:complies'('urn:example:carol2898', false)). +answer('urn:example:complies'('urn:example:carol2899', false)). +answer('urn:example:complies'('urn:example:carol2900', false)). +answer('urn:example:complies'('urn:example:carol2901', false)). +answer('urn:example:complies'('urn:example:carol2902', false)). +answer('urn:example:complies'('urn:example:carol2903', false)). +answer('urn:example:complies'('urn:example:carol2904', false)). +answer('urn:example:complies'('urn:example:carol2905', false)). +answer('urn:example:complies'('urn:example:carol2906', false)). +answer('urn:example:complies'('urn:example:carol2907', false)). +answer('urn:example:complies'('urn:example:carol2908', false)). +answer('urn:example:complies'('urn:example:carol2909', false)). +answer('urn:example:complies'('urn:example:carol2910', false)). +answer('urn:example:complies'('urn:example:carol2911', false)). +answer('urn:example:complies'('urn:example:carol2912', false)). +answer('urn:example:complies'('urn:example:carol2913', false)). +answer('urn:example:complies'('urn:example:carol2914', false)). +answer('urn:example:complies'('urn:example:carol2915', false)). +answer('urn:example:complies'('urn:example:carol2916', false)). +answer('urn:example:complies'('urn:example:carol2917', false)). +answer('urn:example:complies'('urn:example:carol2918', false)). +answer('urn:example:complies'('urn:example:carol2919', false)). +answer('urn:example:complies'('urn:example:carol2920', false)). +answer('urn:example:complies'('urn:example:carol2921', false)). +answer('urn:example:complies'('urn:example:carol2922', false)). +answer('urn:example:complies'('urn:example:carol2923', false)). +answer('urn:example:complies'('urn:example:carol2924', false)). +answer('urn:example:complies'('urn:example:carol2925', false)). +answer('urn:example:complies'('urn:example:carol2926', false)). +answer('urn:example:complies'('urn:example:carol2927', false)). +answer('urn:example:complies'('urn:example:carol2928', false)). +answer('urn:example:complies'('urn:example:carol2929', false)). +answer('urn:example:complies'('urn:example:carol2930', false)). +answer('urn:example:complies'('urn:example:carol2931', false)). +answer('urn:example:complies'('urn:example:carol2932', false)). +answer('urn:example:complies'('urn:example:carol2933', false)). +answer('urn:example:complies'('urn:example:carol2934', false)). +answer('urn:example:complies'('urn:example:carol2935', false)). +answer('urn:example:complies'('urn:example:carol2936', false)). +answer('urn:example:complies'('urn:example:carol2937', false)). +answer('urn:example:complies'('urn:example:carol2938', false)). +answer('urn:example:complies'('urn:example:carol2939', false)). +answer('urn:example:complies'('urn:example:carol2940', false)). +answer('urn:example:complies'('urn:example:carol2941', false)). +answer('urn:example:complies'('urn:example:carol2942', false)). +answer('urn:example:complies'('urn:example:carol2943', false)). +answer('urn:example:complies'('urn:example:carol2944', false)). +answer('urn:example:complies'('urn:example:carol2945', false)). +answer('urn:example:complies'('urn:example:carol2946', false)). +answer('urn:example:complies'('urn:example:carol2947', false)). +answer('urn:example:complies'('urn:example:carol2948', false)). +answer('urn:example:complies'('urn:example:carol2949', false)). +answer('urn:example:complies'('urn:example:carol2950', false)). +answer('urn:example:complies'('urn:example:carol2951', false)). +answer('urn:example:complies'('urn:example:carol2952', false)). +answer('urn:example:complies'('urn:example:carol2953', false)). +answer('urn:example:complies'('urn:example:carol2954', false)). +answer('urn:example:complies'('urn:example:carol2955', false)). +answer('urn:example:complies'('urn:example:carol2956', false)). +answer('urn:example:complies'('urn:example:carol2957', false)). +answer('urn:example:complies'('urn:example:carol2958', false)). +answer('urn:example:complies'('urn:example:carol2959', false)). +answer('urn:example:complies'('urn:example:carol2960', false)). +answer('urn:example:complies'('urn:example:carol2961', false)). +answer('urn:example:complies'('urn:example:carol2962', false)). +answer('urn:example:complies'('urn:example:carol2963', false)). +answer('urn:example:complies'('urn:example:carol2964', false)). +answer('urn:example:complies'('urn:example:carol2965', false)). +answer('urn:example:complies'('urn:example:carol2966', false)). +answer('urn:example:complies'('urn:example:carol2967', false)). +answer('urn:example:complies'('urn:example:carol2968', false)). +answer('urn:example:complies'('urn:example:carol2969', false)). +answer('urn:example:complies'('urn:example:carol2970', false)). +answer('urn:example:complies'('urn:example:carol2971', false)). +answer('urn:example:complies'('urn:example:carol2972', false)). +answer('urn:example:complies'('urn:example:carol2973', false)). +answer('urn:example:complies'('urn:example:carol2974', false)). +answer('urn:example:complies'('urn:example:carol2975', false)). +answer('urn:example:complies'('urn:example:carol2976', false)). +answer('urn:example:complies'('urn:example:carol2977', false)). +answer('urn:example:complies'('urn:example:carol2978', false)). +answer('urn:example:complies'('urn:example:carol2979', false)). +answer('urn:example:complies'('urn:example:carol2980', false)). +answer('urn:example:complies'('urn:example:carol2981', false)). +answer('urn:example:complies'('urn:example:carol2982', false)). +answer('urn:example:complies'('urn:example:carol2983', false)). +answer('urn:example:complies'('urn:example:carol2984', false)). +answer('urn:example:complies'('urn:example:carol2985', false)). +answer('urn:example:complies'('urn:example:carol2986', false)). +answer('urn:example:complies'('urn:example:carol2987', false)). +answer('urn:example:complies'('urn:example:carol2988', false)). +answer('urn:example:complies'('urn:example:carol2989', false)). +answer('urn:example:complies'('urn:example:carol2990', false)). +answer('urn:example:complies'('urn:example:carol2991', false)). +answer('urn:example:complies'('urn:example:carol2992', false)). +answer('urn:example:complies'('urn:example:carol2993', false)). +answer('urn:example:complies'('urn:example:carol2994', false)). +answer('urn:example:complies'('urn:example:carol2995', false)). +answer('urn:example:complies'('urn:example:carol2996', false)). +answer('urn:example:complies'('urn:example:carol2997', false)). +answer('urn:example:complies'('urn:example:carol2998', false)). +answer('urn:example:complies'('urn:example:carol2999', false)). +answer('urn:example:complies'('urn:example:carol3000', false)). +answer('urn:example:complies'('urn:example:carol3001', false)). +answer('urn:example:complies'('urn:example:carol3002', false)). +answer('urn:example:complies'('urn:example:carol3003', false)). +answer('urn:example:complies'('urn:example:carol3004', false)). +answer('urn:example:complies'('urn:example:carol3005', false)). +answer('urn:example:complies'('urn:example:carol3006', false)). +answer('urn:example:complies'('urn:example:carol3007', false)). +answer('urn:example:complies'('urn:example:carol3008', false)). +answer('urn:example:complies'('urn:example:carol3009', false)). +answer('urn:example:complies'('urn:example:carol3010', false)). +answer('urn:example:complies'('urn:example:carol3011', false)). +answer('urn:example:complies'('urn:example:carol3012', false)). +answer('urn:example:complies'('urn:example:carol3013', false)). +answer('urn:example:complies'('urn:example:carol3014', false)). +answer('urn:example:complies'('urn:example:carol3015', false)). +answer('urn:example:complies'('urn:example:carol3016', false)). +answer('urn:example:complies'('urn:example:carol3017', false)). +answer('urn:example:complies'('urn:example:carol3018', false)). +answer('urn:example:complies'('urn:example:carol3019', false)). +answer('urn:example:complies'('urn:example:carol3020', false)). +answer('urn:example:complies'('urn:example:carol3021', false)). +answer('urn:example:complies'('urn:example:carol3022', false)). +answer('urn:example:complies'('urn:example:carol3023', false)). +answer('urn:example:complies'('urn:example:carol3024', false)). +answer('urn:example:complies'('urn:example:carol3025', false)). +answer('urn:example:complies'('urn:example:carol3026', false)). +answer('urn:example:complies'('urn:example:carol3027', false)). +answer('urn:example:complies'('urn:example:carol3028', false)). +answer('urn:example:complies'('urn:example:carol3029', false)). +answer('urn:example:complies'('urn:example:carol3030', false)). +answer('urn:example:complies'('urn:example:carol3031', false)). +answer('urn:example:complies'('urn:example:carol3032', false)). +answer('urn:example:complies'('urn:example:carol3033', false)). +answer('urn:example:complies'('urn:example:carol3034', false)). +answer('urn:example:complies'('urn:example:carol3035', false)). +answer('urn:example:complies'('urn:example:carol3036', false)). +answer('urn:example:complies'('urn:example:carol3037', false)). +answer('urn:example:complies'('urn:example:carol3038', false)). +answer('urn:example:complies'('urn:example:carol3039', false)). +answer('urn:example:complies'('urn:example:carol3040', false)). +answer('urn:example:complies'('urn:example:carol3041', false)). +answer('urn:example:complies'('urn:example:carol3042', false)). +answer('urn:example:complies'('urn:example:carol3043', false)). +answer('urn:example:complies'('urn:example:carol3044', false)). +answer('urn:example:complies'('urn:example:carol3045', false)). +answer('urn:example:complies'('urn:example:carol3046', false)). +answer('urn:example:complies'('urn:example:carol3047', false)). +answer('urn:example:complies'('urn:example:carol3048', false)). +answer('urn:example:complies'('urn:example:carol3049', false)). +answer('urn:example:complies'('urn:example:carol3050', false)). +answer('urn:example:complies'('urn:example:carol3051', false)). +answer('urn:example:complies'('urn:example:carol3052', false)). +answer('urn:example:complies'('urn:example:carol3053', false)). +answer('urn:example:complies'('urn:example:carol3054', false)). +answer('urn:example:complies'('urn:example:carol3055', false)). +answer('urn:example:complies'('urn:example:carol3056', false)). +answer('urn:example:complies'('urn:example:carol3057', false)). +answer('urn:example:complies'('urn:example:carol3058', false)). +answer('urn:example:complies'('urn:example:carol3059', false)). +answer('urn:example:complies'('urn:example:carol3060', false)). +answer('urn:example:complies'('urn:example:carol3061', false)). +answer('urn:example:complies'('urn:example:carol3062', false)). +answer('urn:example:complies'('urn:example:carol3063', false)). +answer('urn:example:complies'('urn:example:carol3064', false)). +answer('urn:example:complies'('urn:example:carol3065', false)). +answer('urn:example:complies'('urn:example:carol3066', false)). +answer('urn:example:complies'('urn:example:carol3067', false)). +answer('urn:example:complies'('urn:example:carol3068', false)). +answer('urn:example:complies'('urn:example:carol3069', false)). +answer('urn:example:complies'('urn:example:carol3070', false)). +answer('urn:example:complies'('urn:example:carol3071', false)). +answer('urn:example:complies'('urn:example:carol3072', false)). +answer('urn:example:complies'('urn:example:carol3073', false)). +answer('urn:example:complies'('urn:example:carol3074', false)). +answer('urn:example:complies'('urn:example:carol3075', false)). +answer('urn:example:complies'('urn:example:carol3076', false)). +answer('urn:example:complies'('urn:example:carol3077', false)). +answer('urn:example:complies'('urn:example:carol3078', false)). +answer('urn:example:complies'('urn:example:carol3079', false)). +answer('urn:example:complies'('urn:example:carol3080', false)). +answer('urn:example:complies'('urn:example:carol3081', false)). +answer('urn:example:complies'('urn:example:carol3082', false)). +answer('urn:example:complies'('urn:example:carol3083', false)). +answer('urn:example:complies'('urn:example:carol3084', false)). +answer('urn:example:complies'('urn:example:carol3085', false)). +answer('urn:example:complies'('urn:example:carol3086', false)). +answer('urn:example:complies'('urn:example:carol3087', false)). +answer('urn:example:complies'('urn:example:carol3088', false)). +answer('urn:example:complies'('urn:example:carol3089', false)). +answer('urn:example:complies'('urn:example:carol3090', false)). +answer('urn:example:complies'('urn:example:carol3091', false)). +answer('urn:example:complies'('urn:example:carol3092', false)). +answer('urn:example:complies'('urn:example:carol3093', false)). +answer('urn:example:complies'('urn:example:carol3094', false)). +answer('urn:example:complies'('urn:example:carol3095', false)). +answer('urn:example:complies'('urn:example:carol3096', false)). +answer('urn:example:complies'('urn:example:carol3097', false)). +answer('urn:example:complies'('urn:example:carol3098', false)). +answer('urn:example:complies'('urn:example:carol3099', false)). +answer('urn:example:complies'('urn:example:carol3100', false)). +answer('urn:example:complies'('urn:example:carol3101', false)). +answer('urn:example:complies'('urn:example:carol3102', false)). +answer('urn:example:complies'('urn:example:carol3103', false)). +answer('urn:example:complies'('urn:example:carol3104', false)). +answer('urn:example:complies'('urn:example:carol3105', false)). +answer('urn:example:complies'('urn:example:carol3106', false)). +answer('urn:example:complies'('urn:example:carol3107', false)). +answer('urn:example:complies'('urn:example:carol3108', false)). +answer('urn:example:complies'('urn:example:carol3109', false)). +answer('urn:example:complies'('urn:example:carol3110', false)). +answer('urn:example:complies'('urn:example:carol3111', false)). +answer('urn:example:complies'('urn:example:carol3112', false)). +answer('urn:example:complies'('urn:example:carol3113', false)). +answer('urn:example:complies'('urn:example:carol3114', false)). +answer('urn:example:complies'('urn:example:carol3115', false)). +answer('urn:example:complies'('urn:example:carol3116', false)). +answer('urn:example:complies'('urn:example:carol3117', false)). +answer('urn:example:complies'('urn:example:carol3118', false)). +answer('urn:example:complies'('urn:example:carol3119', false)). +answer('urn:example:complies'('urn:example:carol3120', false)). +answer('urn:example:complies'('urn:example:carol3121', false)). +answer('urn:example:complies'('urn:example:carol3122', false)). +answer('urn:example:complies'('urn:example:carol3123', false)). +answer('urn:example:complies'('urn:example:carol3124', false)). +answer('urn:example:complies'('urn:example:carol3125', false)). +answer('urn:example:complies'('urn:example:carol3126', false)). +answer('urn:example:complies'('urn:example:carol3127', false)). +answer('urn:example:complies'('urn:example:carol3128', false)). +answer('urn:example:complies'('urn:example:carol3129', false)). +answer('urn:example:complies'('urn:example:carol3130', false)). +answer('urn:example:complies'('urn:example:carol3131', false)). +answer('urn:example:complies'('urn:example:carol3132', false)). +answer('urn:example:complies'('urn:example:carol3133', false)). +answer('urn:example:complies'('urn:example:carol3134', false)). +answer('urn:example:complies'('urn:example:carol3135', false)). +answer('urn:example:complies'('urn:example:carol3136', false)). +answer('urn:example:complies'('urn:example:carol3137', false)). +answer('urn:example:complies'('urn:example:carol3138', false)). +answer('urn:example:complies'('urn:example:carol3139', false)). +answer('urn:example:complies'('urn:example:carol3140', false)). +answer('urn:example:complies'('urn:example:carol3141', false)). +answer('urn:example:complies'('urn:example:carol3142', false)). +answer('urn:example:complies'('urn:example:carol3143', false)). +answer('urn:example:complies'('urn:example:carol3144', false)). +answer('urn:example:complies'('urn:example:carol3145', false)). +answer('urn:example:complies'('urn:example:carol3146', false)). +answer('urn:example:complies'('urn:example:carol3147', false)). +answer('urn:example:complies'('urn:example:carol3148', false)). +answer('urn:example:complies'('urn:example:carol3149', false)). +answer('urn:example:complies'('urn:example:carol3150', false)). +answer('urn:example:complies'('urn:example:carol3151', false)). +answer('urn:example:complies'('urn:example:carol3152', false)). +answer('urn:example:complies'('urn:example:carol3153', false)). +answer('urn:example:complies'('urn:example:carol3154', false)). +answer('urn:example:complies'('urn:example:carol3155', false)). +answer('urn:example:complies'('urn:example:carol3156', false)). +answer('urn:example:complies'('urn:example:carol3157', false)). +answer('urn:example:complies'('urn:example:carol3158', false)). +answer('urn:example:complies'('urn:example:carol3159', false)). +answer('urn:example:complies'('urn:example:carol3160', false)). +answer('urn:example:complies'('urn:example:carol3161', false)). +answer('urn:example:complies'('urn:example:carol3162', false)). +answer('urn:example:complies'('urn:example:carol3163', false)). +answer('urn:example:complies'('urn:example:carol3164', false)). +answer('urn:example:complies'('urn:example:carol3165', false)). +answer('urn:example:complies'('urn:example:carol3166', false)). +answer('urn:example:complies'('urn:example:carol3167', false)). +answer('urn:example:complies'('urn:example:carol3168', false)). +answer('urn:example:complies'('urn:example:carol3169', false)). +answer('urn:example:complies'('urn:example:carol3170', false)). +answer('urn:example:complies'('urn:example:carol3171', false)). +answer('urn:example:complies'('urn:example:carol3172', false)). +answer('urn:example:complies'('urn:example:carol3173', false)). +answer('urn:example:complies'('urn:example:carol3174', false)). +answer('urn:example:complies'('urn:example:carol3175', false)). +answer('urn:example:complies'('urn:example:carol3176', false)). +answer('urn:example:complies'('urn:example:carol3177', false)). +answer('urn:example:complies'('urn:example:carol3178', false)). +answer('urn:example:complies'('urn:example:carol3179', false)). +answer('urn:example:complies'('urn:example:carol3180', false)). +answer('urn:example:complies'('urn:example:carol3181', false)). +answer('urn:example:complies'('urn:example:carol3182', false)). +answer('urn:example:complies'('urn:example:carol3183', false)). +answer('urn:example:complies'('urn:example:carol3184', false)). +answer('urn:example:complies'('urn:example:carol3185', false)). +answer('urn:example:complies'('urn:example:carol3186', false)). +answer('urn:example:complies'('urn:example:carol3187', false)). +answer('urn:example:complies'('urn:example:carol3188', false)). +answer('urn:example:complies'('urn:example:carol3189', false)). +answer('urn:example:complies'('urn:example:carol3190', false)). +answer('urn:example:complies'('urn:example:carol3191', false)). +answer('urn:example:complies'('urn:example:carol3192', false)). +answer('urn:example:complies'('urn:example:carol3193', false)). +answer('urn:example:complies'('urn:example:carol3194', false)). +answer('urn:example:complies'('urn:example:carol3195', false)). +answer('urn:example:complies'('urn:example:carol3196', false)). +answer('urn:example:complies'('urn:example:carol3197', false)). +answer('urn:example:complies'('urn:example:carol3198', false)). +answer('urn:example:complies'('urn:example:carol3199', false)). +answer('urn:example:complies'('urn:example:carol3200', false)). +answer('urn:example:complies'('urn:example:carol3201', false)). +answer('urn:example:complies'('urn:example:carol3202', false)). +answer('urn:example:complies'('urn:example:carol3203', false)). +answer('urn:example:complies'('urn:example:carol3204', false)). +answer('urn:example:complies'('urn:example:carol3205', false)). +answer('urn:example:complies'('urn:example:carol3206', false)). +answer('urn:example:complies'('urn:example:carol3207', false)). +answer('urn:example:complies'('urn:example:carol3208', false)). +answer('urn:example:complies'('urn:example:carol3209', false)). +answer('urn:example:complies'('urn:example:carol3210', false)). +answer('urn:example:complies'('urn:example:carol3211', false)). +answer('urn:example:complies'('urn:example:carol3212', false)). +answer('urn:example:complies'('urn:example:carol3213', false)). +answer('urn:example:complies'('urn:example:carol3214', false)). +answer('urn:example:complies'('urn:example:carol3215', false)). +answer('urn:example:complies'('urn:example:carol3216', false)). +answer('urn:example:complies'('urn:example:carol3217', false)). +answer('urn:example:complies'('urn:example:carol3218', false)). +answer('urn:example:complies'('urn:example:carol3219', false)). +answer('urn:example:complies'('urn:example:carol3220', false)). +answer('urn:example:complies'('urn:example:carol3221', false)). +answer('urn:example:complies'('urn:example:carol3222', false)). +answer('urn:example:complies'('urn:example:carol3223', false)). +answer('urn:example:complies'('urn:example:carol3224', false)). +answer('urn:example:complies'('urn:example:carol3225', false)). +answer('urn:example:complies'('urn:example:carol3226', false)). +answer('urn:example:complies'('urn:example:carol3227', false)). +answer('urn:example:complies'('urn:example:carol3228', false)). +answer('urn:example:complies'('urn:example:carol3229', false)). +answer('urn:example:complies'('urn:example:carol3230', false)). +answer('urn:example:complies'('urn:example:carol3231', false)). +answer('urn:example:complies'('urn:example:carol3232', false)). +answer('urn:example:complies'('urn:example:carol3233', false)). +answer('urn:example:complies'('urn:example:carol3234', false)). +answer('urn:example:complies'('urn:example:carol3235', false)). +answer('urn:example:complies'('urn:example:carol3236', false)). +answer('urn:example:complies'('urn:example:carol3237', false)). +answer('urn:example:complies'('urn:example:carol3238', false)). +answer('urn:example:complies'('urn:example:carol3239', false)). +answer('urn:example:complies'('urn:example:carol3240', false)). +answer('urn:example:complies'('urn:example:carol3241', false)). +answer('urn:example:complies'('urn:example:carol3242', false)). +answer('urn:example:complies'('urn:example:carol3243', false)). +answer('urn:example:complies'('urn:example:carol3244', false)). +answer('urn:example:complies'('urn:example:carol3245', false)). +answer('urn:example:complies'('urn:example:carol3246', false)). +answer('urn:example:complies'('urn:example:carol3247', false)). +answer('urn:example:complies'('urn:example:carol3248', false)). +answer('urn:example:complies'('urn:example:carol3249', false)). +answer('urn:example:complies'('urn:example:carol3250', false)). +answer('urn:example:complies'('urn:example:carol3251', false)). +answer('urn:example:complies'('urn:example:carol3252', false)). +answer('urn:example:complies'('urn:example:carol3253', false)). +answer('urn:example:complies'('urn:example:carol3254', false)). +answer('urn:example:complies'('urn:example:carol3255', false)). +answer('urn:example:complies'('urn:example:carol3256', false)). +answer('urn:example:complies'('urn:example:carol3257', false)). +answer('urn:example:complies'('urn:example:carol3258', false)). +answer('urn:example:complies'('urn:example:carol3259', false)). +answer('urn:example:complies'('urn:example:carol3260', false)). +answer('urn:example:complies'('urn:example:carol3261', false)). +answer('urn:example:complies'('urn:example:carol3262', false)). +answer('urn:example:complies'('urn:example:carol3263', false)). +answer('urn:example:complies'('urn:example:carol3264', false)). +answer('urn:example:complies'('urn:example:carol3265', false)). +answer('urn:example:complies'('urn:example:carol3266', false)). +answer('urn:example:complies'('urn:example:carol3267', false)). +answer('urn:example:complies'('urn:example:carol3268', false)). +answer('urn:example:complies'('urn:example:carol3269', false)). +answer('urn:example:complies'('urn:example:carol3270', false)). +answer('urn:example:complies'('urn:example:carol3271', false)). +answer('urn:example:complies'('urn:example:carol3272', false)). +answer('urn:example:complies'('urn:example:carol3273', false)). +answer('urn:example:complies'('urn:example:carol3274', false)). +answer('urn:example:complies'('urn:example:carol3275', false)). +answer('urn:example:complies'('urn:example:carol3276', false)). +answer('urn:example:complies'('urn:example:carol3277', false)). +answer('urn:example:complies'('urn:example:carol3278', false)). +answer('urn:example:complies'('urn:example:carol3279', false)). +answer('urn:example:complies'('urn:example:carol3280', false)). +answer('urn:example:complies'('urn:example:carol3281', false)). +answer('urn:example:complies'('urn:example:carol3282', false)). +answer('urn:example:complies'('urn:example:carol3283', false)). +answer('urn:example:complies'('urn:example:carol3284', false)). +answer('urn:example:complies'('urn:example:carol3285', false)). +answer('urn:example:complies'('urn:example:carol3286', false)). +answer('urn:example:complies'('urn:example:carol3287', false)). +answer('urn:example:complies'('urn:example:carol3288', false)). +answer('urn:example:complies'('urn:example:carol3289', false)). +answer('urn:example:complies'('urn:example:carol3290', false)). +answer('urn:example:complies'('urn:example:carol3291', false)). +answer('urn:example:complies'('urn:example:carol3292', false)). +answer('urn:example:complies'('urn:example:carol3293', false)). +answer('urn:example:complies'('urn:example:carol3294', false)). +answer('urn:example:complies'('urn:example:carol3295', false)). +answer('urn:example:complies'('urn:example:carol3296', false)). +answer('urn:example:complies'('urn:example:carol3297', false)). +answer('urn:example:complies'('urn:example:carol3298', false)). +answer('urn:example:complies'('urn:example:carol3299', false)). +answer('urn:example:complies'('urn:example:carol3300', false)). +answer('urn:example:complies'('urn:example:carol3301', false)). +answer('urn:example:complies'('urn:example:carol3302', false)). +answer('urn:example:complies'('urn:example:carol3303', false)). +answer('urn:example:complies'('urn:example:carol3304', false)). +answer('urn:example:complies'('urn:example:carol3305', false)). +answer('urn:example:complies'('urn:example:carol3306', false)). +answer('urn:example:complies'('urn:example:carol3307', false)). +answer('urn:example:complies'('urn:example:carol3308', false)). +answer('urn:example:complies'('urn:example:carol3309', false)). +answer('urn:example:complies'('urn:example:carol3310', false)). +answer('urn:example:complies'('urn:example:carol3311', false)). +answer('urn:example:complies'('urn:example:carol3312', false)). +answer('urn:example:complies'('urn:example:carol3313', false)). +answer('urn:example:complies'('urn:example:carol3314', false)). +answer('urn:example:complies'('urn:example:carol3315', false)). +answer('urn:example:complies'('urn:example:carol3316', false)). +answer('urn:example:complies'('urn:example:carol3317', false)). +answer('urn:example:complies'('urn:example:carol3318', false)). +answer('urn:example:complies'('urn:example:carol3319', false)). +answer('urn:example:complies'('urn:example:carol3320', false)). +answer('urn:example:complies'('urn:example:carol3321', false)). +answer('urn:example:complies'('urn:example:carol3322', false)). +answer('urn:example:complies'('urn:example:carol3323', false)). +answer('urn:example:complies'('urn:example:carol3324', false)). +answer('urn:example:complies'('urn:example:carol3325', false)). +answer('urn:example:complies'('urn:example:carol3326', false)). +answer('urn:example:complies'('urn:example:carol3327', false)). +answer('urn:example:complies'('urn:example:carol3328', false)). +answer('urn:example:complies'('urn:example:carol3329', false)). +answer('urn:example:complies'('urn:example:carol3330', false)). +answer('urn:example:complies'('urn:example:carol3331', false)). +answer('urn:example:complies'('urn:example:carol3332', false)). +answer('urn:example:complies'('urn:example:carol3333', false)). +answer('urn:example:complies'('urn:example:carol3334', false)). +answer('urn:example:complies'('urn:example:carol3335', false)). +answer('urn:example:complies'('urn:example:carol3336', false)). +answer('urn:example:complies'('urn:example:carol3337', false)). +answer('urn:example:complies'('urn:example:carol3338', false)). +answer('urn:example:complies'('urn:example:carol3339', false)). +answer('urn:example:complies'('urn:example:carol3340', false)). +answer('urn:example:complies'('urn:example:carol3341', false)). +answer('urn:example:complies'('urn:example:carol3342', false)). +answer('urn:example:complies'('urn:example:carol3343', false)). +answer('urn:example:complies'('urn:example:carol3344', false)). +answer('urn:example:complies'('urn:example:carol3345', false)). +answer('urn:example:complies'('urn:example:carol3346', false)). +answer('urn:example:complies'('urn:example:carol3347', false)). +answer('urn:example:complies'('urn:example:carol3348', false)). +answer('urn:example:complies'('urn:example:carol3349', false)). +answer('urn:example:complies'('urn:example:carol3350', false)). +answer('urn:example:complies'('urn:example:carol3351', false)). +answer('urn:example:complies'('urn:example:carol3352', false)). +answer('urn:example:complies'('urn:example:carol3353', false)). +answer('urn:example:complies'('urn:example:carol3354', false)). +answer('urn:example:complies'('urn:example:carol3355', false)). +answer('urn:example:complies'('urn:example:carol3356', false)). +answer('urn:example:complies'('urn:example:carol3357', false)). +answer('urn:example:complies'('urn:example:carol3358', false)). +answer('urn:example:complies'('urn:example:carol3359', false)). +answer('urn:example:complies'('urn:example:carol3360', false)). +answer('urn:example:complies'('urn:example:carol3361', false)). +answer('urn:example:complies'('urn:example:carol3362', false)). +answer('urn:example:complies'('urn:example:carol3363', false)). +answer('urn:example:complies'('urn:example:carol3364', false)). +answer('urn:example:complies'('urn:example:carol3365', false)). +answer('urn:example:complies'('urn:example:carol3366', false)). +answer('urn:example:complies'('urn:example:carol3367', false)). +answer('urn:example:complies'('urn:example:carol3368', false)). +answer('urn:example:complies'('urn:example:carol3369', false)). +answer('urn:example:complies'('urn:example:carol3370', false)). +answer('urn:example:complies'('urn:example:carol3371', false)). +answer('urn:example:complies'('urn:example:carol3372', false)). +answer('urn:example:complies'('urn:example:carol3373', false)). +answer('urn:example:complies'('urn:example:carol3374', false)). +answer('urn:example:complies'('urn:example:carol3375', false)). +answer('urn:example:complies'('urn:example:carol3376', false)). +answer('urn:example:complies'('urn:example:carol3377', false)). +answer('urn:example:complies'('urn:example:carol3378', false)). +answer('urn:example:complies'('urn:example:carol3379', false)). +answer('urn:example:complies'('urn:example:carol3380', false)). +answer('urn:example:complies'('urn:example:carol3381', false)). +answer('urn:example:complies'('urn:example:carol3382', false)). +answer('urn:example:complies'('urn:example:carol3383', false)). +answer('urn:example:complies'('urn:example:carol3384', false)). +answer('urn:example:complies'('urn:example:carol3385', false)). +answer('urn:example:complies'('urn:example:carol3386', false)). +answer('urn:example:complies'('urn:example:carol3387', false)). +answer('urn:example:complies'('urn:example:carol3388', false)). +answer('urn:example:complies'('urn:example:carol3389', false)). +answer('urn:example:complies'('urn:example:carol3390', false)). +answer('urn:example:complies'('urn:example:carol3391', false)). +answer('urn:example:complies'('urn:example:carol3392', false)). +answer('urn:example:complies'('urn:example:carol3393', false)). +answer('urn:example:complies'('urn:example:carol3394', false)). +answer('urn:example:complies'('urn:example:carol3395', false)). +answer('urn:example:complies'('urn:example:carol3396', false)). +answer('urn:example:complies'('urn:example:carol3397', false)). +answer('urn:example:complies'('urn:example:carol3398', false)). +answer('urn:example:complies'('urn:example:carol3399', false)). +answer('urn:example:complies'('urn:example:carol3400', false)). +answer('urn:example:complies'('urn:example:carol3401', false)). +answer('urn:example:complies'('urn:example:carol3402', false)). +answer('urn:example:complies'('urn:example:carol3403', false)). +answer('urn:example:complies'('urn:example:carol3404', false)). +answer('urn:example:complies'('urn:example:carol3405', false)). +answer('urn:example:complies'('urn:example:carol3406', false)). +answer('urn:example:complies'('urn:example:carol3407', false)). +answer('urn:example:complies'('urn:example:carol3408', false)). +answer('urn:example:complies'('urn:example:carol3409', false)). +answer('urn:example:complies'('urn:example:carol3410', false)). +answer('urn:example:complies'('urn:example:carol3411', false)). +answer('urn:example:complies'('urn:example:carol3412', false)). +answer('urn:example:complies'('urn:example:carol3413', false)). +answer('urn:example:complies'('urn:example:carol3414', false)). +answer('urn:example:complies'('urn:example:carol3415', false)). +answer('urn:example:complies'('urn:example:carol3416', false)). +answer('urn:example:complies'('urn:example:carol3417', false)). +answer('urn:example:complies'('urn:example:carol3418', false)). +answer('urn:example:complies'('urn:example:carol3419', false)). +answer('urn:example:complies'('urn:example:carol3420', false)). +answer('urn:example:complies'('urn:example:carol3421', false)). +answer('urn:example:complies'('urn:example:carol3422', false)). +answer('urn:example:complies'('urn:example:carol3423', false)). +answer('urn:example:complies'('urn:example:carol3424', false)). +answer('urn:example:complies'('urn:example:carol3425', false)). +answer('urn:example:complies'('urn:example:carol3426', false)). +answer('urn:example:complies'('urn:example:carol3427', false)). +answer('urn:example:complies'('urn:example:carol3428', false)). +answer('urn:example:complies'('urn:example:carol3429', false)). +answer('urn:example:complies'('urn:example:carol3430', false)). +answer('urn:example:complies'('urn:example:carol3431', false)). +answer('urn:example:complies'('urn:example:carol3432', false)). +answer('urn:example:complies'('urn:example:carol3433', false)). +answer('urn:example:complies'('urn:example:carol3434', false)). +answer('urn:example:complies'('urn:example:carol3435', false)). +answer('urn:example:complies'('urn:example:carol3436', false)). +answer('urn:example:complies'('urn:example:carol3437', false)). +answer('urn:example:complies'('urn:example:carol3438', false)). +answer('urn:example:complies'('urn:example:carol3439', false)). +answer('urn:example:complies'('urn:example:carol3440', false)). +answer('urn:example:complies'('urn:example:carol3441', false)). +answer('urn:example:complies'('urn:example:carol3442', false)). +answer('urn:example:complies'('urn:example:carol3443', false)). +answer('urn:example:complies'('urn:example:carol3444', false)). +answer('urn:example:complies'('urn:example:carol3445', false)). +answer('urn:example:complies'('urn:example:carol3446', false)). +answer('urn:example:complies'('urn:example:carol3447', false)). +answer('urn:example:complies'('urn:example:carol3448', false)). +answer('urn:example:complies'('urn:example:carol3449', false)). +answer('urn:example:complies'('urn:example:carol3450', false)). +answer('urn:example:complies'('urn:example:carol3451', false)). +answer('urn:example:complies'('urn:example:carol3452', false)). +answer('urn:example:complies'('urn:example:carol3453', false)). +answer('urn:example:complies'('urn:example:carol3454', false)). +answer('urn:example:complies'('urn:example:carol3455', false)). +answer('urn:example:complies'('urn:example:carol3456', false)). +answer('urn:example:complies'('urn:example:carol3457', false)). +answer('urn:example:complies'('urn:example:carol3458', false)). +answer('urn:example:complies'('urn:example:carol3459', false)). +answer('urn:example:complies'('urn:example:carol3460', false)). +answer('urn:example:complies'('urn:example:carol3461', false)). +answer('urn:example:complies'('urn:example:carol3462', false)). +answer('urn:example:complies'('urn:example:carol3463', false)). +answer('urn:example:complies'('urn:example:carol3464', false)). +answer('urn:example:complies'('urn:example:carol3465', false)). +answer('urn:example:complies'('urn:example:carol3466', false)). +answer('urn:example:complies'('urn:example:carol3467', false)). +answer('urn:example:complies'('urn:example:carol3468', false)). +answer('urn:example:complies'('urn:example:carol3469', false)). +answer('urn:example:complies'('urn:example:carol3470', false)). +answer('urn:example:complies'('urn:example:carol3471', false)). +answer('urn:example:complies'('urn:example:carol3472', false)). +answer('urn:example:complies'('urn:example:carol3473', false)). +answer('urn:example:complies'('urn:example:carol3474', false)). +answer('urn:example:complies'('urn:example:carol3475', false)). +answer('urn:example:complies'('urn:example:carol3476', false)). +answer('urn:example:complies'('urn:example:carol3477', false)). +answer('urn:example:complies'('urn:example:carol3478', false)). +answer('urn:example:complies'('urn:example:carol3479', false)). +answer('urn:example:complies'('urn:example:carol3480', false)). +answer('urn:example:complies'('urn:example:carol3481', false)). +answer('urn:example:complies'('urn:example:carol3482', false)). +answer('urn:example:complies'('urn:example:carol3483', false)). +answer('urn:example:complies'('urn:example:carol3484', false)). +answer('urn:example:complies'('urn:example:carol3485', false)). +answer('urn:example:complies'('urn:example:carol3486', false)). +answer('urn:example:complies'('urn:example:carol3487', false)). +answer('urn:example:complies'('urn:example:carol3488', false)). +answer('urn:example:complies'('urn:example:carol3489', false)). +answer('urn:example:complies'('urn:example:carol3490', false)). +answer('urn:example:complies'('urn:example:carol3491', false)). +answer('urn:example:complies'('urn:example:carol3492', false)). +answer('urn:example:complies'('urn:example:carol3493', false)). +answer('urn:example:complies'('urn:example:carol3494', false)). +answer('urn:example:complies'('urn:example:carol3495', false)). +answer('urn:example:complies'('urn:example:carol3496', false)). +answer('urn:example:complies'('urn:example:carol3497', false)). +answer('urn:example:complies'('urn:example:carol3498', false)). +answer('urn:example:complies'('urn:example:carol3499', false)). +answer('urn:example:complies'('urn:example:carol3500', false)). +answer('urn:example:complies'('urn:example:carol3501', false)). +answer('urn:example:complies'('urn:example:carol3502', false)). +answer('urn:example:complies'('urn:example:carol3503', false)). +answer('urn:example:complies'('urn:example:carol3504', false)). +answer('urn:example:complies'('urn:example:carol3505', false)). +answer('urn:example:complies'('urn:example:carol3506', false)). +answer('urn:example:complies'('urn:example:carol3507', false)). +answer('urn:example:complies'('urn:example:carol3508', false)). +answer('urn:example:complies'('urn:example:carol3509', false)). +answer('urn:example:complies'('urn:example:carol3510', false)). +answer('urn:example:complies'('urn:example:carol3511', false)). +answer('urn:example:complies'('urn:example:carol3512', false)). +answer('urn:example:complies'('urn:example:carol3513', false)). +answer('urn:example:complies'('urn:example:carol3514', false)). +answer('urn:example:complies'('urn:example:carol3515', false)). +answer('urn:example:complies'('urn:example:carol3516', false)). +answer('urn:example:complies'('urn:example:carol3517', false)). +answer('urn:example:complies'('urn:example:carol3518', false)). +answer('urn:example:complies'('urn:example:carol3519', false)). +answer('urn:example:complies'('urn:example:carol3520', false)). +answer('urn:example:complies'('urn:example:carol3521', false)). +answer('urn:example:complies'('urn:example:carol3522', false)). +answer('urn:example:complies'('urn:example:carol3523', false)). +answer('urn:example:complies'('urn:example:carol3524', false)). +answer('urn:example:complies'('urn:example:carol3525', false)). +answer('urn:example:complies'('urn:example:carol3526', false)). +answer('urn:example:complies'('urn:example:carol3527', false)). +answer('urn:example:complies'('urn:example:carol3528', false)). +answer('urn:example:complies'('urn:example:carol3529', false)). +answer('urn:example:complies'('urn:example:carol3530', false)). +answer('urn:example:complies'('urn:example:carol3531', false)). +answer('urn:example:complies'('urn:example:carol3532', false)). +answer('urn:example:complies'('urn:example:carol3533', false)). +answer('urn:example:complies'('urn:example:carol3534', false)). +answer('urn:example:complies'('urn:example:carol3535', false)). +answer('urn:example:complies'('urn:example:carol3536', false)). +answer('urn:example:complies'('urn:example:carol3537', false)). +answer('urn:example:complies'('urn:example:carol3538', false)). +answer('urn:example:complies'('urn:example:carol3539', false)). +answer('urn:example:complies'('urn:example:carol3540', false)). +answer('urn:example:complies'('urn:example:carol3541', false)). +answer('urn:example:complies'('urn:example:carol3542', false)). +answer('urn:example:complies'('urn:example:carol3543', false)). +answer('urn:example:complies'('urn:example:carol3544', false)). +answer('urn:example:complies'('urn:example:carol3545', false)). +answer('urn:example:complies'('urn:example:carol3546', false)). +answer('urn:example:complies'('urn:example:carol3547', false)). +answer('urn:example:complies'('urn:example:carol3548', false)). +answer('urn:example:complies'('urn:example:carol3549', false)). +answer('urn:example:complies'('urn:example:carol3550', false)). +answer('urn:example:complies'('urn:example:carol3551', false)). +answer('urn:example:complies'('urn:example:carol3552', false)). +answer('urn:example:complies'('urn:example:carol3553', false)). +answer('urn:example:complies'('urn:example:carol3554', false)). +answer('urn:example:complies'('urn:example:carol3555', false)). +answer('urn:example:complies'('urn:example:carol3556', false)). +answer('urn:example:complies'('urn:example:carol3557', false)). +answer('urn:example:complies'('urn:example:carol3558', false)). +answer('urn:example:complies'('urn:example:carol3559', false)). +answer('urn:example:complies'('urn:example:carol3560', false)). +answer('urn:example:complies'('urn:example:carol3561', false)). +answer('urn:example:complies'('urn:example:carol3562', false)). +answer('urn:example:complies'('urn:example:carol3563', false)). +answer('urn:example:complies'('urn:example:carol3564', false)). +answer('urn:example:complies'('urn:example:carol3565', false)). +answer('urn:example:complies'('urn:example:carol3566', false)). +answer('urn:example:complies'('urn:example:carol3567', false)). +answer('urn:example:complies'('urn:example:carol3568', false)). +answer('urn:example:complies'('urn:example:carol3569', false)). +answer('urn:example:complies'('urn:example:carol3570', false)). +answer('urn:example:complies'('urn:example:carol3571', false)). +answer('urn:example:complies'('urn:example:carol3572', false)). +answer('urn:example:complies'('urn:example:carol3573', false)). +answer('urn:example:complies'('urn:example:carol3574', false)). +answer('urn:example:complies'('urn:example:carol3575', false)). +answer('urn:example:complies'('urn:example:carol3576', false)). +answer('urn:example:complies'('urn:example:carol3577', false)). +answer('urn:example:complies'('urn:example:carol3578', false)). +answer('urn:example:complies'('urn:example:carol3579', false)). +answer('urn:example:complies'('urn:example:carol3580', false)). +answer('urn:example:complies'('urn:example:carol3581', false)). +answer('urn:example:complies'('urn:example:carol3582', false)). +answer('urn:example:complies'('urn:example:carol3583', false)). +answer('urn:example:complies'('urn:example:carol3584', false)). +answer('urn:example:complies'('urn:example:carol3585', false)). +answer('urn:example:complies'('urn:example:carol3586', false)). +answer('urn:example:complies'('urn:example:carol3587', false)). +answer('urn:example:complies'('urn:example:carol3588', false)). +answer('urn:example:complies'('urn:example:carol3589', false)). +answer('urn:example:complies'('urn:example:carol3590', false)). +answer('urn:example:complies'('urn:example:carol3591', false)). +answer('urn:example:complies'('urn:example:carol3592', false)). +answer('urn:example:complies'('urn:example:carol3593', false)). +answer('urn:example:complies'('urn:example:carol3594', false)). +answer('urn:example:complies'('urn:example:carol3595', false)). +answer('urn:example:complies'('urn:example:carol3596', false)). +answer('urn:example:complies'('urn:example:carol3597', false)). +answer('urn:example:complies'('urn:example:carol3598', false)). +answer('urn:example:complies'('urn:example:carol3599', false)). +answer('urn:example:complies'('urn:example:carol3600', false)). +answer('urn:example:complies'('urn:example:carol3601', false)). +answer('urn:example:complies'('urn:example:carol3602', false)). +answer('urn:example:complies'('urn:example:carol3603', false)). +answer('urn:example:complies'('urn:example:carol3604', false)). +answer('urn:example:complies'('urn:example:carol3605', false)). +answer('urn:example:complies'('urn:example:carol3606', false)). +answer('urn:example:complies'('urn:example:carol3607', false)). +answer('urn:example:complies'('urn:example:carol3608', false)). +answer('urn:example:complies'('urn:example:carol3609', false)). +answer('urn:example:complies'('urn:example:carol3610', false)). +answer('urn:example:complies'('urn:example:carol3611', false)). +answer('urn:example:complies'('urn:example:carol3612', false)). +answer('urn:example:complies'('urn:example:carol3613', false)). +answer('urn:example:complies'('urn:example:carol3614', false)). +answer('urn:example:complies'('urn:example:carol3615', false)). +answer('urn:example:complies'('urn:example:carol3616', false)). +answer('urn:example:complies'('urn:example:carol3617', false)). +answer('urn:example:complies'('urn:example:carol3618', false)). +answer('urn:example:complies'('urn:example:carol3619', false)). +answer('urn:example:complies'('urn:example:carol3620', false)). +answer('urn:example:complies'('urn:example:carol3621', false)). +answer('urn:example:complies'('urn:example:carol3622', false)). +answer('urn:example:complies'('urn:example:carol3623', false)). +answer('urn:example:complies'('urn:example:carol3624', false)). +answer('urn:example:complies'('urn:example:carol3625', false)). +answer('urn:example:complies'('urn:example:carol3626', false)). +answer('urn:example:complies'('urn:example:carol3627', false)). +answer('urn:example:complies'('urn:example:carol3628', false)). +answer('urn:example:complies'('urn:example:carol3629', false)). +answer('urn:example:complies'('urn:example:carol3630', false)). +answer('urn:example:complies'('urn:example:carol3631', false)). +answer('urn:example:complies'('urn:example:carol3632', false)). +answer('urn:example:complies'('urn:example:carol3633', false)). +answer('urn:example:complies'('urn:example:carol3634', false)). +answer('urn:example:complies'('urn:example:carol3635', false)). +answer('urn:example:complies'('urn:example:carol3636', false)). +answer('urn:example:complies'('urn:example:carol3637', false)). +answer('urn:example:complies'('urn:example:carol3638', false)). +answer('urn:example:complies'('urn:example:carol3639', false)). +answer('urn:example:complies'('urn:example:carol3640', false)). +answer('urn:example:complies'('urn:example:carol3641', false)). +answer('urn:example:complies'('urn:example:carol3642', false)). +answer('urn:example:complies'('urn:example:carol3643', false)). +answer('urn:example:complies'('urn:example:carol3644', false)). +answer('urn:example:complies'('urn:example:carol3645', false)). +answer('urn:example:complies'('urn:example:carol3646', false)). +answer('urn:example:complies'('urn:example:carol3647', false)). +answer('urn:example:complies'('urn:example:carol3648', false)). +answer('urn:example:complies'('urn:example:carol3649', false)). +answer('urn:example:complies'('urn:example:carol3650', false)). +answer('urn:example:complies'('urn:example:carol3651', false)). +answer('urn:example:complies'('urn:example:carol3652', false)). +answer('urn:example:complies'('urn:example:carol3653', false)). +answer('urn:example:complies'('urn:example:carol3654', false)). +answer('urn:example:complies'('urn:example:carol3655', false)). +answer('urn:example:complies'('urn:example:carol3656', false)). +answer('urn:example:complies'('urn:example:carol3657', false)). +answer('urn:example:complies'('urn:example:carol3658', false)). +answer('urn:example:complies'('urn:example:carol3659', false)). +answer('urn:example:complies'('urn:example:carol3660', false)). +answer('urn:example:complies'('urn:example:carol3661', false)). +answer('urn:example:complies'('urn:example:carol3662', false)). +answer('urn:example:complies'('urn:example:carol3663', false)). +answer('urn:example:complies'('urn:example:carol3664', false)). +answer('urn:example:complies'('urn:example:carol3665', false)). +answer('urn:example:complies'('urn:example:carol3666', false)). +answer('urn:example:complies'('urn:example:carol3667', false)). +answer('urn:example:complies'('urn:example:carol3668', false)). +answer('urn:example:complies'('urn:example:carol3669', false)). +answer('urn:example:complies'('urn:example:carol3670', false)). +answer('urn:example:complies'('urn:example:carol3671', false)). +answer('urn:example:complies'('urn:example:carol3672', false)). +answer('urn:example:complies'('urn:example:carol3673', false)). +answer('urn:example:complies'('urn:example:carol3674', false)). +answer('urn:example:complies'('urn:example:carol3675', false)). +answer('urn:example:complies'('urn:example:carol3676', false)). +answer('urn:example:complies'('urn:example:carol3677', false)). +answer('urn:example:complies'('urn:example:carol3678', false)). +answer('urn:example:complies'('urn:example:carol3679', false)). +answer('urn:example:complies'('urn:example:carol3680', false)). +answer('urn:example:complies'('urn:example:carol3681', false)). +answer('urn:example:complies'('urn:example:carol3682', false)). +answer('urn:example:complies'('urn:example:carol3683', false)). +answer('urn:example:complies'('urn:example:carol3684', false)). +answer('urn:example:complies'('urn:example:carol3685', false)). +answer('urn:example:complies'('urn:example:carol3686', false)). +answer('urn:example:complies'('urn:example:carol3687', false)). +answer('urn:example:complies'('urn:example:carol3688', false)). +answer('urn:example:complies'('urn:example:carol3689', false)). +answer('urn:example:complies'('urn:example:carol3690', false)). +answer('urn:example:complies'('urn:example:carol3691', false)). +answer('urn:example:complies'('urn:example:carol3692', false)). +answer('urn:example:complies'('urn:example:carol3693', false)). +answer('urn:example:complies'('urn:example:carol3694', false)). +answer('urn:example:complies'('urn:example:carol3695', false)). +answer('urn:example:complies'('urn:example:carol3696', false)). +answer('urn:example:complies'('urn:example:carol3697', false)). +answer('urn:example:complies'('urn:example:carol3698', false)). +answer('urn:example:complies'('urn:example:carol3699', false)). +answer('urn:example:complies'('urn:example:carol3700', false)). +answer('urn:example:complies'('urn:example:carol3701', false)). +answer('urn:example:complies'('urn:example:carol3702', false)). +answer('urn:example:complies'('urn:example:carol3703', false)). +answer('urn:example:complies'('urn:example:carol3704', false)). +answer('urn:example:complies'('urn:example:carol3705', false)). +answer('urn:example:complies'('urn:example:carol3706', false)). +answer('urn:example:complies'('urn:example:carol3707', false)). +answer('urn:example:complies'('urn:example:carol3708', false)). +answer('urn:example:complies'('urn:example:carol3709', false)). +answer('urn:example:complies'('urn:example:carol3710', false)). +answer('urn:example:complies'('urn:example:carol3711', false)). +answer('urn:example:complies'('urn:example:carol3712', false)). +answer('urn:example:complies'('urn:example:carol3713', false)). +answer('urn:example:complies'('urn:example:carol3714', false)). +answer('urn:example:complies'('urn:example:carol3715', false)). +answer('urn:example:complies'('urn:example:carol3716', false)). +answer('urn:example:complies'('urn:example:carol3717', false)). +answer('urn:example:complies'('urn:example:carol3718', false)). +answer('urn:example:complies'('urn:example:carol3719', false)). +answer('urn:example:complies'('urn:example:carol3720', false)). +answer('urn:example:complies'('urn:example:carol3721', false)). +answer('urn:example:complies'('urn:example:carol3722', false)). +answer('urn:example:complies'('urn:example:carol3723', false)). +answer('urn:example:complies'('urn:example:carol3724', false)). +answer('urn:example:complies'('urn:example:carol3725', false)). +answer('urn:example:complies'('urn:example:carol3726', false)). +answer('urn:example:complies'('urn:example:carol3727', false)). +answer('urn:example:complies'('urn:example:carol3728', false)). +answer('urn:example:complies'('urn:example:carol3729', false)). +answer('urn:example:complies'('urn:example:carol3730', false)). +answer('urn:example:complies'('urn:example:carol3731', false)). +answer('urn:example:complies'('urn:example:carol3732', false)). +answer('urn:example:complies'('urn:example:carol3733', false)). +answer('urn:example:complies'('urn:example:carol3734', false)). +answer('urn:example:complies'('urn:example:carol3735', false)). +answer('urn:example:complies'('urn:example:carol3736', false)). +answer('urn:example:complies'('urn:example:carol3737', false)). +answer('urn:example:complies'('urn:example:carol3738', false)). +answer('urn:example:complies'('urn:example:carol3739', false)). +answer('urn:example:complies'('urn:example:carol3740', false)). +answer('urn:example:complies'('urn:example:carol3741', false)). +answer('urn:example:complies'('urn:example:carol3742', false)). +answer('urn:example:complies'('urn:example:carol3743', false)). +answer('urn:example:complies'('urn:example:carol3744', false)). +answer('urn:example:complies'('urn:example:carol3745', false)). +answer('urn:example:complies'('urn:example:carol3746', false)). +answer('urn:example:complies'('urn:example:carol3747', false)). +answer('urn:example:complies'('urn:example:carol3748', false)). +answer('urn:example:complies'('urn:example:carol3749', false)). +answer('urn:example:complies'('urn:example:carol3750', false)). +answer('urn:example:complies'('urn:example:carol3751', false)). +answer('urn:example:complies'('urn:example:carol3752', false)). +answer('urn:example:complies'('urn:example:carol3753', false)). +answer('urn:example:complies'('urn:example:carol3754', false)). +answer('urn:example:complies'('urn:example:carol3755', false)). +answer('urn:example:complies'('urn:example:carol3756', false)). +answer('urn:example:complies'('urn:example:carol3757', false)). +answer('urn:example:complies'('urn:example:carol3758', false)). +answer('urn:example:complies'('urn:example:carol3759', false)). +answer('urn:example:complies'('urn:example:carol3760', false)). +answer('urn:example:complies'('urn:example:carol3761', false)). +answer('urn:example:complies'('urn:example:carol3762', false)). +answer('urn:example:complies'('urn:example:carol3763', false)). +answer('urn:example:complies'('urn:example:carol3764', false)). +answer('urn:example:complies'('urn:example:carol3765', false)). +answer('urn:example:complies'('urn:example:carol3766', false)). +answer('urn:example:complies'('urn:example:carol3767', false)). +answer('urn:example:complies'('urn:example:carol3768', false)). +answer('urn:example:complies'('urn:example:carol3769', false)). +answer('urn:example:complies'('urn:example:carol3770', false)). +answer('urn:example:complies'('urn:example:carol3771', false)). +answer('urn:example:complies'('urn:example:carol3772', false)). +answer('urn:example:complies'('urn:example:carol3773', false)). +answer('urn:example:complies'('urn:example:carol3774', false)). +answer('urn:example:complies'('urn:example:carol3775', false)). +answer('urn:example:complies'('urn:example:carol3776', false)). +answer('urn:example:complies'('urn:example:carol3777', false)). +answer('urn:example:complies'('urn:example:carol3778', false)). +answer('urn:example:complies'('urn:example:carol3779', false)). +answer('urn:example:complies'('urn:example:carol3780', false)). +answer('urn:example:complies'('urn:example:carol3781', false)). +answer('urn:example:complies'('urn:example:carol3782', false)). +answer('urn:example:complies'('urn:example:carol3783', false)). +answer('urn:example:complies'('urn:example:carol3784', false)). +answer('urn:example:complies'('urn:example:carol3785', false)). +answer('urn:example:complies'('urn:example:carol3786', false)). +answer('urn:example:complies'('urn:example:carol3787', false)). +answer('urn:example:complies'('urn:example:carol3788', false)). +answer('urn:example:complies'('urn:example:carol3789', false)). +answer('urn:example:complies'('urn:example:carol3790', false)). +answer('urn:example:complies'('urn:example:carol3791', false)). +answer('urn:example:complies'('urn:example:carol3792', false)). +answer('urn:example:complies'('urn:example:carol3793', false)). +answer('urn:example:complies'('urn:example:carol3794', false)). +answer('urn:example:complies'('urn:example:carol3795', false)). +answer('urn:example:complies'('urn:example:carol3796', false)). +answer('urn:example:complies'('urn:example:carol3797', false)). +answer('urn:example:complies'('urn:example:carol3798', false)). +answer('urn:example:complies'('urn:example:carol3799', false)). +answer('urn:example:complies'('urn:example:carol3800', false)). +answer('urn:example:complies'('urn:example:carol3801', false)). +answer('urn:example:complies'('urn:example:carol3802', false)). +answer('urn:example:complies'('urn:example:carol3803', false)). +answer('urn:example:complies'('urn:example:carol3804', false)). +answer('urn:example:complies'('urn:example:carol3805', false)). +answer('urn:example:complies'('urn:example:carol3806', false)). +answer('urn:example:complies'('urn:example:carol3807', false)). +answer('urn:example:complies'('urn:example:carol3808', false)). +answer('urn:example:complies'('urn:example:carol3809', false)). +answer('urn:example:complies'('urn:example:carol3810', false)). +answer('urn:example:complies'('urn:example:carol3811', false)). +answer('urn:example:complies'('urn:example:carol3812', false)). +answer('urn:example:complies'('urn:example:carol3813', false)). +answer('urn:example:complies'('urn:example:carol3814', false)). +answer('urn:example:complies'('urn:example:carol3815', false)). +answer('urn:example:complies'('urn:example:carol3816', false)). +answer('urn:example:complies'('urn:example:carol3817', false)). +answer('urn:example:complies'('urn:example:carol3818', false)). +answer('urn:example:complies'('urn:example:carol3819', false)). +answer('urn:example:complies'('urn:example:carol3820', false)). +answer('urn:example:complies'('urn:example:carol3821', false)). +answer('urn:example:complies'('urn:example:carol3822', false)). +answer('urn:example:complies'('urn:example:carol3823', false)). +answer('urn:example:complies'('urn:example:carol3824', false)). +answer('urn:example:complies'('urn:example:carol3825', false)). +answer('urn:example:complies'('urn:example:carol3826', false)). +answer('urn:example:complies'('urn:example:carol3827', false)). +answer('urn:example:complies'('urn:example:carol3828', false)). +answer('urn:example:complies'('urn:example:carol3829', false)). +answer('urn:example:complies'('urn:example:carol3830', false)). +answer('urn:example:complies'('urn:example:carol3831', false)). +answer('urn:example:complies'('urn:example:carol3832', false)). +answer('urn:example:complies'('urn:example:carol3833', false)). +answer('urn:example:complies'('urn:example:carol3834', false)). +answer('urn:example:complies'('urn:example:carol3835', false)). +answer('urn:example:complies'('urn:example:carol3836', false)). +answer('urn:example:complies'('urn:example:carol3837', false)). +answer('urn:example:complies'('urn:example:carol3838', false)). +answer('urn:example:complies'('urn:example:carol3839', false)). +answer('urn:example:complies'('urn:example:carol3840', false)). +answer('urn:example:complies'('urn:example:carol3841', false)). +answer('urn:example:complies'('urn:example:carol3842', false)). +answer('urn:example:complies'('urn:example:carol3843', false)). +answer('urn:example:complies'('urn:example:carol3844', false)). +answer('urn:example:complies'('urn:example:carol3845', false)). +answer('urn:example:complies'('urn:example:carol3846', false)). +answer('urn:example:complies'('urn:example:carol3847', false)). +answer('urn:example:complies'('urn:example:carol3848', false)). +answer('urn:example:complies'('urn:example:carol3849', false)). +answer('urn:example:complies'('urn:example:carol3850', false)). +answer('urn:example:complies'('urn:example:carol3851', false)). +answer('urn:example:complies'('urn:example:carol3852', false)). +answer('urn:example:complies'('urn:example:carol3853', false)). +answer('urn:example:complies'('urn:example:carol3854', false)). +answer('urn:example:complies'('urn:example:carol3855', false)). +answer('urn:example:complies'('urn:example:carol3856', false)). +answer('urn:example:complies'('urn:example:carol3857', false)). +answer('urn:example:complies'('urn:example:carol3858', false)). +answer('urn:example:complies'('urn:example:carol3859', false)). +answer('urn:example:complies'('urn:example:carol3860', false)). +answer('urn:example:complies'('urn:example:carol3861', false)). +answer('urn:example:complies'('urn:example:carol3862', false)). +answer('urn:example:complies'('urn:example:carol3863', false)). +answer('urn:example:complies'('urn:example:carol3864', false)). +answer('urn:example:complies'('urn:example:carol3865', false)). +answer('urn:example:complies'('urn:example:carol3866', false)). +answer('urn:example:complies'('urn:example:carol3867', false)). +answer('urn:example:complies'('urn:example:carol3868', false)). +answer('urn:example:complies'('urn:example:carol3869', false)). +answer('urn:example:complies'('urn:example:carol3870', false)). +answer('urn:example:complies'('urn:example:carol3871', false)). +answer('urn:example:complies'('urn:example:carol3872', false)). +answer('urn:example:complies'('urn:example:carol3873', false)). +answer('urn:example:complies'('urn:example:carol3874', false)). +answer('urn:example:complies'('urn:example:carol3875', false)). +answer('urn:example:complies'('urn:example:carol3876', false)). +answer('urn:example:complies'('urn:example:carol3877', false)). +answer('urn:example:complies'('urn:example:carol3878', false)). +answer('urn:example:complies'('urn:example:carol3879', false)). +answer('urn:example:complies'('urn:example:carol3880', false)). +answer('urn:example:complies'('urn:example:carol3881', false)). +answer('urn:example:complies'('urn:example:carol3882', false)). +answer('urn:example:complies'('urn:example:carol3883', false)). +answer('urn:example:complies'('urn:example:carol3884', false)). +answer('urn:example:complies'('urn:example:carol3885', false)). +answer('urn:example:complies'('urn:example:carol3886', false)). +answer('urn:example:complies'('urn:example:carol3887', false)). +answer('urn:example:complies'('urn:example:carol3888', false)). +answer('urn:example:complies'('urn:example:carol3889', false)). +answer('urn:example:complies'('urn:example:carol3890', false)). +answer('urn:example:complies'('urn:example:carol3891', false)). +answer('urn:example:complies'('urn:example:carol3892', false)). +answer('urn:example:complies'('urn:example:carol3893', false)). +answer('urn:example:complies'('urn:example:carol3894', false)). +answer('urn:example:complies'('urn:example:carol3895', false)). +answer('urn:example:complies'('urn:example:carol3896', false)). +answer('urn:example:complies'('urn:example:carol3897', false)). +answer('urn:example:complies'('urn:example:carol3898', false)). +answer('urn:example:complies'('urn:example:carol3899', false)). +answer('urn:example:complies'('urn:example:carol3900', false)). +answer('urn:example:complies'('urn:example:carol3901', false)). +answer('urn:example:complies'('urn:example:carol3902', false)). +answer('urn:example:complies'('urn:example:carol3903', false)). +answer('urn:example:complies'('urn:example:carol3904', false)). +answer('urn:example:complies'('urn:example:carol3905', false)). +answer('urn:example:complies'('urn:example:carol3906', false)). +answer('urn:example:complies'('urn:example:carol3907', false)). +answer('urn:example:complies'('urn:example:carol3908', false)). +answer('urn:example:complies'('urn:example:carol3909', false)). +answer('urn:example:complies'('urn:example:carol3910', false)). +answer('urn:example:complies'('urn:example:carol3911', false)). +answer('urn:example:complies'('urn:example:carol3912', false)). +answer('urn:example:complies'('urn:example:carol3913', false)). +answer('urn:example:complies'('urn:example:carol3914', false)). +answer('urn:example:complies'('urn:example:carol3915', false)). +answer('urn:example:complies'('urn:example:carol3916', false)). +answer('urn:example:complies'('urn:example:carol3917', false)). +answer('urn:example:complies'('urn:example:carol3918', false)). +answer('urn:example:complies'('urn:example:carol3919', false)). +answer('urn:example:complies'('urn:example:carol3920', false)). +answer('urn:example:complies'('urn:example:carol3921', false)). +answer('urn:example:complies'('urn:example:carol3922', false)). +answer('urn:example:complies'('urn:example:carol3923', false)). +answer('urn:example:complies'('urn:example:carol3924', false)). +answer('urn:example:complies'('urn:example:carol3925', false)). +answer('urn:example:complies'('urn:example:carol3926', false)). +answer('urn:example:complies'('urn:example:carol3927', false)). +answer('urn:example:complies'('urn:example:carol3928', false)). +answer('urn:example:complies'('urn:example:carol3929', false)). +answer('urn:example:complies'('urn:example:carol3930', false)). +answer('urn:example:complies'('urn:example:carol3931', false)). +answer('urn:example:complies'('urn:example:carol3932', false)). +answer('urn:example:complies'('urn:example:carol3933', false)). +answer('urn:example:complies'('urn:example:carol3934', false)). +answer('urn:example:complies'('urn:example:carol3935', false)). +answer('urn:example:complies'('urn:example:carol3936', false)). +answer('urn:example:complies'('urn:example:carol3937', false)). +answer('urn:example:complies'('urn:example:carol3938', false)). +answer('urn:example:complies'('urn:example:carol3939', false)). +answer('urn:example:complies'('urn:example:carol3940', false)). +answer('urn:example:complies'('urn:example:carol3941', false)). +answer('urn:example:complies'('urn:example:carol3942', false)). +answer('urn:example:complies'('urn:example:carol3943', false)). +answer('urn:example:complies'('urn:example:carol3944', false)). +answer('urn:example:complies'('urn:example:carol3945', false)). +answer('urn:example:complies'('urn:example:carol3946', false)). +answer('urn:example:complies'('urn:example:carol3947', false)). +answer('urn:example:complies'('urn:example:carol3948', false)). +answer('urn:example:complies'('urn:example:carol3949', false)). +answer('urn:example:complies'('urn:example:carol3950', false)). +answer('urn:example:complies'('urn:example:carol3951', false)). +answer('urn:example:complies'('urn:example:carol3952', false)). +answer('urn:example:complies'('urn:example:carol3953', false)). +answer('urn:example:complies'('urn:example:carol3954', false)). +answer('urn:example:complies'('urn:example:carol3955', false)). +answer('urn:example:complies'('urn:example:carol3956', false)). +answer('urn:example:complies'('urn:example:carol3957', false)). +answer('urn:example:complies'('urn:example:carol3958', false)). +answer('urn:example:complies'('urn:example:carol3959', false)). +answer('urn:example:complies'('urn:example:carol3960', false)). +answer('urn:example:complies'('urn:example:carol3961', false)). +answer('urn:example:complies'('urn:example:carol3962', false)). +answer('urn:example:complies'('urn:example:carol3963', false)). +answer('urn:example:complies'('urn:example:carol3964', false)). +answer('urn:example:complies'('urn:example:carol3965', false)). +answer('urn:example:complies'('urn:example:carol3966', false)). +answer('urn:example:complies'('urn:example:carol3967', false)). +answer('urn:example:complies'('urn:example:carol3968', false)). +answer('urn:example:complies'('urn:example:carol3969', false)). +answer('urn:example:complies'('urn:example:carol3970', false)). +answer('urn:example:complies'('urn:example:carol3971', false)). +answer('urn:example:complies'('urn:example:carol3972', false)). +answer('urn:example:complies'('urn:example:carol3973', false)). +answer('urn:example:complies'('urn:example:carol3974', false)). +answer('urn:example:complies'('urn:example:carol3975', false)). +answer('urn:example:complies'('urn:example:carol3976', false)). +answer('urn:example:complies'('urn:example:carol3977', false)). +answer('urn:example:complies'('urn:example:carol3978', false)). +answer('urn:example:complies'('urn:example:carol3979', false)). +answer('urn:example:complies'('urn:example:carol3980', false)). +answer('urn:example:complies'('urn:example:carol3981', false)). +answer('urn:example:complies'('urn:example:carol3982', false)). +answer('urn:example:complies'('urn:example:carol3983', false)). +answer('urn:example:complies'('urn:example:carol3984', false)). +answer('urn:example:complies'('urn:example:carol3985', false)). +answer('urn:example:complies'('urn:example:carol3986', false)). +answer('urn:example:complies'('urn:example:carol3987', false)). +answer('urn:example:complies'('urn:example:carol3988', false)). +answer('urn:example:complies'('urn:example:carol3989', false)). +answer('urn:example:complies'('urn:example:carol3990', false)). +answer('urn:example:complies'('urn:example:carol3991', false)). +answer('urn:example:complies'('urn:example:carol3992', false)). +answer('urn:example:complies'('urn:example:carol3993', false)). +answer('urn:example:complies'('urn:example:carol3994', false)). +answer('urn:example:complies'('urn:example:carol3995', false)). +answer('urn:example:complies'('urn:example:carol3996', false)). +answer('urn:example:complies'('urn:example:carol3997', false)). +answer('urn:example:complies'('urn:example:carol3998', false)). +answer('urn:example:complies'('urn:example:carol3999', false)). +answer('urn:example:complies'('urn:example:carol4000', false)). +answer('urn:example:complies'('urn:example:carol4001', false)). +answer('urn:example:complies'('urn:example:carol4002', false)). +answer('urn:example:complies'('urn:example:carol4003', false)). +answer('urn:example:complies'('urn:example:carol4004', false)). +answer('urn:example:complies'('urn:example:carol4005', false)). +answer('urn:example:complies'('urn:example:carol4006', false)). +answer('urn:example:complies'('urn:example:carol4007', false)). +answer('urn:example:complies'('urn:example:carol4008', false)). +answer('urn:example:complies'('urn:example:carol4009', false)). +answer('urn:example:complies'('urn:example:carol4010', false)). +answer('urn:example:complies'('urn:example:carol4011', false)). +answer('urn:example:complies'('urn:example:carol4012', false)). +answer('urn:example:complies'('urn:example:carol4013', false)). +answer('urn:example:complies'('urn:example:carol4014', false)). +answer('urn:example:complies'('urn:example:carol4015', false)). +answer('urn:example:complies'('urn:example:carol4016', false)). +answer('urn:example:complies'('urn:example:carol4017', false)). +answer('urn:example:complies'('urn:example:carol4018', false)). +answer('urn:example:complies'('urn:example:carol4019', false)). +answer('urn:example:complies'('urn:example:carol4020', false)). +answer('urn:example:complies'('urn:example:carol4021', false)). +answer('urn:example:complies'('urn:example:carol4022', false)). +answer('urn:example:complies'('urn:example:carol4023', false)). +answer('urn:example:complies'('urn:example:carol4024', false)). +answer('urn:example:complies'('urn:example:carol4025', false)). +answer('urn:example:complies'('urn:example:carol4026', false)). +answer('urn:example:complies'('urn:example:carol4027', false)). +answer('urn:example:complies'('urn:example:carol4028', false)). +answer('urn:example:complies'('urn:example:carol4029', false)). +answer('urn:example:complies'('urn:example:carol4030', false)). +answer('urn:example:complies'('urn:example:carol4031', false)). +answer('urn:example:complies'('urn:example:carol4032', false)). +answer('urn:example:complies'('urn:example:carol4033', false)). +answer('urn:example:complies'('urn:example:carol4034', false)). +answer('urn:example:complies'('urn:example:carol4035', false)). +answer('urn:example:complies'('urn:example:carol4036', false)). +answer('urn:example:complies'('urn:example:carol4037', false)). +answer('urn:example:complies'('urn:example:carol4038', false)). +answer('urn:example:complies'('urn:example:carol4039', false)). +answer('urn:example:complies'('urn:example:carol4040', false)). +answer('urn:example:complies'('urn:example:carol4041', false)). +answer('urn:example:complies'('urn:example:carol4042', false)). +answer('urn:example:complies'('urn:example:carol4043', false)). +answer('urn:example:complies'('urn:example:carol4044', false)). +answer('urn:example:complies'('urn:example:carol4045', false)). +answer('urn:example:complies'('urn:example:carol4046', false)). +answer('urn:example:complies'('urn:example:carol4047', false)). +answer('urn:example:complies'('urn:example:carol4048', false)). +answer('urn:example:complies'('urn:example:carol4049', false)). +answer('urn:example:complies'('urn:example:carol4050', false)). +answer('urn:example:complies'('urn:example:carol4051', false)). +answer('urn:example:complies'('urn:example:carol4052', false)). +answer('urn:example:complies'('urn:example:carol4053', false)). +answer('urn:example:complies'('urn:example:carol4054', false)). +answer('urn:example:complies'('urn:example:carol4055', false)). +answer('urn:example:complies'('urn:example:carol4056', false)). +answer('urn:example:complies'('urn:example:carol4057', false)). +answer('urn:example:complies'('urn:example:carol4058', false)). +answer('urn:example:complies'('urn:example:carol4059', false)). +answer('urn:example:complies'('urn:example:carol4060', false)). +answer('urn:example:complies'('urn:example:carol4061', false)). +answer('urn:example:complies'('urn:example:carol4062', false)). +answer('urn:example:complies'('urn:example:carol4063', false)). +answer('urn:example:complies'('urn:example:carol4064', false)). +answer('urn:example:complies'('urn:example:carol4065', false)). +answer('urn:example:complies'('urn:example:carol4066', false)). +answer('urn:example:complies'('urn:example:carol4067', false)). +answer('urn:example:complies'('urn:example:carol4068', false)). +answer('urn:example:complies'('urn:example:carol4069', false)). +answer('urn:example:complies'('urn:example:carol4070', false)). +answer('urn:example:complies'('urn:example:carol4071', false)). +answer('urn:example:complies'('urn:example:carol4072', false)). +answer('urn:example:complies'('urn:example:carol4073', false)). +answer('urn:example:complies'('urn:example:carol4074', false)). +answer('urn:example:complies'('urn:example:carol4075', false)). +answer('urn:example:complies'('urn:example:carol4076', false)). +answer('urn:example:complies'('urn:example:carol4077', false)). +answer('urn:example:complies'('urn:example:carol4078', false)). +answer('urn:example:complies'('urn:example:carol4079', false)). +answer('urn:example:complies'('urn:example:carol4080', false)). +answer('urn:example:complies'('urn:example:carol4081', false)). +answer('urn:example:complies'('urn:example:carol4082', false)). +answer('urn:example:complies'('urn:example:carol4083', false)). +answer('urn:example:complies'('urn:example:carol4084', false)). +answer('urn:example:complies'('urn:example:carol4085', false)). +answer('urn:example:complies'('urn:example:carol4086', false)). +answer('urn:example:complies'('urn:example:carol4087', false)). +answer('urn:example:complies'('urn:example:carol4088', false)). +answer('urn:example:complies'('urn:example:carol4089', false)). +answer('urn:example:complies'('urn:example:carol4090', false)). +answer('urn:example:complies'('urn:example:carol4091', false)). +answer('urn:example:complies'('urn:example:carol4092', false)). +answer('urn:example:complies'('urn:example:carol4093', false)). +answer('urn:example:complies'('urn:example:carol4094', false)). +answer('urn:example:complies'('urn:example:carol4095', false)). +answer('urn:example:complies'('urn:example:carol4096', false)). +answer('urn:example:complies'('urn:example:carol4097', false)). +answer('urn:example:complies'('urn:example:carol4098', false)). +answer('urn:example:complies'('urn:example:carol4099', false)). +answer('urn:example:complies'('urn:example:carol4100', false)). +answer('urn:example:complies'('urn:example:carol4101', false)). +answer('urn:example:complies'('urn:example:carol4102', false)). +answer('urn:example:complies'('urn:example:carol4103', false)). +answer('urn:example:complies'('urn:example:carol4104', false)). +answer('urn:example:complies'('urn:example:carol4105', false)). +answer('urn:example:complies'('urn:example:carol4106', false)). +answer('urn:example:complies'('urn:example:carol4107', false)). +answer('urn:example:complies'('urn:example:carol4108', false)). +answer('urn:example:complies'('urn:example:carol4109', false)). +answer('urn:example:complies'('urn:example:carol4110', false)). +answer('urn:example:complies'('urn:example:carol4111', false)). +answer('urn:example:complies'('urn:example:carol4112', false)). +answer('urn:example:complies'('urn:example:carol4113', false)). +answer('urn:example:complies'('urn:example:carol4114', false)). +answer('urn:example:complies'('urn:example:carol4115', false)). +answer('urn:example:complies'('urn:example:carol4116', false)). +answer('urn:example:complies'('urn:example:carol4117', false)). +answer('urn:example:complies'('urn:example:carol4118', false)). +answer('urn:example:complies'('urn:example:carol4119', false)). +answer('urn:example:complies'('urn:example:carol4120', false)). +answer('urn:example:complies'('urn:example:carol4121', false)). +answer('urn:example:complies'('urn:example:carol4122', false)). +answer('urn:example:complies'('urn:example:carol4123', false)). +answer('urn:example:complies'('urn:example:carol4124', false)). +answer('urn:example:complies'('urn:example:carol4125', false)). +answer('urn:example:complies'('urn:example:carol4126', false)). +answer('urn:example:complies'('urn:example:carol4127', false)). +answer('urn:example:complies'('urn:example:carol4128', false)). +answer('urn:example:complies'('urn:example:carol4129', false)). +answer('urn:example:complies'('urn:example:carol4130', false)). +answer('urn:example:complies'('urn:example:carol4131', false)). +answer('urn:example:complies'('urn:example:carol4132', false)). +answer('urn:example:complies'('urn:example:carol4133', false)). +answer('urn:example:complies'('urn:example:carol4134', false)). +answer('urn:example:complies'('urn:example:carol4135', false)). +answer('urn:example:complies'('urn:example:carol4136', false)). +answer('urn:example:complies'('urn:example:carol4137', false)). +answer('urn:example:complies'('urn:example:carol4138', false)). +answer('urn:example:complies'('urn:example:carol4139', false)). +answer('urn:example:complies'('urn:example:carol4140', false)). +answer('urn:example:complies'('urn:example:carol4141', false)). +answer('urn:example:complies'('urn:example:carol4142', false)). +answer('urn:example:complies'('urn:example:carol4143', false)). +answer('urn:example:complies'('urn:example:carol4144', false)). +answer('urn:example:complies'('urn:example:carol4145', false)). +answer('urn:example:complies'('urn:example:carol4146', false)). +answer('urn:example:complies'('urn:example:carol4147', false)). +answer('urn:example:complies'('urn:example:carol4148', false)). +answer('urn:example:complies'('urn:example:carol4149', false)). +answer('urn:example:complies'('urn:example:carol4150', false)). +answer('urn:example:complies'('urn:example:carol4151', false)). +answer('urn:example:complies'('urn:example:carol4152', false)). +answer('urn:example:complies'('urn:example:carol4153', false)). +answer('urn:example:complies'('urn:example:carol4154', false)). +answer('urn:example:complies'('urn:example:carol4155', false)). +answer('urn:example:complies'('urn:example:carol4156', false)). +answer('urn:example:complies'('urn:example:carol4157', false)). +answer('urn:example:complies'('urn:example:carol4158', false)). +answer('urn:example:complies'('urn:example:carol4159', false)). +answer('urn:example:complies'('urn:example:carol4160', false)). +answer('urn:example:complies'('urn:example:carol4161', false)). +answer('urn:example:complies'('urn:example:carol4162', false)). +answer('urn:example:complies'('urn:example:carol4163', false)). +answer('urn:example:complies'('urn:example:carol4164', false)). +answer('urn:example:complies'('urn:example:carol4165', false)). +answer('urn:example:complies'('urn:example:carol4166', false)). +answer('urn:example:complies'('urn:example:carol4167', false)). +answer('urn:example:complies'('urn:example:carol4168', false)). +answer('urn:example:complies'('urn:example:carol4169', false)). +answer('urn:example:complies'('urn:example:carol4170', false)). +answer('urn:example:complies'('urn:example:carol4171', false)). +answer('urn:example:complies'('urn:example:carol4172', false)). +answer('urn:example:complies'('urn:example:carol4173', false)). +answer('urn:example:complies'('urn:example:carol4174', false)). +answer('urn:example:complies'('urn:example:carol4175', false)). +answer('urn:example:complies'('urn:example:carol4176', false)). +answer('urn:example:complies'('urn:example:carol4177', false)). +answer('urn:example:complies'('urn:example:carol4178', false)). +answer('urn:example:complies'('urn:example:carol4179', false)). +answer('urn:example:complies'('urn:example:carol4180', false)). +answer('urn:example:complies'('urn:example:carol4181', false)). +answer('urn:example:complies'('urn:example:carol4182', false)). +answer('urn:example:complies'('urn:example:carol4183', false)). +answer('urn:example:complies'('urn:example:carol4184', false)). +answer('urn:example:complies'('urn:example:carol4185', false)). +answer('urn:example:complies'('urn:example:carol4186', false)). +answer('urn:example:complies'('urn:example:carol4187', false)). +answer('urn:example:complies'('urn:example:carol4188', false)). +answer('urn:example:complies'('urn:example:carol4189', false)). +answer('urn:example:complies'('urn:example:carol4190', false)). +answer('urn:example:complies'('urn:example:carol4191', false)). +answer('urn:example:complies'('urn:example:carol4192', false)). +answer('urn:example:complies'('urn:example:carol4193', false)). +answer('urn:example:complies'('urn:example:carol4194', false)). +answer('urn:example:complies'('urn:example:carol4195', false)). +answer('urn:example:complies'('urn:example:carol4196', false)). +answer('urn:example:complies'('urn:example:carol4197', false)). +answer('urn:example:complies'('urn:example:carol4198', false)). +answer('urn:example:complies'('urn:example:carol4199', false)). +answer('urn:example:complies'('urn:example:carol4200', false)). +answer('urn:example:complies'('urn:example:carol4201', false)). +answer('urn:example:complies'('urn:example:carol4202', false)). +answer('urn:example:complies'('urn:example:carol4203', false)). +answer('urn:example:complies'('urn:example:carol4204', false)). +answer('urn:example:complies'('urn:example:carol4205', false)). +answer('urn:example:complies'('urn:example:carol4206', false)). +answer('urn:example:complies'('urn:example:carol4207', false)). +answer('urn:example:complies'('urn:example:carol4208', false)). +answer('urn:example:complies'('urn:example:carol4209', false)). +answer('urn:example:complies'('urn:example:carol4210', false)). +answer('urn:example:complies'('urn:example:carol4211', false)). +answer('urn:example:complies'('urn:example:carol4212', false)). +answer('urn:example:complies'('urn:example:carol4213', false)). +answer('urn:example:complies'('urn:example:carol4214', false)). +answer('urn:example:complies'('urn:example:carol4215', false)). +answer('urn:example:complies'('urn:example:carol4216', false)). +answer('urn:example:complies'('urn:example:carol4217', false)). +answer('urn:example:complies'('urn:example:carol4218', false)). +answer('urn:example:complies'('urn:example:carol4219', false)). +answer('urn:example:complies'('urn:example:carol4220', false)). +answer('urn:example:complies'('urn:example:carol4221', false)). +answer('urn:example:complies'('urn:example:carol4222', false)). +answer('urn:example:complies'('urn:example:carol4223', false)). +answer('urn:example:complies'('urn:example:carol4224', false)). +answer('urn:example:complies'('urn:example:carol4225', false)). +answer('urn:example:complies'('urn:example:carol4226', false)). +answer('urn:example:complies'('urn:example:carol4227', false)). +answer('urn:example:complies'('urn:example:carol4228', false)). +answer('urn:example:complies'('urn:example:carol4229', false)). +answer('urn:example:complies'('urn:example:carol4230', false)). +answer('urn:example:complies'('urn:example:carol4231', false)). +answer('urn:example:complies'('urn:example:carol4232', false)). +answer('urn:example:complies'('urn:example:carol4233', false)). +answer('urn:example:complies'('urn:example:carol4234', false)). +answer('urn:example:complies'('urn:example:carol4235', false)). +answer('urn:example:complies'('urn:example:carol4236', false)). +answer('urn:example:complies'('urn:example:carol4237', false)). +answer('urn:example:complies'('urn:example:carol4238', false)). +answer('urn:example:complies'('urn:example:carol4239', false)). +answer('urn:example:complies'('urn:example:carol4240', false)). +answer('urn:example:complies'('urn:example:carol4241', false)). +answer('urn:example:complies'('urn:example:carol4242', false)). +answer('urn:example:complies'('urn:example:carol4243', false)). +answer('urn:example:complies'('urn:example:carol4244', false)). +answer('urn:example:complies'('urn:example:carol4245', false)). +answer('urn:example:complies'('urn:example:carol4246', false)). +answer('urn:example:complies'('urn:example:carol4247', false)). +answer('urn:example:complies'('urn:example:carol4248', false)). +answer('urn:example:complies'('urn:example:carol4249', false)). +answer('urn:example:complies'('urn:example:carol4250', false)). +answer('urn:example:complies'('urn:example:carol4251', false)). +answer('urn:example:complies'('urn:example:carol4252', false)). +answer('urn:example:complies'('urn:example:carol4253', false)). +answer('urn:example:complies'('urn:example:carol4254', false)). +answer('urn:example:complies'('urn:example:carol4255', false)). +answer('urn:example:complies'('urn:example:carol4256', false)). +answer('urn:example:complies'('urn:example:carol4257', false)). +answer('urn:example:complies'('urn:example:carol4258', false)). +answer('urn:example:complies'('urn:example:carol4259', false)). +answer('urn:example:complies'('urn:example:carol4260', false)). +answer('urn:example:complies'('urn:example:carol4261', false)). +answer('urn:example:complies'('urn:example:carol4262', false)). +answer('urn:example:complies'('urn:example:carol4263', false)). +answer('urn:example:complies'('urn:example:carol4264', false)). +answer('urn:example:complies'('urn:example:carol4265', false)). +answer('urn:example:complies'('urn:example:carol4266', false)). +answer('urn:example:complies'('urn:example:carol4267', false)). +answer('urn:example:complies'('urn:example:carol4268', false)). +answer('urn:example:complies'('urn:example:carol4269', false)). +answer('urn:example:complies'('urn:example:carol4270', false)). +answer('urn:example:complies'('urn:example:carol4271', false)). +answer('urn:example:complies'('urn:example:carol4272', false)). +answer('urn:example:complies'('urn:example:carol4273', false)). +answer('urn:example:complies'('urn:example:carol4274', false)). +answer('urn:example:complies'('urn:example:carol4275', false)). +answer('urn:example:complies'('urn:example:carol4276', false)). +answer('urn:example:complies'('urn:example:carol4277', false)). +answer('urn:example:complies'('urn:example:carol4278', false)). +answer('urn:example:complies'('urn:example:carol4279', false)). +answer('urn:example:complies'('urn:example:carol4280', false)). +answer('urn:example:complies'('urn:example:carol4281', false)). +answer('urn:example:complies'('urn:example:carol4282', false)). +answer('urn:example:complies'('urn:example:carol4283', false)). +answer('urn:example:complies'('urn:example:carol4284', false)). +answer('urn:example:complies'('urn:example:carol4285', false)). +answer('urn:example:complies'('urn:example:carol4286', false)). +answer('urn:example:complies'('urn:example:carol4287', false)). +answer('urn:example:complies'('urn:example:carol4288', false)). +answer('urn:example:complies'('urn:example:carol4289', false)). +answer('urn:example:complies'('urn:example:carol4290', false)). +answer('urn:example:complies'('urn:example:carol4291', false)). +answer('urn:example:complies'('urn:example:carol4292', false)). +answer('urn:example:complies'('urn:example:carol4293', false)). +answer('urn:example:complies'('urn:example:carol4294', false)). +answer('urn:example:complies'('urn:example:carol4295', false)). +answer('urn:example:complies'('urn:example:carol4296', false)). +answer('urn:example:complies'('urn:example:carol4297', false)). +answer('urn:example:complies'('urn:example:carol4298', false)). +answer('urn:example:complies'('urn:example:carol4299', false)). +answer('urn:example:complies'('urn:example:carol4300', false)). +answer('urn:example:complies'('urn:example:carol4301', false)). +answer('urn:example:complies'('urn:example:carol4302', false)). +answer('urn:example:complies'('urn:example:carol4303', false)). +answer('urn:example:complies'('urn:example:carol4304', false)). +answer('urn:example:complies'('urn:example:carol4305', false)). +answer('urn:example:complies'('urn:example:carol4306', false)). +answer('urn:example:complies'('urn:example:carol4307', false)). +answer('urn:example:complies'('urn:example:carol4308', false)). +answer('urn:example:complies'('urn:example:carol4309', false)). +answer('urn:example:complies'('urn:example:carol4310', false)). +answer('urn:example:complies'('urn:example:carol4311', false)). +answer('urn:example:complies'('urn:example:carol4312', false)). +answer('urn:example:complies'('urn:example:carol4313', false)). +answer('urn:example:complies'('urn:example:carol4314', false)). +answer('urn:example:complies'('urn:example:carol4315', false)). +answer('urn:example:complies'('urn:example:carol4316', false)). +answer('urn:example:complies'('urn:example:carol4317', false)). +answer('urn:example:complies'('urn:example:carol4318', false)). +answer('urn:example:complies'('urn:example:carol4319', false)). +answer('urn:example:complies'('urn:example:carol4320', false)). +answer('urn:example:complies'('urn:example:carol4321', false)). +answer('urn:example:complies'('urn:example:carol4322', false)). +answer('urn:example:complies'('urn:example:carol4323', false)). +answer('urn:example:complies'('urn:example:carol4324', false)). +answer('urn:example:complies'('urn:example:carol4325', false)). +answer('urn:example:complies'('urn:example:carol4326', false)). +answer('urn:example:complies'('urn:example:carol4327', false)). +answer('urn:example:complies'('urn:example:carol4328', false)). +answer('urn:example:complies'('urn:example:carol4329', false)). +answer('urn:example:complies'('urn:example:carol4330', false)). +answer('urn:example:complies'('urn:example:carol4331', false)). +answer('urn:example:complies'('urn:example:carol4332', false)). +answer('urn:example:complies'('urn:example:carol4333', false)). +answer('urn:example:complies'('urn:example:carol4334', false)). +answer('urn:example:complies'('urn:example:carol4335', false)). +answer('urn:example:complies'('urn:example:carol4336', false)). +answer('urn:example:complies'('urn:example:carol4337', false)). +answer('urn:example:complies'('urn:example:carol4338', false)). +answer('urn:example:complies'('urn:example:carol4339', false)). +answer('urn:example:complies'('urn:example:carol4340', false)). +answer('urn:example:complies'('urn:example:carol4341', false)). +answer('urn:example:complies'('urn:example:carol4342', false)). +answer('urn:example:complies'('urn:example:carol4343', false)). +answer('urn:example:complies'('urn:example:carol4344', false)). +answer('urn:example:complies'('urn:example:carol4345', false)). +answer('urn:example:complies'('urn:example:carol4346', false)). +answer('urn:example:complies'('urn:example:carol4347', false)). +answer('urn:example:complies'('urn:example:carol4348', false)). +answer('urn:example:complies'('urn:example:carol4349', false)). +answer('urn:example:complies'('urn:example:carol4350', false)). +answer('urn:example:complies'('urn:example:carol4351', false)). +answer('urn:example:complies'('urn:example:carol4352', false)). +answer('urn:example:complies'('urn:example:carol4353', false)). +answer('urn:example:complies'('urn:example:carol4354', false)). +answer('urn:example:complies'('urn:example:carol4355', false)). +answer('urn:example:complies'('urn:example:carol4356', false)). +answer('urn:example:complies'('urn:example:carol4357', false)). +answer('urn:example:complies'('urn:example:carol4358', false)). +answer('urn:example:complies'('urn:example:carol4359', false)). +answer('urn:example:complies'('urn:example:carol4360', false)). +answer('urn:example:complies'('urn:example:carol4361', false)). +answer('urn:example:complies'('urn:example:carol4362', false)). +answer('urn:example:complies'('urn:example:carol4363', false)). +answer('urn:example:complies'('urn:example:carol4364', false)). +answer('urn:example:complies'('urn:example:carol4365', false)). +answer('urn:example:complies'('urn:example:carol4366', false)). +answer('urn:example:complies'('urn:example:carol4367', false)). +answer('urn:example:complies'('urn:example:carol4368', false)). +answer('urn:example:complies'('urn:example:carol4369', false)). +answer('urn:example:complies'('urn:example:carol4370', false)). +answer('urn:example:complies'('urn:example:carol4371', false)). +answer('urn:example:complies'('urn:example:carol4372', false)). +answer('urn:example:complies'('urn:example:carol4373', false)). +answer('urn:example:complies'('urn:example:carol4374', false)). +answer('urn:example:complies'('urn:example:carol4375', false)). +answer('urn:example:complies'('urn:example:carol4376', false)). +answer('urn:example:complies'('urn:example:carol4377', false)). +answer('urn:example:complies'('urn:example:carol4378', false)). +answer('urn:example:complies'('urn:example:carol4379', false)). +answer('urn:example:complies'('urn:example:carol4380', false)). +answer('urn:example:complies'('urn:example:carol4381', false)). +answer('urn:example:complies'('urn:example:carol4382', false)). +answer('urn:example:complies'('urn:example:carol4383', false)). +answer('urn:example:complies'('urn:example:carol4384', false)). +answer('urn:example:complies'('urn:example:carol4385', false)). +answer('urn:example:complies'('urn:example:carol4386', false)). +answer('urn:example:complies'('urn:example:carol4387', false)). +answer('urn:example:complies'('urn:example:carol4388', false)). +answer('urn:example:complies'('urn:example:carol4389', false)). +answer('urn:example:complies'('urn:example:carol4390', false)). +answer('urn:example:complies'('urn:example:carol4391', false)). +answer('urn:example:complies'('urn:example:carol4392', false)). +answer('urn:example:complies'('urn:example:carol4393', false)). +answer('urn:example:complies'('urn:example:carol4394', false)). +answer('urn:example:complies'('urn:example:carol4395', false)). +answer('urn:example:complies'('urn:example:carol4396', false)). +answer('urn:example:complies'('urn:example:carol4397', false)). +answer('urn:example:complies'('urn:example:carol4398', false)). +answer('urn:example:complies'('urn:example:carol4399', false)). +answer('urn:example:complies'('urn:example:carol4400', false)). +answer('urn:example:complies'('urn:example:carol4401', false)). +answer('urn:example:complies'('urn:example:carol4402', false)). +answer('urn:example:complies'('urn:example:carol4403', false)). +answer('urn:example:complies'('urn:example:carol4404', false)). +answer('urn:example:complies'('urn:example:carol4405', false)). +answer('urn:example:complies'('urn:example:carol4406', false)). +answer('urn:example:complies'('urn:example:carol4407', false)). +answer('urn:example:complies'('urn:example:carol4408', false)). +answer('urn:example:complies'('urn:example:carol4409', false)). +answer('urn:example:complies'('urn:example:carol4410', false)). +answer('urn:example:complies'('urn:example:carol4411', false)). +answer('urn:example:complies'('urn:example:carol4412', false)). +answer('urn:example:complies'('urn:example:carol4413', false)). +answer('urn:example:complies'('urn:example:carol4414', false)). +answer('urn:example:complies'('urn:example:carol4415', false)). +answer('urn:example:complies'('urn:example:carol4416', false)). +answer('urn:example:complies'('urn:example:carol4417', false)). +answer('urn:example:complies'('urn:example:carol4418', false)). +answer('urn:example:complies'('urn:example:carol4419', false)). +answer('urn:example:complies'('urn:example:carol4420', false)). +answer('urn:example:complies'('urn:example:carol4421', false)). +answer('urn:example:complies'('urn:example:carol4422', false)). +answer('urn:example:complies'('urn:example:carol4423', false)). +answer('urn:example:complies'('urn:example:carol4424', false)). +answer('urn:example:complies'('urn:example:carol4425', false)). +answer('urn:example:complies'('urn:example:carol4426', false)). +answer('urn:example:complies'('urn:example:carol4427', false)). +answer('urn:example:complies'('urn:example:carol4428', false)). +answer('urn:example:complies'('urn:example:carol4429', false)). +answer('urn:example:complies'('urn:example:carol4430', false)). +answer('urn:example:complies'('urn:example:carol4431', false)). +answer('urn:example:complies'('urn:example:carol4432', false)). +answer('urn:example:complies'('urn:example:carol4433', false)). +answer('urn:example:complies'('urn:example:carol4434', false)). +answer('urn:example:complies'('urn:example:carol4435', false)). +answer('urn:example:complies'('urn:example:carol4436', false)). +answer('urn:example:complies'('urn:example:carol4437', false)). +answer('urn:example:complies'('urn:example:carol4438', false)). +answer('urn:example:complies'('urn:example:carol4439', false)). +answer('urn:example:complies'('urn:example:carol4440', false)). +answer('urn:example:complies'('urn:example:carol4441', false)). +answer('urn:example:complies'('urn:example:carol4442', false)). +answer('urn:example:complies'('urn:example:carol4443', false)). +answer('urn:example:complies'('urn:example:carol4444', false)). +answer('urn:example:complies'('urn:example:carol4445', false)). +answer('urn:example:complies'('urn:example:carol4446', false)). +answer('urn:example:complies'('urn:example:carol4447', false)). +answer('urn:example:complies'('urn:example:carol4448', false)). +answer('urn:example:complies'('urn:example:carol4449', false)). +answer('urn:example:complies'('urn:example:carol4450', false)). +answer('urn:example:complies'('urn:example:carol4451', false)). +answer('urn:example:complies'('urn:example:carol4452', false)). +answer('urn:example:complies'('urn:example:carol4453', false)). +answer('urn:example:complies'('urn:example:carol4454', false)). +answer('urn:example:complies'('urn:example:carol4455', false)). +answer('urn:example:complies'('urn:example:carol4456', false)). +answer('urn:example:complies'('urn:example:carol4457', false)). +answer('urn:example:complies'('urn:example:carol4458', false)). +answer('urn:example:complies'('urn:example:carol4459', false)). +answer('urn:example:complies'('urn:example:carol4460', false)). +answer('urn:example:complies'('urn:example:carol4461', false)). +answer('urn:example:complies'('urn:example:carol4462', false)). +answer('urn:example:complies'('urn:example:carol4463', false)). +answer('urn:example:complies'('urn:example:carol4464', false)). +answer('urn:example:complies'('urn:example:carol4465', false)). +answer('urn:example:complies'('urn:example:carol4466', false)). +answer('urn:example:complies'('urn:example:carol4467', false)). +answer('urn:example:complies'('urn:example:carol4468', false)). +answer('urn:example:complies'('urn:example:carol4469', false)). +answer('urn:example:complies'('urn:example:carol4470', false)). +answer('urn:example:complies'('urn:example:carol4471', false)). +answer('urn:example:complies'('urn:example:carol4472', false)). +answer('urn:example:complies'('urn:example:carol4473', false)). +answer('urn:example:complies'('urn:example:carol4474', false)). +answer('urn:example:complies'('urn:example:carol4475', false)). +answer('urn:example:complies'('urn:example:carol4476', false)). +answer('urn:example:complies'('urn:example:carol4477', false)). +answer('urn:example:complies'('urn:example:carol4478', false)). +answer('urn:example:complies'('urn:example:carol4479', false)). +answer('urn:example:complies'('urn:example:carol4480', false)). +answer('urn:example:complies'('urn:example:carol4481', false)). +answer('urn:example:complies'('urn:example:carol4482', false)). +answer('urn:example:complies'('urn:example:carol4483', false)). +answer('urn:example:complies'('urn:example:carol4484', false)). +answer('urn:example:complies'('urn:example:carol4485', false)). +answer('urn:example:complies'('urn:example:carol4486', false)). +answer('urn:example:complies'('urn:example:carol4487', false)). +answer('urn:example:complies'('urn:example:carol4488', false)). +answer('urn:example:complies'('urn:example:carol4489', false)). +answer('urn:example:complies'('urn:example:carol4490', false)). +answer('urn:example:complies'('urn:example:carol4491', false)). +answer('urn:example:complies'('urn:example:carol4492', false)). +answer('urn:example:complies'('urn:example:carol4493', false)). +answer('urn:example:complies'('urn:example:carol4494', false)). +answer('urn:example:complies'('urn:example:carol4495', false)). +answer('urn:example:complies'('urn:example:carol4496', false)). +answer('urn:example:complies'('urn:example:carol4497', false)). +answer('urn:example:complies'('urn:example:carol4498', false)). +answer('urn:example:complies'('urn:example:carol4499', false)). +answer('urn:example:complies'('urn:example:carol4500', false)). +answer('urn:example:complies'('urn:example:carol4501', false)). +answer('urn:example:complies'('urn:example:carol4502', false)). +answer('urn:example:complies'('urn:example:carol4503', false)). +answer('urn:example:complies'('urn:example:carol4504', false)). +answer('urn:example:complies'('urn:example:carol4505', false)). +answer('urn:example:complies'('urn:example:carol4506', false)). +answer('urn:example:complies'('urn:example:carol4507', false)). +answer('urn:example:complies'('urn:example:carol4508', false)). +answer('urn:example:complies'('urn:example:carol4509', false)). +answer('urn:example:complies'('urn:example:carol4510', false)). +answer('urn:example:complies'('urn:example:carol4511', false)). +answer('urn:example:complies'('urn:example:carol4512', false)). +answer('urn:example:complies'('urn:example:carol4513', false)). +answer('urn:example:complies'('urn:example:carol4514', false)). +answer('urn:example:complies'('urn:example:carol4515', false)). +answer('urn:example:complies'('urn:example:carol4516', false)). +answer('urn:example:complies'('urn:example:carol4517', false)). +answer('urn:example:complies'('urn:example:carol4518', false)). +answer('urn:example:complies'('urn:example:carol4519', false)). +answer('urn:example:complies'('urn:example:carol4520', false)). +answer('urn:example:complies'('urn:example:carol4521', false)). +answer('urn:example:complies'('urn:example:carol4522', false)). +answer('urn:example:complies'('urn:example:carol4523', false)). +answer('urn:example:complies'('urn:example:carol4524', false)). +answer('urn:example:complies'('urn:example:carol4525', false)). +answer('urn:example:complies'('urn:example:carol4526', false)). +answer('urn:example:complies'('urn:example:carol4527', false)). +answer('urn:example:complies'('urn:example:carol4528', false)). +answer('urn:example:complies'('urn:example:carol4529', false)). +answer('urn:example:complies'('urn:example:carol4530', false)). +answer('urn:example:complies'('urn:example:carol4531', false)). +answer('urn:example:complies'('urn:example:carol4532', false)). +answer('urn:example:complies'('urn:example:carol4533', false)). +answer('urn:example:complies'('urn:example:carol4534', false)). +answer('urn:example:complies'('urn:example:carol4535', false)). +answer('urn:example:complies'('urn:example:carol4536', false)). +answer('urn:example:complies'('urn:example:carol4537', false)). +answer('urn:example:complies'('urn:example:carol4538', false)). +answer('urn:example:complies'('urn:example:carol4539', false)). +answer('urn:example:complies'('urn:example:carol4540', false)). +answer('urn:example:complies'('urn:example:carol4541', false)). +answer('urn:example:complies'('urn:example:carol4542', false)). +answer('urn:example:complies'('urn:example:carol4543', false)). +answer('urn:example:complies'('urn:example:carol4544', false)). +answer('urn:example:complies'('urn:example:carol4545', false)). +answer('urn:example:complies'('urn:example:carol4546', false)). +answer('urn:example:complies'('urn:example:carol4547', false)). +answer('urn:example:complies'('urn:example:carol4548', false)). +answer('urn:example:complies'('urn:example:carol4549', false)). +answer('urn:example:complies'('urn:example:carol4550', false)). +answer('urn:example:complies'('urn:example:carol4551', false)). +answer('urn:example:complies'('urn:example:carol4552', false)). +answer('urn:example:complies'('urn:example:carol4553', false)). +answer('urn:example:complies'('urn:example:carol4554', false)). +answer('urn:example:complies'('urn:example:carol4555', false)). +answer('urn:example:complies'('urn:example:carol4556', false)). +answer('urn:example:complies'('urn:example:carol4557', false)). +answer('urn:example:complies'('urn:example:carol4558', false)). +answer('urn:example:complies'('urn:example:carol4559', false)). +answer('urn:example:complies'('urn:example:carol4560', false)). +answer('urn:example:complies'('urn:example:carol4561', false)). +answer('urn:example:complies'('urn:example:carol4562', false)). +answer('urn:example:complies'('urn:example:carol4563', false)). +answer('urn:example:complies'('urn:example:carol4564', false)). +answer('urn:example:complies'('urn:example:carol4565', false)). +answer('urn:example:complies'('urn:example:carol4566', false)). +answer('urn:example:complies'('urn:example:carol4567', false)). +answer('urn:example:complies'('urn:example:carol4568', false)). +answer('urn:example:complies'('urn:example:carol4569', false)). +answer('urn:example:complies'('urn:example:carol4570', false)). +answer('urn:example:complies'('urn:example:carol4571', false)). +answer('urn:example:complies'('urn:example:carol4572', false)). +answer('urn:example:complies'('urn:example:carol4573', false)). +answer('urn:example:complies'('urn:example:carol4574', false)). +answer('urn:example:complies'('urn:example:carol4575', false)). +answer('urn:example:complies'('urn:example:carol4576', false)). +answer('urn:example:complies'('urn:example:carol4577', false)). +answer('urn:example:complies'('urn:example:carol4578', false)). +answer('urn:example:complies'('urn:example:carol4579', false)). +answer('urn:example:complies'('urn:example:carol4580', false)). +answer('urn:example:complies'('urn:example:carol4581', false)). +answer('urn:example:complies'('urn:example:carol4582', false)). +answer('urn:example:complies'('urn:example:carol4583', false)). +answer('urn:example:complies'('urn:example:carol4584', false)). +answer('urn:example:complies'('urn:example:carol4585', false)). +answer('urn:example:complies'('urn:example:carol4586', false)). +answer('urn:example:complies'('urn:example:carol4587', false)). +answer('urn:example:complies'('urn:example:carol4588', false)). +answer('urn:example:complies'('urn:example:carol4589', false)). +answer('urn:example:complies'('urn:example:carol4590', false)). +answer('urn:example:complies'('urn:example:carol4591', false)). +answer('urn:example:complies'('urn:example:carol4592', false)). +answer('urn:example:complies'('urn:example:carol4593', false)). +answer('urn:example:complies'('urn:example:carol4594', false)). +answer('urn:example:complies'('urn:example:carol4595', false)). +answer('urn:example:complies'('urn:example:carol4596', false)). +answer('urn:example:complies'('urn:example:carol4597', false)). +answer('urn:example:complies'('urn:example:carol4598', false)). +answer('urn:example:complies'('urn:example:carol4599', false)). +answer('urn:example:complies'('urn:example:carol4600', false)). +answer('urn:example:complies'('urn:example:carol4601', false)). +answer('urn:example:complies'('urn:example:carol4602', false)). +answer('urn:example:complies'('urn:example:carol4603', false)). +answer('urn:example:complies'('urn:example:carol4604', false)). +answer('urn:example:complies'('urn:example:carol4605', false)). +answer('urn:example:complies'('urn:example:carol4606', false)). +answer('urn:example:complies'('urn:example:carol4607', false)). +answer('urn:example:complies'('urn:example:carol4608', false)). +answer('urn:example:complies'('urn:example:carol4609', false)). +answer('urn:example:complies'('urn:example:carol4610', false)). +answer('urn:example:complies'('urn:example:carol4611', false)). +answer('urn:example:complies'('urn:example:carol4612', false)). +answer('urn:example:complies'('urn:example:carol4613', false)). +answer('urn:example:complies'('urn:example:carol4614', false)). +answer('urn:example:complies'('urn:example:carol4615', false)). +answer('urn:example:complies'('urn:example:carol4616', false)). +answer('urn:example:complies'('urn:example:carol4617', false)). +answer('urn:example:complies'('urn:example:carol4618', false)). +answer('urn:example:complies'('urn:example:carol4619', false)). +answer('urn:example:complies'('urn:example:carol4620', false)). +answer('urn:example:complies'('urn:example:carol4621', false)). +answer('urn:example:complies'('urn:example:carol4622', false)). +answer('urn:example:complies'('urn:example:carol4623', false)). +answer('urn:example:complies'('urn:example:carol4624', false)). +answer('urn:example:complies'('urn:example:carol4625', false)). +answer('urn:example:complies'('urn:example:carol4626', false)). +answer('urn:example:complies'('urn:example:carol4627', false)). +answer('urn:example:complies'('urn:example:carol4628', false)). +answer('urn:example:complies'('urn:example:carol4629', false)). +answer('urn:example:complies'('urn:example:carol4630', false)). +answer('urn:example:complies'('urn:example:carol4631', false)). +answer('urn:example:complies'('urn:example:carol4632', false)). +answer('urn:example:complies'('urn:example:carol4633', false)). +answer('urn:example:complies'('urn:example:carol4634', false)). +answer('urn:example:complies'('urn:example:carol4635', false)). +answer('urn:example:complies'('urn:example:carol4636', false)). +answer('urn:example:complies'('urn:example:carol4637', false)). +answer('urn:example:complies'('urn:example:carol4638', false)). +answer('urn:example:complies'('urn:example:carol4639', false)). +answer('urn:example:complies'('urn:example:carol4640', false)). +answer('urn:example:complies'('urn:example:carol4641', false)). +answer('urn:example:complies'('urn:example:carol4642', false)). +answer('urn:example:complies'('urn:example:carol4643', false)). +answer('urn:example:complies'('urn:example:carol4644', false)). +answer('urn:example:complies'('urn:example:carol4645', false)). +answer('urn:example:complies'('urn:example:carol4646', false)). +answer('urn:example:complies'('urn:example:carol4647', false)). +answer('urn:example:complies'('urn:example:carol4648', false)). +answer('urn:example:complies'('urn:example:carol4649', false)). +answer('urn:example:complies'('urn:example:carol4650', false)). +answer('urn:example:complies'('urn:example:carol4651', false)). +answer('urn:example:complies'('urn:example:carol4652', false)). +answer('urn:example:complies'('urn:example:carol4653', false)). +answer('urn:example:complies'('urn:example:carol4654', false)). +answer('urn:example:complies'('urn:example:carol4655', false)). +answer('urn:example:complies'('urn:example:carol4656', false)). +answer('urn:example:complies'('urn:example:carol4657', false)). +answer('urn:example:complies'('urn:example:carol4658', false)). +answer('urn:example:complies'('urn:example:carol4659', false)). +answer('urn:example:complies'('urn:example:carol4660', false)). +answer('urn:example:complies'('urn:example:carol4661', false)). +answer('urn:example:complies'('urn:example:carol4662', false)). +answer('urn:example:complies'('urn:example:carol4663', false)). +answer('urn:example:complies'('urn:example:carol4664', false)). +answer('urn:example:complies'('urn:example:carol4665', false)). +answer('urn:example:complies'('urn:example:carol4666', false)). +answer('urn:example:complies'('urn:example:carol4667', false)). +answer('urn:example:complies'('urn:example:carol4668', false)). +answer('urn:example:complies'('urn:example:carol4669', false)). +answer('urn:example:complies'('urn:example:carol4670', false)). +answer('urn:example:complies'('urn:example:carol4671', false)). +answer('urn:example:complies'('urn:example:carol4672', false)). +answer('urn:example:complies'('urn:example:carol4673', false)). +answer('urn:example:complies'('urn:example:carol4674', false)). +answer('urn:example:complies'('urn:example:carol4675', false)). +answer('urn:example:complies'('urn:example:carol4676', false)). +answer('urn:example:complies'('urn:example:carol4677', false)). +answer('urn:example:complies'('urn:example:carol4678', false)). +answer('urn:example:complies'('urn:example:carol4679', false)). +answer('urn:example:complies'('urn:example:carol4680', false)). +answer('urn:example:complies'('urn:example:carol4681', false)). +answer('urn:example:complies'('urn:example:carol4682', false)). +answer('urn:example:complies'('urn:example:carol4683', false)). +answer('urn:example:complies'('urn:example:carol4684', false)). +answer('urn:example:complies'('urn:example:carol4685', false)). +answer('urn:example:complies'('urn:example:carol4686', false)). +answer('urn:example:complies'('urn:example:carol4687', false)). +answer('urn:example:complies'('urn:example:carol4688', false)). +answer('urn:example:complies'('urn:example:carol4689', false)). +answer('urn:example:complies'('urn:example:carol4690', false)). +answer('urn:example:complies'('urn:example:carol4691', false)). +answer('urn:example:complies'('urn:example:carol4692', false)). +answer('urn:example:complies'('urn:example:carol4693', false)). +answer('urn:example:complies'('urn:example:carol4694', false)). +answer('urn:example:complies'('urn:example:carol4695', false)). +answer('urn:example:complies'('urn:example:carol4696', false)). +answer('urn:example:complies'('urn:example:carol4697', false)). +answer('urn:example:complies'('urn:example:carol4698', false)). +answer('urn:example:complies'('urn:example:carol4699', false)). +answer('urn:example:complies'('urn:example:carol4700', false)). +answer('urn:example:complies'('urn:example:carol4701', false)). +answer('urn:example:complies'('urn:example:carol4702', false)). +answer('urn:example:complies'('urn:example:carol4703', false)). +answer('urn:example:complies'('urn:example:carol4704', false)). +answer('urn:example:complies'('urn:example:carol4705', false)). +answer('urn:example:complies'('urn:example:carol4706', false)). +answer('urn:example:complies'('urn:example:carol4707', false)). +answer('urn:example:complies'('urn:example:carol4708', false)). +answer('urn:example:complies'('urn:example:carol4709', false)). +answer('urn:example:complies'('urn:example:carol4710', false)). +answer('urn:example:complies'('urn:example:carol4711', false)). +answer('urn:example:complies'('urn:example:carol4712', false)). +answer('urn:example:complies'('urn:example:carol4713', false)). +answer('urn:example:complies'('urn:example:carol4714', false)). +answer('urn:example:complies'('urn:example:carol4715', false)). +answer('urn:example:complies'('urn:example:carol4716', false)). +answer('urn:example:complies'('urn:example:carol4717', false)). +answer('urn:example:complies'('urn:example:carol4718', false)). +answer('urn:example:complies'('urn:example:carol4719', false)). +answer('urn:example:complies'('urn:example:carol4720', false)). +answer('urn:example:complies'('urn:example:carol4721', false)). +answer('urn:example:complies'('urn:example:carol4722', false)). +answer('urn:example:complies'('urn:example:carol4723', false)). +answer('urn:example:complies'('urn:example:carol4724', false)). +answer('urn:example:complies'('urn:example:carol4725', false)). +answer('urn:example:complies'('urn:example:carol4726', false)). +answer('urn:example:complies'('urn:example:carol4727', false)). +answer('urn:example:complies'('urn:example:carol4728', false)). +answer('urn:example:complies'('urn:example:carol4729', false)). +answer('urn:example:complies'('urn:example:carol4730', false)). +answer('urn:example:complies'('urn:example:carol4731', false)). +answer('urn:example:complies'('urn:example:carol4732', false)). +answer('urn:example:complies'('urn:example:carol4733', false)). +answer('urn:example:complies'('urn:example:carol4734', false)). +answer('urn:example:complies'('urn:example:carol4735', false)). +answer('urn:example:complies'('urn:example:carol4736', false)). +answer('urn:example:complies'('urn:example:carol4737', false)). +answer('urn:example:complies'('urn:example:carol4738', false)). +answer('urn:example:complies'('urn:example:carol4739', false)). +answer('urn:example:complies'('urn:example:carol4740', false)). +answer('urn:example:complies'('urn:example:carol4741', false)). +answer('urn:example:complies'('urn:example:carol4742', false)). +answer('urn:example:complies'('urn:example:carol4743', false)). +answer('urn:example:complies'('urn:example:carol4744', false)). +answer('urn:example:complies'('urn:example:carol4745', false)). +answer('urn:example:complies'('urn:example:carol4746', false)). +answer('urn:example:complies'('urn:example:carol4747', false)). +answer('urn:example:complies'('urn:example:carol4748', false)). +answer('urn:example:complies'('urn:example:carol4749', false)). +answer('urn:example:complies'('urn:example:carol4750', false)). +answer('urn:example:complies'('urn:example:carol4751', false)). +answer('urn:example:complies'('urn:example:carol4752', false)). +answer('urn:example:complies'('urn:example:carol4753', false)). +answer('urn:example:complies'('urn:example:carol4754', false)). +answer('urn:example:complies'('urn:example:carol4755', false)). +answer('urn:example:complies'('urn:example:carol4756', false)). +answer('urn:example:complies'('urn:example:carol4757', false)). +answer('urn:example:complies'('urn:example:carol4758', false)). +answer('urn:example:complies'('urn:example:carol4759', false)). +answer('urn:example:complies'('urn:example:carol4760', false)). +answer('urn:example:complies'('urn:example:carol4761', false)). +answer('urn:example:complies'('urn:example:carol4762', false)). +answer('urn:example:complies'('urn:example:carol4763', false)). +answer('urn:example:complies'('urn:example:carol4764', false)). +answer('urn:example:complies'('urn:example:carol4765', false)). +answer('urn:example:complies'('urn:example:carol4766', false)). +answer('urn:example:complies'('urn:example:carol4767', false)). +answer('urn:example:complies'('urn:example:carol4768', false)). +answer('urn:example:complies'('urn:example:carol4769', false)). +answer('urn:example:complies'('urn:example:carol4770', false)). +answer('urn:example:complies'('urn:example:carol4771', false)). +answer('urn:example:complies'('urn:example:carol4772', false)). +answer('urn:example:complies'('urn:example:carol4773', false)). +answer('urn:example:complies'('urn:example:carol4774', false)). +answer('urn:example:complies'('urn:example:carol4775', false)). +answer('urn:example:complies'('urn:example:carol4776', false)). +answer('urn:example:complies'('urn:example:carol4777', false)). +answer('urn:example:complies'('urn:example:carol4778', false)). +answer('urn:example:complies'('urn:example:carol4779', false)). +answer('urn:example:complies'('urn:example:carol4780', false)). +answer('urn:example:complies'('urn:example:carol4781', false)). +answer('urn:example:complies'('urn:example:carol4782', false)). +answer('urn:example:complies'('urn:example:carol4783', false)). +answer('urn:example:complies'('urn:example:carol4784', false)). +answer('urn:example:complies'('urn:example:carol4785', false)). +answer('urn:example:complies'('urn:example:carol4786', false)). +answer('urn:example:complies'('urn:example:carol4787', false)). +answer('urn:example:complies'('urn:example:carol4788', false)). +answer('urn:example:complies'('urn:example:carol4789', false)). +answer('urn:example:complies'('urn:example:carol4790', false)). +answer('urn:example:complies'('urn:example:carol4791', false)). +answer('urn:example:complies'('urn:example:carol4792', false)). +answer('urn:example:complies'('urn:example:carol4793', false)). +answer('urn:example:complies'('urn:example:carol4794', false)). +answer('urn:example:complies'('urn:example:carol4795', false)). +answer('urn:example:complies'('urn:example:carol4796', false)). +answer('urn:example:complies'('urn:example:carol4797', false)). +answer('urn:example:complies'('urn:example:carol4798', false)). +answer('urn:example:complies'('urn:example:carol4799', false)). +answer('urn:example:complies'('urn:example:carol4800', false)). +answer('urn:example:complies'('urn:example:carol4801', false)). +answer('urn:example:complies'('urn:example:carol4802', false)). +answer('urn:example:complies'('urn:example:carol4803', false)). +answer('urn:example:complies'('urn:example:carol4804', false)). +answer('urn:example:complies'('urn:example:carol4805', false)). +answer('urn:example:complies'('urn:example:carol4806', false)). +answer('urn:example:complies'('urn:example:carol4807', false)). +answer('urn:example:complies'('urn:example:carol4808', false)). +answer('urn:example:complies'('urn:example:carol4809', false)). +answer('urn:example:complies'('urn:example:carol4810', false)). +answer('urn:example:complies'('urn:example:carol4811', false)). +answer('urn:example:complies'('urn:example:carol4812', false)). +answer('urn:example:complies'('urn:example:carol4813', false)). +answer('urn:example:complies'('urn:example:carol4814', false)). +answer('urn:example:complies'('urn:example:carol4815', false)). +answer('urn:example:complies'('urn:example:carol4816', false)). +answer('urn:example:complies'('urn:example:carol4817', false)). +answer('urn:example:complies'('urn:example:carol4818', false)). +answer('urn:example:complies'('urn:example:carol4819', false)). +answer('urn:example:complies'('urn:example:carol4820', false)). +answer('urn:example:complies'('urn:example:carol4821', false)). +answer('urn:example:complies'('urn:example:carol4822', false)). +answer('urn:example:complies'('urn:example:carol4823', false)). +answer('urn:example:complies'('urn:example:carol4824', false)). +answer('urn:example:complies'('urn:example:carol4825', false)). +answer('urn:example:complies'('urn:example:carol4826', false)). +answer('urn:example:complies'('urn:example:carol4827', false)). +answer('urn:example:complies'('urn:example:carol4828', false)). +answer('urn:example:complies'('urn:example:carol4829', false)). +answer('urn:example:complies'('urn:example:carol4830', false)). +answer('urn:example:complies'('urn:example:carol4831', false)). +answer('urn:example:complies'('urn:example:carol4832', false)). +answer('urn:example:complies'('urn:example:carol4833', false)). +answer('urn:example:complies'('urn:example:carol4834', false)). +answer('urn:example:complies'('urn:example:carol4835', false)). +answer('urn:example:complies'('urn:example:carol4836', false)). +answer('urn:example:complies'('urn:example:carol4837', false)). +answer('urn:example:complies'('urn:example:carol4838', false)). +answer('urn:example:complies'('urn:example:carol4839', false)). +answer('urn:example:complies'('urn:example:carol4840', false)). +answer('urn:example:complies'('urn:example:carol4841', false)). +answer('urn:example:complies'('urn:example:carol4842', false)). +answer('urn:example:complies'('urn:example:carol4843', false)). +answer('urn:example:complies'('urn:example:carol4844', false)). +answer('urn:example:complies'('urn:example:carol4845', false)). +answer('urn:example:complies'('urn:example:carol4846', false)). +answer('urn:example:complies'('urn:example:carol4847', false)). +answer('urn:example:complies'('urn:example:carol4848', false)). +answer('urn:example:complies'('urn:example:carol4849', false)). +answer('urn:example:complies'('urn:example:carol4850', false)). +answer('urn:example:complies'('urn:example:carol4851', false)). +answer('urn:example:complies'('urn:example:carol4852', false)). +answer('urn:example:complies'('urn:example:carol4853', false)). +answer('urn:example:complies'('urn:example:carol4854', false)). +answer('urn:example:complies'('urn:example:carol4855', false)). +answer('urn:example:complies'('urn:example:carol4856', false)). +answer('urn:example:complies'('urn:example:carol4857', false)). +answer('urn:example:complies'('urn:example:carol4858', false)). +answer('urn:example:complies'('urn:example:carol4859', false)). +answer('urn:example:complies'('urn:example:carol4860', false)). +answer('urn:example:complies'('urn:example:carol4861', false)). +answer('urn:example:complies'('urn:example:carol4862', false)). +answer('urn:example:complies'('urn:example:carol4863', false)). +answer('urn:example:complies'('urn:example:carol4864', false)). +answer('urn:example:complies'('urn:example:carol4865', false)). +answer('urn:example:complies'('urn:example:carol4866', false)). +answer('urn:example:complies'('urn:example:carol4867', false)). +answer('urn:example:complies'('urn:example:carol4868', false)). +answer('urn:example:complies'('urn:example:carol4869', false)). +answer('urn:example:complies'('urn:example:carol4870', false)). +answer('urn:example:complies'('urn:example:carol4871', false)). +answer('urn:example:complies'('urn:example:carol4872', false)). +answer('urn:example:complies'('urn:example:carol4873', false)). +answer('urn:example:complies'('urn:example:carol4874', false)). +answer('urn:example:complies'('urn:example:carol4875', false)). +answer('urn:example:complies'('urn:example:carol4876', false)). +answer('urn:example:complies'('urn:example:carol4877', false)). +answer('urn:example:complies'('urn:example:carol4878', false)). +answer('urn:example:complies'('urn:example:carol4879', false)). +answer('urn:example:complies'('urn:example:carol4880', false)). +answer('urn:example:complies'('urn:example:carol4881', false)). +answer('urn:example:complies'('urn:example:carol4882', false)). +answer('urn:example:complies'('urn:example:carol4883', false)). +answer('urn:example:complies'('urn:example:carol4884', false)). +answer('urn:example:complies'('urn:example:carol4885', false)). +answer('urn:example:complies'('urn:example:carol4886', false)). +answer('urn:example:complies'('urn:example:carol4887', false)). +answer('urn:example:complies'('urn:example:carol4888', false)). +answer('urn:example:complies'('urn:example:carol4889', false)). +answer('urn:example:complies'('urn:example:carol4890', false)). +answer('urn:example:complies'('urn:example:carol4891', false)). +answer('urn:example:complies'('urn:example:carol4892', false)). +answer('urn:example:complies'('urn:example:carol4893', false)). +answer('urn:example:complies'('urn:example:carol4894', false)). +answer('urn:example:complies'('urn:example:carol4895', false)). +answer('urn:example:complies'('urn:example:carol4896', false)). +answer('urn:example:complies'('urn:example:carol4897', false)). +answer('urn:example:complies'('urn:example:carol4898', false)). +answer('urn:example:complies'('urn:example:carol4899', false)). +answer('urn:example:complies'('urn:example:carol4900', false)). +answer('urn:example:complies'('urn:example:carol4901', false)). +answer('urn:example:complies'('urn:example:carol4902', false)). +answer('urn:example:complies'('urn:example:carol4903', false)). +answer('urn:example:complies'('urn:example:carol4904', false)). +answer('urn:example:complies'('urn:example:carol4905', false)). +answer('urn:example:complies'('urn:example:carol4906', false)). +answer('urn:example:complies'('urn:example:carol4907', false)). +answer('urn:example:complies'('urn:example:carol4908', false)). +answer('urn:example:complies'('urn:example:carol4909', false)). +answer('urn:example:complies'('urn:example:carol4910', false)). +answer('urn:example:complies'('urn:example:carol4911', false)). +answer('urn:example:complies'('urn:example:carol4912', false)). +answer('urn:example:complies'('urn:example:carol4913', false)). +answer('urn:example:complies'('urn:example:carol4914', false)). +answer('urn:example:complies'('urn:example:carol4915', false)). +answer('urn:example:complies'('urn:example:carol4916', false)). +answer('urn:example:complies'('urn:example:carol4917', false)). +answer('urn:example:complies'('urn:example:carol4918', false)). +answer('urn:example:complies'('urn:example:carol4919', false)). +answer('urn:example:complies'('urn:example:carol4920', false)). +answer('urn:example:complies'('urn:example:carol4921', false)). +answer('urn:example:complies'('urn:example:carol4922', false)). +answer('urn:example:complies'('urn:example:carol4923', false)). +answer('urn:example:complies'('urn:example:carol4924', false)). +answer('urn:example:complies'('urn:example:carol4925', false)). +answer('urn:example:complies'('urn:example:carol4926', false)). +answer('urn:example:complies'('urn:example:carol4927', false)). +answer('urn:example:complies'('urn:example:carol4928', false)). +answer('urn:example:complies'('urn:example:carol4929', false)). +answer('urn:example:complies'('urn:example:carol4930', false)). +answer('urn:example:complies'('urn:example:carol4931', false)). +answer('urn:example:complies'('urn:example:carol4932', false)). +answer('urn:example:complies'('urn:example:carol4933', false)). +answer('urn:example:complies'('urn:example:carol4934', false)). +answer('urn:example:complies'('urn:example:carol4935', false)). +answer('urn:example:complies'('urn:example:carol4936', false)). +answer('urn:example:complies'('urn:example:carol4937', false)). +answer('urn:example:complies'('urn:example:carol4938', false)). +answer('urn:example:complies'('urn:example:carol4939', false)). +answer('urn:example:complies'('urn:example:carol4940', false)). +answer('urn:example:complies'('urn:example:carol4941', false)). +answer('urn:example:complies'('urn:example:carol4942', false)). +answer('urn:example:complies'('urn:example:carol4943', false)). +answer('urn:example:complies'('urn:example:carol4944', false)). +answer('urn:example:complies'('urn:example:carol4945', false)). +answer('urn:example:complies'('urn:example:carol4946', false)). +answer('urn:example:complies'('urn:example:carol4947', false)). +answer('urn:example:complies'('urn:example:carol4948', false)). +answer('urn:example:complies'('urn:example:carol4949', false)). +answer('urn:example:complies'('urn:example:carol4950', false)). +answer('urn:example:complies'('urn:example:carol4951', false)). +answer('urn:example:complies'('urn:example:carol4952', false)). +answer('urn:example:complies'('urn:example:carol4953', false)). +answer('urn:example:complies'('urn:example:carol4954', false)). +answer('urn:example:complies'('urn:example:carol4955', false)). +answer('urn:example:complies'('urn:example:carol4956', false)). +answer('urn:example:complies'('urn:example:carol4957', false)). +answer('urn:example:complies'('urn:example:carol4958', false)). +answer('urn:example:complies'('urn:example:carol4959', false)). +answer('urn:example:complies'('urn:example:carol4960', false)). +answer('urn:example:complies'('urn:example:carol4961', false)). +answer('urn:example:complies'('urn:example:carol4962', false)). +answer('urn:example:complies'('urn:example:carol4963', false)). +answer('urn:example:complies'('urn:example:carol4964', false)). +answer('urn:example:complies'('urn:example:carol4965', false)). +answer('urn:example:complies'('urn:example:carol4966', false)). +answer('urn:example:complies'('urn:example:carol4967', false)). +answer('urn:example:complies'('urn:example:carol4968', false)). +answer('urn:example:complies'('urn:example:carol4969', false)). +answer('urn:example:complies'('urn:example:carol4970', false)). +answer('urn:example:complies'('urn:example:carol4971', false)). +answer('urn:example:complies'('urn:example:carol4972', false)). +answer('urn:example:complies'('urn:example:carol4973', false)). +answer('urn:example:complies'('urn:example:carol4974', false)). +answer('urn:example:complies'('urn:example:carol4975', false)). +answer('urn:example:complies'('urn:example:carol4976', false)). +answer('urn:example:complies'('urn:example:carol4977', false)). +answer('urn:example:complies'('urn:example:carol4978', false)). +answer('urn:example:complies'('urn:example:carol4979', false)). +answer('urn:example:complies'('urn:example:carol4980', false)). +answer('urn:example:complies'('urn:example:carol4981', false)). +answer('urn:example:complies'('urn:example:carol4982', false)). +answer('urn:example:complies'('urn:example:carol4983', false)). +answer('urn:example:complies'('urn:example:carol4984', false)). +answer('urn:example:complies'('urn:example:carol4985', false)). +answer('urn:example:complies'('urn:example:carol4986', false)). +answer('urn:example:complies'('urn:example:carol4987', false)). +answer('urn:example:complies'('urn:example:carol4988', false)). +answer('urn:example:complies'('urn:example:carol4989', false)). +answer('urn:example:complies'('urn:example:carol4990', false)). +answer('urn:example:complies'('urn:example:carol4991', false)). +answer('urn:example:complies'('urn:example:carol4992', false)). +answer('urn:example:complies'('urn:example:carol4993', false)). +answer('urn:example:complies'('urn:example:carol4994', false)). +answer('urn:example:complies'('urn:example:carol4995', false)). +answer('urn:example:complies'('urn:example:carol4996', false)). +answer('urn:example:complies'('urn:example:carol4997', false)). +answer('urn:example:complies'('urn:example:carol4998', false)). +answer('urn:example:complies'('urn:example:carol4999', false)). +answer('urn:example:complies'('urn:example:carol5000', false)). +answer('urn:example:complies'('urn:example:carol5001', false)). +answer('urn:example:complies'('urn:example:carol5002', false)). +answer('urn:example:complies'('urn:example:carol5003', false)). +answer('urn:example:complies'('urn:example:carol5004', false)). +answer('urn:example:complies'('urn:example:carol5005', false)). +answer('urn:example:complies'('urn:example:carol5006', false)). +answer('urn:example:complies'('urn:example:carol5007', false)). +answer('urn:example:complies'('urn:example:carol5008', false)). +answer('urn:example:complies'('urn:example:carol5009', false)). +answer('urn:example:complies'('urn:example:carol5010', false)). +answer('urn:example:complies'('urn:example:carol5011', false)). +answer('urn:example:complies'('urn:example:carol5012', false)). +answer('urn:example:complies'('urn:example:carol5013', false)). +answer('urn:example:complies'('urn:example:carol5014', false)). +answer('urn:example:complies'('urn:example:carol5015', false)). +answer('urn:example:complies'('urn:example:carol5016', false)). +answer('urn:example:complies'('urn:example:carol5017', false)). +answer('urn:example:complies'('urn:example:carol5018', false)). +answer('urn:example:complies'('urn:example:carol5019', false)). +answer('urn:example:complies'('urn:example:carol5020', false)). +answer('urn:example:complies'('urn:example:carol5021', false)). +answer('urn:example:complies'('urn:example:carol5022', false)). +answer('urn:example:complies'('urn:example:carol5023', false)). +answer('urn:example:complies'('urn:example:carol5024', false)). +answer('urn:example:complies'('urn:example:carol5025', false)). +answer('urn:example:complies'('urn:example:carol5026', false)). +answer('urn:example:complies'('urn:example:carol5027', false)). +answer('urn:example:complies'('urn:example:carol5028', false)). +answer('urn:example:complies'('urn:example:carol5029', false)). +answer('urn:example:complies'('urn:example:carol5030', false)). +answer('urn:example:complies'('urn:example:carol5031', false)). +answer('urn:example:complies'('urn:example:carol5032', false)). +answer('urn:example:complies'('urn:example:carol5033', false)). +answer('urn:example:complies'('urn:example:carol5034', false)). +answer('urn:example:complies'('urn:example:carol5035', false)). +answer('urn:example:complies'('urn:example:carol5036', false)). +answer('urn:example:complies'('urn:example:carol5037', false)). +answer('urn:example:complies'('urn:example:carol5038', false)). +answer('urn:example:complies'('urn:example:carol5039', false)). +answer('urn:example:complies'('urn:example:carol5040', false)). +answer('urn:example:complies'('urn:example:carol5041', false)). +answer('urn:example:complies'('urn:example:carol5042', false)). +answer('urn:example:complies'('urn:example:carol5043', false)). +answer('urn:example:complies'('urn:example:carol5044', false)). +answer('urn:example:complies'('urn:example:carol5045', false)). +answer('urn:example:complies'('urn:example:carol5046', false)). +answer('urn:example:complies'('urn:example:carol5047', false)). +answer('urn:example:complies'('urn:example:carol5048', false)). +answer('urn:example:complies'('urn:example:carol5049', false)). +answer('urn:example:complies'('urn:example:carol5050', false)). +answer('urn:example:complies'('urn:example:carol5051', false)). +answer('urn:example:complies'('urn:example:carol5052', false)). +answer('urn:example:complies'('urn:example:carol5053', false)). +answer('urn:example:complies'('urn:example:carol5054', false)). +answer('urn:example:complies'('urn:example:carol5055', false)). +answer('urn:example:complies'('urn:example:carol5056', false)). +answer('urn:example:complies'('urn:example:carol5057', false)). +answer('urn:example:complies'('urn:example:carol5058', false)). +answer('urn:example:complies'('urn:example:carol5059', false)). +answer('urn:example:complies'('urn:example:carol5060', false)). +answer('urn:example:complies'('urn:example:carol5061', false)). +answer('urn:example:complies'('urn:example:carol5062', false)). +answer('urn:example:complies'('urn:example:carol5063', false)). +answer('urn:example:complies'('urn:example:carol5064', false)). +answer('urn:example:complies'('urn:example:carol5065', false)). +answer('urn:example:complies'('urn:example:carol5066', false)). +answer('urn:example:complies'('urn:example:carol5067', false)). +answer('urn:example:complies'('urn:example:carol5068', false)). +answer('urn:example:complies'('urn:example:carol5069', false)). +answer('urn:example:complies'('urn:example:carol5070', false)). +answer('urn:example:complies'('urn:example:carol5071', false)). +answer('urn:example:complies'('urn:example:carol5072', false)). +answer('urn:example:complies'('urn:example:carol5073', false)). +answer('urn:example:complies'('urn:example:carol5074', false)). +answer('urn:example:complies'('urn:example:carol5075', false)). +answer('urn:example:complies'('urn:example:carol5076', false)). +answer('urn:example:complies'('urn:example:carol5077', false)). +answer('urn:example:complies'('urn:example:carol5078', false)). +answer('urn:example:complies'('urn:example:carol5079', false)). +answer('urn:example:complies'('urn:example:carol5080', false)). +answer('urn:example:complies'('urn:example:carol5081', false)). +answer('urn:example:complies'('urn:example:carol5082', false)). +answer('urn:example:complies'('urn:example:carol5083', false)). +answer('urn:example:complies'('urn:example:carol5084', false)). +answer('urn:example:complies'('urn:example:carol5085', false)). +answer('urn:example:complies'('urn:example:carol5086', false)). +answer('urn:example:complies'('urn:example:carol5087', false)). +answer('urn:example:complies'('urn:example:carol5088', false)). +answer('urn:example:complies'('urn:example:carol5089', false)). +answer('urn:example:complies'('urn:example:carol5090', false)). +answer('urn:example:complies'('urn:example:carol5091', false)). +answer('urn:example:complies'('urn:example:carol5092', false)). +answer('urn:example:complies'('urn:example:carol5093', false)). +answer('urn:example:complies'('urn:example:carol5094', false)). +answer('urn:example:complies'('urn:example:carol5095', false)). +answer('urn:example:complies'('urn:example:carol5096', false)). +answer('urn:example:complies'('urn:example:carol5097', false)). +answer('urn:example:complies'('urn:example:carol5098', false)). +answer('urn:example:complies'('urn:example:carol5099', false)). +answer('urn:example:complies'('urn:example:carol5100', false)). +answer('urn:example:complies'('urn:example:carol5101', false)). +answer('urn:example:complies'('urn:example:carol5102', false)). +answer('urn:example:complies'('urn:example:carol5103', false)). +answer('urn:example:complies'('urn:example:carol5104', false)). +answer('urn:example:complies'('urn:example:carol5105', false)). +answer('urn:example:complies'('urn:example:carol5106', false)). +answer('urn:example:complies'('urn:example:carol5107', false)). +answer('urn:example:complies'('urn:example:carol5108', false)). +answer('urn:example:complies'('urn:example:carol5109', false)). +answer('urn:example:complies'('urn:example:carol5110', false)). +answer('urn:example:complies'('urn:example:carol5111', false)). +answer('urn:example:complies'('urn:example:carol5112', false)). +answer('urn:example:complies'('urn:example:carol5113', false)). +answer('urn:example:complies'('urn:example:carol5114', false)). +answer('urn:example:complies'('urn:example:carol5115', false)). +answer('urn:example:complies'('urn:example:carol5116', false)). +answer('urn:example:complies'('urn:example:carol5117', false)). +answer('urn:example:complies'('urn:example:carol5118', false)). +answer('urn:example:complies'('urn:example:carol5119', false)). +answer('urn:example:complies'('urn:example:carol5120', false)). +answer('urn:example:complies'('urn:example:carol5121', false)). +answer('urn:example:complies'('urn:example:carol5122', false)). +answer('urn:example:complies'('urn:example:carol5123', false)). +answer('urn:example:complies'('urn:example:carol5124', false)). +answer('urn:example:complies'('urn:example:carol5125', false)). +answer('urn:example:complies'('urn:example:carol5126', false)). +answer('urn:example:complies'('urn:example:carol5127', false)). +answer('urn:example:complies'('urn:example:carol5128', false)). +answer('urn:example:complies'('urn:example:carol5129', false)). +answer('urn:example:complies'('urn:example:carol5130', false)). +answer('urn:example:complies'('urn:example:carol5131', false)). +answer('urn:example:complies'('urn:example:carol5132', false)). +answer('urn:example:complies'('urn:example:carol5133', false)). +answer('urn:example:complies'('urn:example:carol5134', false)). +answer('urn:example:complies'('urn:example:carol5135', false)). +answer('urn:example:complies'('urn:example:carol5136', false)). +answer('urn:example:complies'('urn:example:carol5137', false)). +answer('urn:example:complies'('urn:example:carol5138', false)). +answer('urn:example:complies'('urn:example:carol5139', false)). +answer('urn:example:complies'('urn:example:carol5140', false)). +answer('urn:example:complies'('urn:example:carol5141', false)). +answer('urn:example:complies'('urn:example:carol5142', false)). +answer('urn:example:complies'('urn:example:carol5143', false)). +answer('urn:example:complies'('urn:example:carol5144', false)). +answer('urn:example:complies'('urn:example:carol5145', false)). +answer('urn:example:complies'('urn:example:carol5146', false)). +answer('urn:example:complies'('urn:example:carol5147', false)). +answer('urn:example:complies'('urn:example:carol5148', false)). +answer('urn:example:complies'('urn:example:carol5149', false)). +answer('urn:example:complies'('urn:example:carol5150', false)). +answer('urn:example:complies'('urn:example:carol5151', false)). +answer('urn:example:complies'('urn:example:carol5152', false)). +answer('urn:example:complies'('urn:example:carol5153', false)). +answer('urn:example:complies'('urn:example:carol5154', false)). +answer('urn:example:complies'('urn:example:carol5155', false)). +answer('urn:example:complies'('urn:example:carol5156', false)). +answer('urn:example:complies'('urn:example:carol5157', false)). +answer('urn:example:complies'('urn:example:carol5158', false)). +answer('urn:example:complies'('urn:example:carol5159', false)). +answer('urn:example:complies'('urn:example:carol5160', false)). +answer('urn:example:complies'('urn:example:carol5161', false)). +answer('urn:example:complies'('urn:example:carol5162', false)). +answer('urn:example:complies'('urn:example:carol5163', false)). +answer('urn:example:complies'('urn:example:carol5164', false)). +answer('urn:example:complies'('urn:example:carol5165', false)). +answer('urn:example:complies'('urn:example:carol5166', false)). +answer('urn:example:complies'('urn:example:carol5167', false)). +answer('urn:example:complies'('urn:example:carol5168', false)). +answer('urn:example:complies'('urn:example:carol5169', false)). +answer('urn:example:complies'('urn:example:carol5170', false)). +answer('urn:example:complies'('urn:example:carol5171', false)). +answer('urn:example:complies'('urn:example:carol5172', false)). +answer('urn:example:complies'('urn:example:carol5173', false)). +answer('urn:example:complies'('urn:example:carol5174', false)). +answer('urn:example:complies'('urn:example:carol5175', false)). +answer('urn:example:complies'('urn:example:carol5176', false)). +answer('urn:example:complies'('urn:example:carol5177', false)). +answer('urn:example:complies'('urn:example:carol5178', false)). +answer('urn:example:complies'('urn:example:carol5179', false)). +answer('urn:example:complies'('urn:example:carol5180', false)). +answer('urn:example:complies'('urn:example:carol5181', false)). +answer('urn:example:complies'('urn:example:carol5182', false)). +answer('urn:example:complies'('urn:example:carol5183', false)). +answer('urn:example:complies'('urn:example:carol5184', false)). +answer('urn:example:complies'('urn:example:carol5185', false)). +answer('urn:example:complies'('urn:example:carol5186', false)). +answer('urn:example:complies'('urn:example:carol5187', false)). +answer('urn:example:complies'('urn:example:carol5188', false)). +answer('urn:example:complies'('urn:example:carol5189', false)). +answer('urn:example:complies'('urn:example:carol5190', false)). +answer('urn:example:complies'('urn:example:carol5191', false)). +answer('urn:example:complies'('urn:example:carol5192', false)). +answer('urn:example:complies'('urn:example:carol5193', false)). +answer('urn:example:complies'('urn:example:carol5194', false)). +answer('urn:example:complies'('urn:example:carol5195', false)). +answer('urn:example:complies'('urn:example:carol5196', false)). +answer('urn:example:complies'('urn:example:carol5197', false)). +answer('urn:example:complies'('urn:example:carol5198', false)). +answer('urn:example:complies'('urn:example:carol5199', false)). +answer('urn:example:complies'('urn:example:carol5200', false)). +answer('urn:example:complies'('urn:example:carol5201', false)). +answer('urn:example:complies'('urn:example:carol5202', false)). +answer('urn:example:complies'('urn:example:carol5203', false)). +answer('urn:example:complies'('urn:example:carol5204', false)). +answer('urn:example:complies'('urn:example:carol5205', false)). +answer('urn:example:complies'('urn:example:carol5206', false)). +answer('urn:example:complies'('urn:example:carol5207', false)). +answer('urn:example:complies'('urn:example:carol5208', false)). +answer('urn:example:complies'('urn:example:carol5209', false)). +answer('urn:example:complies'('urn:example:carol5210', false)). +answer('urn:example:complies'('urn:example:carol5211', false)). +answer('urn:example:complies'('urn:example:carol5212', false)). +answer('urn:example:complies'('urn:example:carol5213', false)). +answer('urn:example:complies'('urn:example:carol5214', false)). +answer('urn:example:complies'('urn:example:carol5215', false)). +answer('urn:example:complies'('urn:example:carol5216', false)). +answer('urn:example:complies'('urn:example:carol5217', false)). +answer('urn:example:complies'('urn:example:carol5218', false)). +answer('urn:example:complies'('urn:example:carol5219', false)). +answer('urn:example:complies'('urn:example:carol5220', false)). +answer('urn:example:complies'('urn:example:carol5221', false)). +answer('urn:example:complies'('urn:example:carol5222', false)). +answer('urn:example:complies'('urn:example:carol5223', false)). +answer('urn:example:complies'('urn:example:carol5224', false)). +answer('urn:example:complies'('urn:example:carol5225', false)). +answer('urn:example:complies'('urn:example:carol5226', false)). +answer('urn:example:complies'('urn:example:carol5227', false)). +answer('urn:example:complies'('urn:example:carol5228', false)). +answer('urn:example:complies'('urn:example:carol5229', false)). +answer('urn:example:complies'('urn:example:carol5230', false)). +answer('urn:example:complies'('urn:example:carol5231', false)). +answer('urn:example:complies'('urn:example:carol5232', false)). +answer('urn:example:complies'('urn:example:carol5233', false)). +answer('urn:example:complies'('urn:example:carol5234', false)). +answer('urn:example:complies'('urn:example:carol5235', false)). +answer('urn:example:complies'('urn:example:carol5236', false)). +answer('urn:example:complies'('urn:example:carol5237', false)). +answer('urn:example:complies'('urn:example:carol5238', false)). +answer('urn:example:complies'('urn:example:carol5239', false)). +answer('urn:example:complies'('urn:example:carol5240', false)). +answer('urn:example:complies'('urn:example:carol5241', false)). +answer('urn:example:complies'('urn:example:carol5242', false)). +answer('urn:example:complies'('urn:example:carol5243', false)). +answer('urn:example:complies'('urn:example:carol5244', false)). +answer('urn:example:complies'('urn:example:carol5245', false)). +answer('urn:example:complies'('urn:example:carol5246', false)). +answer('urn:example:complies'('urn:example:carol5247', false)). +answer('urn:example:complies'('urn:example:carol5248', false)). +answer('urn:example:complies'('urn:example:carol5249', false)). +answer('urn:example:complies'('urn:example:carol5250', false)). +answer('urn:example:complies'('urn:example:carol5251', false)). +answer('urn:example:complies'('urn:example:carol5252', false)). +answer('urn:example:complies'('urn:example:carol5253', false)). +answer('urn:example:complies'('urn:example:carol5254', false)). +answer('urn:example:complies'('urn:example:carol5255', false)). +answer('urn:example:complies'('urn:example:carol5256', false)). +answer('urn:example:complies'('urn:example:carol5257', false)). +answer('urn:example:complies'('urn:example:carol5258', false)). +answer('urn:example:complies'('urn:example:carol5259', false)). +answer('urn:example:complies'('urn:example:carol5260', false)). +answer('urn:example:complies'('urn:example:carol5261', false)). +answer('urn:example:complies'('urn:example:carol5262', false)). +answer('urn:example:complies'('urn:example:carol5263', false)). +answer('urn:example:complies'('urn:example:carol5264', false)). +answer('urn:example:complies'('urn:example:carol5265', false)). +answer('urn:example:complies'('urn:example:carol5266', false)). +answer('urn:example:complies'('urn:example:carol5267', false)). +answer('urn:example:complies'('urn:example:carol5268', false)). +answer('urn:example:complies'('urn:example:carol5269', false)). +answer('urn:example:complies'('urn:example:carol5270', false)). +answer('urn:example:complies'('urn:example:carol5271', false)). +answer('urn:example:complies'('urn:example:carol5272', false)). +answer('urn:example:complies'('urn:example:carol5273', false)). +answer('urn:example:complies'('urn:example:carol5274', false)). +answer('urn:example:complies'('urn:example:carol5275', false)). +answer('urn:example:complies'('urn:example:carol5276', false)). +answer('urn:example:complies'('urn:example:carol5277', false)). +answer('urn:example:complies'('urn:example:carol5278', false)). +answer('urn:example:complies'('urn:example:carol5279', false)). +answer('urn:example:complies'('urn:example:carol5280', false)). +answer('urn:example:complies'('urn:example:carol5281', false)). +answer('urn:example:complies'('urn:example:carol5282', false)). +answer('urn:example:complies'('urn:example:carol5283', false)). +answer('urn:example:complies'('urn:example:carol5284', false)). +answer('urn:example:complies'('urn:example:carol5285', false)). +answer('urn:example:complies'('urn:example:carol5286', false)). +answer('urn:example:complies'('urn:example:carol5287', false)). +answer('urn:example:complies'('urn:example:carol5288', false)). +answer('urn:example:complies'('urn:example:carol5289', false)). +answer('urn:example:complies'('urn:example:carol5290', false)). +answer('urn:example:complies'('urn:example:carol5291', false)). +answer('urn:example:complies'('urn:example:carol5292', false)). +answer('urn:example:complies'('urn:example:carol5293', false)). +answer('urn:example:complies'('urn:example:carol5294', false)). +answer('urn:example:complies'('urn:example:carol5295', false)). +answer('urn:example:complies'('urn:example:carol5296', false)). +answer('urn:example:complies'('urn:example:carol5297', false)). +answer('urn:example:complies'('urn:example:carol5298', false)). +answer('urn:example:complies'('urn:example:carol5299', false)). +answer('urn:example:complies'('urn:example:carol5300', false)). +answer('urn:example:complies'('urn:example:carol5301', false)). +answer('urn:example:complies'('urn:example:carol5302', false)). +answer('urn:example:complies'('urn:example:carol5303', false)). +answer('urn:example:complies'('urn:example:carol5304', false)). +answer('urn:example:complies'('urn:example:carol5305', false)). +answer('urn:example:complies'('urn:example:carol5306', false)). +answer('urn:example:complies'('urn:example:carol5307', false)). +answer('urn:example:complies'('urn:example:carol5308', false)). +answer('urn:example:complies'('urn:example:carol5309', false)). +answer('urn:example:complies'('urn:example:carol5310', false)). +answer('urn:example:complies'('urn:example:carol5311', false)). +answer('urn:example:complies'('urn:example:carol5312', false)). +answer('urn:example:complies'('urn:example:carol5313', false)). +answer('urn:example:complies'('urn:example:carol5314', false)). +answer('urn:example:complies'('urn:example:carol5315', false)). +answer('urn:example:complies'('urn:example:carol5316', false)). +answer('urn:example:complies'('urn:example:carol5317', false)). +answer('urn:example:complies'('urn:example:carol5318', false)). +answer('urn:example:complies'('urn:example:carol5319', false)). +answer('urn:example:complies'('urn:example:carol5320', false)). +answer('urn:example:complies'('urn:example:carol5321', false)). +answer('urn:example:complies'('urn:example:carol5322', false)). +answer('urn:example:complies'('urn:example:carol5323', false)). +answer('urn:example:complies'('urn:example:carol5324', false)). +answer('urn:example:complies'('urn:example:carol5325', false)). +answer('urn:example:complies'('urn:example:carol5326', false)). +answer('urn:example:complies'('urn:example:carol5327', false)). +answer('urn:example:complies'('urn:example:carol5328', false)). +answer('urn:example:complies'('urn:example:carol5329', false)). +answer('urn:example:complies'('urn:example:carol5330', false)). +answer('urn:example:complies'('urn:example:carol5331', false)). +answer('urn:example:complies'('urn:example:carol5332', false)). +answer('urn:example:complies'('urn:example:carol5333', false)). +answer('urn:example:complies'('urn:example:carol5334', false)). +answer('urn:example:complies'('urn:example:carol5335', false)). +answer('urn:example:complies'('urn:example:carol5336', false)). +answer('urn:example:complies'('urn:example:carol5337', false)). +answer('urn:example:complies'('urn:example:carol5338', false)). +answer('urn:example:complies'('urn:example:carol5339', false)). +answer('urn:example:complies'('urn:example:carol5340', false)). +answer('urn:example:complies'('urn:example:carol5341', false)). +answer('urn:example:complies'('urn:example:carol5342', false)). +answer('urn:example:complies'('urn:example:carol5343', false)). +answer('urn:example:complies'('urn:example:carol5344', false)). +answer('urn:example:complies'('urn:example:carol5345', false)). +answer('urn:example:complies'('urn:example:carol5346', false)). +answer('urn:example:complies'('urn:example:carol5347', false)). +answer('urn:example:complies'('urn:example:carol5348', false)). +answer('urn:example:complies'('urn:example:carol5349', false)). +answer('urn:example:complies'('urn:example:carol5350', false)). +answer('urn:example:complies'('urn:example:carol5351', false)). +answer('urn:example:complies'('urn:example:carol5352', false)). +answer('urn:example:complies'('urn:example:carol5353', false)). +answer('urn:example:complies'('urn:example:carol5354', false)). +answer('urn:example:complies'('urn:example:carol5355', false)). +answer('urn:example:complies'('urn:example:carol5356', false)). +answer('urn:example:complies'('urn:example:carol5357', false)). +answer('urn:example:complies'('urn:example:carol5358', false)). +answer('urn:example:complies'('urn:example:carol5359', false)). +answer('urn:example:complies'('urn:example:carol5360', false)). +answer('urn:example:complies'('urn:example:carol5361', false)). +answer('urn:example:complies'('urn:example:carol5362', false)). +answer('urn:example:complies'('urn:example:carol5363', false)). +answer('urn:example:complies'('urn:example:carol5364', false)). +answer('urn:example:complies'('urn:example:carol5365', false)). +answer('urn:example:complies'('urn:example:carol5366', false)). +answer('urn:example:complies'('urn:example:carol5367', false)). +answer('urn:example:complies'('urn:example:carol5368', false)). +answer('urn:example:complies'('urn:example:carol5369', false)). +answer('urn:example:complies'('urn:example:carol5370', false)). +answer('urn:example:complies'('urn:example:carol5371', false)). +answer('urn:example:complies'('urn:example:carol5372', false)). +answer('urn:example:complies'('urn:example:carol5373', false)). +answer('urn:example:complies'('urn:example:carol5374', false)). +answer('urn:example:complies'('urn:example:carol5375', false)). +answer('urn:example:complies'('urn:example:carol5376', false)). +answer('urn:example:complies'('urn:example:carol5377', false)). +answer('urn:example:complies'('urn:example:carol5378', false)). +answer('urn:example:complies'('urn:example:carol5379', false)). +answer('urn:example:complies'('urn:example:carol5380', false)). +answer('urn:example:complies'('urn:example:carol5381', false)). +answer('urn:example:complies'('urn:example:carol5382', false)). +answer('urn:example:complies'('urn:example:carol5383', false)). +answer('urn:example:complies'('urn:example:carol5384', false)). +answer('urn:example:complies'('urn:example:carol5385', false)). +answer('urn:example:complies'('urn:example:carol5386', false)). +answer('urn:example:complies'('urn:example:carol5387', false)). +answer('urn:example:complies'('urn:example:carol5388', false)). +answer('urn:example:complies'('urn:example:carol5389', false)). +answer('urn:example:complies'('urn:example:carol5390', false)). +answer('urn:example:complies'('urn:example:carol5391', false)). +answer('urn:example:complies'('urn:example:carol5392', false)). +answer('urn:example:complies'('urn:example:carol5393', false)). +answer('urn:example:complies'('urn:example:carol5394', false)). +answer('urn:example:complies'('urn:example:carol5395', false)). +answer('urn:example:complies'('urn:example:carol5396', false)). +answer('urn:example:complies'('urn:example:carol5397', false)). +answer('urn:example:complies'('urn:example:carol5398', false)). +answer('urn:example:complies'('urn:example:carol5399', false)). +answer('urn:example:complies'('urn:example:carol5400', false)). +answer('urn:example:complies'('urn:example:carol5401', false)). +answer('urn:example:complies'('urn:example:carol5402', false)). +answer('urn:example:complies'('urn:example:carol5403', false)). +answer('urn:example:complies'('urn:example:carol5404', false)). +answer('urn:example:complies'('urn:example:carol5405', false)). +answer('urn:example:complies'('urn:example:carol5406', false)). +answer('urn:example:complies'('urn:example:carol5407', false)). +answer('urn:example:complies'('urn:example:carol5408', false)). +answer('urn:example:complies'('urn:example:carol5409', false)). +answer('urn:example:complies'('urn:example:carol5410', false)). +answer('urn:example:complies'('urn:example:carol5411', false)). +answer('urn:example:complies'('urn:example:carol5412', false)). +answer('urn:example:complies'('urn:example:carol5413', false)). +answer('urn:example:complies'('urn:example:carol5414', false)). +answer('urn:example:complies'('urn:example:carol5415', false)). +answer('urn:example:complies'('urn:example:carol5416', false)). +answer('urn:example:complies'('urn:example:carol5417', false)). +answer('urn:example:complies'('urn:example:carol5418', false)). +answer('urn:example:complies'('urn:example:carol5419', false)). +answer('urn:example:complies'('urn:example:carol5420', false)). +answer('urn:example:complies'('urn:example:carol5421', false)). +answer('urn:example:complies'('urn:example:carol5422', false)). +answer('urn:example:complies'('urn:example:carol5423', false)). +answer('urn:example:complies'('urn:example:carol5424', false)). +answer('urn:example:complies'('urn:example:carol5425', false)). +answer('urn:example:complies'('urn:example:carol5426', false)). +answer('urn:example:complies'('urn:example:carol5427', false)). +answer('urn:example:complies'('urn:example:carol5428', false)). +answer('urn:example:complies'('urn:example:carol5429', false)). +answer('urn:example:complies'('urn:example:carol5430', false)). +answer('urn:example:complies'('urn:example:carol5431', false)). +answer('urn:example:complies'('urn:example:carol5432', false)). +answer('urn:example:complies'('urn:example:carol5433', false)). +answer('urn:example:complies'('urn:example:carol5434', false)). +answer('urn:example:complies'('urn:example:carol5435', false)). +answer('urn:example:complies'('urn:example:carol5436', false)). +answer('urn:example:complies'('urn:example:carol5437', false)). +answer('urn:example:complies'('urn:example:carol5438', false)). +answer('urn:example:complies'('urn:example:carol5439', false)). +answer('urn:example:complies'('urn:example:carol5440', false)). +answer('urn:example:complies'('urn:example:carol5441', false)). +answer('urn:example:complies'('urn:example:carol5442', false)). +answer('urn:example:complies'('urn:example:carol5443', false)). +answer('urn:example:complies'('urn:example:carol5444', false)). +answer('urn:example:complies'('urn:example:carol5445', false)). +answer('urn:example:complies'('urn:example:carol5446', false)). +answer('urn:example:complies'('urn:example:carol5447', false)). +answer('urn:example:complies'('urn:example:carol5448', false)). +answer('urn:example:complies'('urn:example:carol5449', false)). +answer('urn:example:complies'('urn:example:carol5450', false)). +answer('urn:example:complies'('urn:example:carol5451', false)). +answer('urn:example:complies'('urn:example:carol5452', false)). +answer('urn:example:complies'('urn:example:carol5453', false)). +answer('urn:example:complies'('urn:example:carol5454', false)). +answer('urn:example:complies'('urn:example:carol5455', false)). +answer('urn:example:complies'('urn:example:carol5456', false)). +answer('urn:example:complies'('urn:example:carol5457', false)). +answer('urn:example:complies'('urn:example:carol5458', false)). +answer('urn:example:complies'('urn:example:carol5459', false)). +answer('urn:example:complies'('urn:example:carol5460', false)). +answer('urn:example:complies'('urn:example:carol5461', false)). +answer('urn:example:complies'('urn:example:carol5462', false)). +answer('urn:example:complies'('urn:example:carol5463', false)). +answer('urn:example:complies'('urn:example:carol5464', false)). +answer('urn:example:complies'('urn:example:carol5465', false)). +answer('urn:example:complies'('urn:example:carol5466', false)). +answer('urn:example:complies'('urn:example:carol5467', false)). +answer('urn:example:complies'('urn:example:carol5468', false)). +answer('urn:example:complies'('urn:example:carol5469', false)). +answer('urn:example:complies'('urn:example:carol5470', false)). +answer('urn:example:complies'('urn:example:carol5471', false)). +answer('urn:example:complies'('urn:example:carol5472', false)). +answer('urn:example:complies'('urn:example:carol5473', false)). +answer('urn:example:complies'('urn:example:carol5474', false)). +answer('urn:example:complies'('urn:example:carol5475', false)). +answer('urn:example:complies'('urn:example:carol5476', false)). +answer('urn:example:complies'('urn:example:carol5477', false)). +answer('urn:example:complies'('urn:example:carol5478', false)). +answer('urn:example:complies'('urn:example:carol5479', false)). +answer('urn:example:complies'('urn:example:carol5480', false)). +answer('urn:example:complies'('urn:example:carol5481', false)). +answer('urn:example:complies'('urn:example:carol5482', false)). +answer('urn:example:complies'('urn:example:carol5483', false)). +answer('urn:example:complies'('urn:example:carol5484', false)). +answer('urn:example:complies'('urn:example:carol5485', false)). +answer('urn:example:complies'('urn:example:carol5486', false)). +answer('urn:example:complies'('urn:example:carol5487', false)). +answer('urn:example:complies'('urn:example:carol5488', false)). +answer('urn:example:complies'('urn:example:carol5489', false)). +answer('urn:example:complies'('urn:example:carol5490', false)). +answer('urn:example:complies'('urn:example:carol5491', false)). +answer('urn:example:complies'('urn:example:carol5492', false)). +answer('urn:example:complies'('urn:example:carol5493', false)). +answer('urn:example:complies'('urn:example:carol5494', false)). +answer('urn:example:complies'('urn:example:carol5495', false)). +answer('urn:example:complies'('urn:example:carol5496', false)). +answer('urn:example:complies'('urn:example:carol5497', false)). +answer('urn:example:complies'('urn:example:carol5498', false)). +answer('urn:example:complies'('urn:example:carol5499', false)). +answer('urn:example:complies'('urn:example:carol5500', false)). +answer('urn:example:complies'('urn:example:carol5501', false)). +answer('urn:example:complies'('urn:example:carol5502', false)). +answer('urn:example:complies'('urn:example:carol5503', false)). +answer('urn:example:complies'('urn:example:carol5504', false)). +answer('urn:example:complies'('urn:example:carol5505', false)). +answer('urn:example:complies'('urn:example:carol5506', false)). +answer('urn:example:complies'('urn:example:carol5507', false)). +answer('urn:example:complies'('urn:example:carol5508', false)). +answer('urn:example:complies'('urn:example:carol5509', false)). +answer('urn:example:complies'('urn:example:carol5510', false)). +answer('urn:example:complies'('urn:example:carol5511', false)). +answer('urn:example:complies'('urn:example:carol5512', false)). +answer('urn:example:complies'('urn:example:carol5513', false)). +answer('urn:example:complies'('urn:example:carol5514', false)). +answer('urn:example:complies'('urn:example:carol5515', false)). +answer('urn:example:complies'('urn:example:carol5516', false)). +answer('urn:example:complies'('urn:example:carol5517', false)). +answer('urn:example:complies'('urn:example:carol5518', false)). +answer('urn:example:complies'('urn:example:carol5519', false)). +answer('urn:example:complies'('urn:example:carol5520', false)). +answer('urn:example:complies'('urn:example:carol5521', false)). +answer('urn:example:complies'('urn:example:carol5522', false)). +answer('urn:example:complies'('urn:example:carol5523', false)). +answer('urn:example:complies'('urn:example:carol5524', false)). +answer('urn:example:complies'('urn:example:carol5525', false)). +answer('urn:example:complies'('urn:example:carol5526', false)). +answer('urn:example:complies'('urn:example:carol5527', false)). +answer('urn:example:complies'('urn:example:carol5528', false)). +answer('urn:example:complies'('urn:example:carol5529', false)). +answer('urn:example:complies'('urn:example:carol5530', false)). +answer('urn:example:complies'('urn:example:carol5531', false)). +answer('urn:example:complies'('urn:example:carol5532', false)). +answer('urn:example:complies'('urn:example:carol5533', false)). +answer('urn:example:complies'('urn:example:carol5534', false)). +answer('urn:example:complies'('urn:example:carol5535', false)). +answer('urn:example:complies'('urn:example:carol5536', false)). +answer('urn:example:complies'('urn:example:carol5537', false)). +answer('urn:example:complies'('urn:example:carol5538', false)). +answer('urn:example:complies'('urn:example:carol5539', false)). +answer('urn:example:complies'('urn:example:carol5540', false)). +answer('urn:example:complies'('urn:example:carol5541', false)). +answer('urn:example:complies'('urn:example:carol5542', false)). +answer('urn:example:complies'('urn:example:carol5543', false)). +answer('urn:example:complies'('urn:example:carol5544', false)). +answer('urn:example:complies'('urn:example:carol5545', false)). +answer('urn:example:complies'('urn:example:carol5546', false)). +answer('urn:example:complies'('urn:example:carol5547', false)). +answer('urn:example:complies'('urn:example:carol5548', false)). +answer('urn:example:complies'('urn:example:carol5549', false)). +answer('urn:example:complies'('urn:example:carol5550', false)). +answer('urn:example:complies'('urn:example:carol5551', false)). +answer('urn:example:complies'('urn:example:carol5552', false)). +answer('urn:example:complies'('urn:example:carol5553', false)). +answer('urn:example:complies'('urn:example:carol5554', false)). +answer('urn:example:complies'('urn:example:carol5555', false)). +answer('urn:example:complies'('urn:example:carol5556', false)). +answer('urn:example:complies'('urn:example:carol5557', false)). +answer('urn:example:complies'('urn:example:carol5558', false)). +answer('urn:example:complies'('urn:example:carol5559', false)). +answer('urn:example:complies'('urn:example:carol5560', false)). +answer('urn:example:complies'('urn:example:carol5561', false)). +answer('urn:example:complies'('urn:example:carol5562', false)). +answer('urn:example:complies'('urn:example:carol5563', false)). +answer('urn:example:complies'('urn:example:carol5564', false)). +answer('urn:example:complies'('urn:example:carol5565', false)). +answer('urn:example:complies'('urn:example:carol5566', false)). +answer('urn:example:complies'('urn:example:carol5567', false)). +answer('urn:example:complies'('urn:example:carol5568', false)). +answer('urn:example:complies'('urn:example:carol5569', false)). +answer('urn:example:complies'('urn:example:carol5570', false)). +answer('urn:example:complies'('urn:example:carol5571', false)). +answer('urn:example:complies'('urn:example:carol5572', false)). +answer('urn:example:complies'('urn:example:carol5573', false)). +answer('urn:example:complies'('urn:example:carol5574', false)). +answer('urn:example:complies'('urn:example:carol5575', false)). +answer('urn:example:complies'('urn:example:carol5576', false)). +answer('urn:example:complies'('urn:example:carol5577', false)). +answer('urn:example:complies'('urn:example:carol5578', false)). +answer('urn:example:complies'('urn:example:carol5579', false)). +answer('urn:example:complies'('urn:example:carol5580', false)). +answer('urn:example:complies'('urn:example:carol5581', false)). +answer('urn:example:complies'('urn:example:carol5582', false)). +answer('urn:example:complies'('urn:example:carol5583', false)). +answer('urn:example:complies'('urn:example:carol5584', false)). +answer('urn:example:complies'('urn:example:carol5585', false)). +answer('urn:example:complies'('urn:example:carol5586', false)). +answer('urn:example:complies'('urn:example:carol5587', false)). +answer('urn:example:complies'('urn:example:carol5588', false)). +answer('urn:example:complies'('urn:example:carol5589', false)). +answer('urn:example:complies'('urn:example:carol5590', false)). +answer('urn:example:complies'('urn:example:carol5591', false)). +answer('urn:example:complies'('urn:example:carol5592', false)). +answer('urn:example:complies'('urn:example:carol5593', false)). +answer('urn:example:complies'('urn:example:carol5594', false)). +answer('urn:example:complies'('urn:example:carol5595', false)). +answer('urn:example:complies'('urn:example:carol5596', false)). +answer('urn:example:complies'('urn:example:carol5597', false)). +answer('urn:example:complies'('urn:example:carol5598', false)). +answer('urn:example:complies'('urn:example:carol5599', false)). +answer('urn:example:complies'('urn:example:carol5600', false)). +answer('urn:example:complies'('urn:example:carol5601', false)). +answer('urn:example:complies'('urn:example:carol5602', false)). +answer('urn:example:complies'('urn:example:carol5603', false)). +answer('urn:example:complies'('urn:example:carol5604', false)). +answer('urn:example:complies'('urn:example:carol5605', false)). +answer('urn:example:complies'('urn:example:carol5606', false)). +answer('urn:example:complies'('urn:example:carol5607', false)). +answer('urn:example:complies'('urn:example:carol5608', false)). +answer('urn:example:complies'('urn:example:carol5609', false)). +answer('urn:example:complies'('urn:example:carol5610', false)). +answer('urn:example:complies'('urn:example:carol5611', false)). +answer('urn:example:complies'('urn:example:carol5612', false)). +answer('urn:example:complies'('urn:example:carol5613', false)). +answer('urn:example:complies'('urn:example:carol5614', false)). +answer('urn:example:complies'('urn:example:carol5615', false)). +answer('urn:example:complies'('urn:example:carol5616', false)). +answer('urn:example:complies'('urn:example:carol5617', false)). +answer('urn:example:complies'('urn:example:carol5618', false)). +answer('urn:example:complies'('urn:example:carol5619', false)). +answer('urn:example:complies'('urn:example:carol5620', false)). +answer('urn:example:complies'('urn:example:carol5621', false)). +answer('urn:example:complies'('urn:example:carol5622', false)). +answer('urn:example:complies'('urn:example:carol5623', false)). +answer('urn:example:complies'('urn:example:carol5624', false)). +answer('urn:example:complies'('urn:example:carol5625', false)). +answer('urn:example:complies'('urn:example:carol5626', false)). +answer('urn:example:complies'('urn:example:carol5627', false)). +answer('urn:example:complies'('urn:example:carol5628', false)). +answer('urn:example:complies'('urn:example:carol5629', false)). +answer('urn:example:complies'('urn:example:carol5630', false)). +answer('urn:example:complies'('urn:example:carol5631', false)). +answer('urn:example:complies'('urn:example:carol5632', false)). +answer('urn:example:complies'('urn:example:carol5633', false)). +answer('urn:example:complies'('urn:example:carol5634', false)). +answer('urn:example:complies'('urn:example:carol5635', false)). +answer('urn:example:complies'('urn:example:carol5636', false)). +answer('urn:example:complies'('urn:example:carol5637', false)). +answer('urn:example:complies'('urn:example:carol5638', false)). +answer('urn:example:complies'('urn:example:carol5639', false)). +answer('urn:example:complies'('urn:example:carol5640', false)). +answer('urn:example:complies'('urn:example:carol5641', false)). +answer('urn:example:complies'('urn:example:carol5642', false)). +answer('urn:example:complies'('urn:example:carol5643', false)). +answer('urn:example:complies'('urn:example:carol5644', false)). +answer('urn:example:complies'('urn:example:carol5645', false)). +answer('urn:example:complies'('urn:example:carol5646', false)). +answer('urn:example:complies'('urn:example:carol5647', false)). +answer('urn:example:complies'('urn:example:carol5648', false)). +answer('urn:example:complies'('urn:example:carol5649', false)). +answer('urn:example:complies'('urn:example:carol5650', false)). +answer('urn:example:complies'('urn:example:carol5651', false)). +answer('urn:example:complies'('urn:example:carol5652', false)). +answer('urn:example:complies'('urn:example:carol5653', false)). +answer('urn:example:complies'('urn:example:carol5654', false)). +answer('urn:example:complies'('urn:example:carol5655', false)). +answer('urn:example:complies'('urn:example:carol5656', false)). +answer('urn:example:complies'('urn:example:carol5657', false)). +answer('urn:example:complies'('urn:example:carol5658', false)). +answer('urn:example:complies'('urn:example:carol5659', false)). +answer('urn:example:complies'('urn:example:carol5660', false)). +answer('urn:example:complies'('urn:example:carol5661', false)). +answer('urn:example:complies'('urn:example:carol5662', false)). +answer('urn:example:complies'('urn:example:carol5663', false)). +answer('urn:example:complies'('urn:example:carol5664', false)). +answer('urn:example:complies'('urn:example:carol5665', false)). +answer('urn:example:complies'('urn:example:carol5666', false)). +answer('urn:example:complies'('urn:example:carol5667', false)). +answer('urn:example:complies'('urn:example:carol5668', false)). +answer('urn:example:complies'('urn:example:carol5669', false)). +answer('urn:example:complies'('urn:example:carol5670', false)). +answer('urn:example:complies'('urn:example:carol5671', false)). +answer('urn:example:complies'('urn:example:carol5672', false)). +answer('urn:example:complies'('urn:example:carol5673', false)). +answer('urn:example:complies'('urn:example:carol5674', false)). +answer('urn:example:complies'('urn:example:carol5675', false)). +answer('urn:example:complies'('urn:example:carol5676', false)). +answer('urn:example:complies'('urn:example:carol5677', false)). +answer('urn:example:complies'('urn:example:carol5678', false)). +answer('urn:example:complies'('urn:example:carol5679', false)). +answer('urn:example:complies'('urn:example:carol5680', false)). +answer('urn:example:complies'('urn:example:carol5681', false)). +answer('urn:example:complies'('urn:example:carol5682', false)). +answer('urn:example:complies'('urn:example:carol5683', false)). +answer('urn:example:complies'('urn:example:carol5684', false)). +answer('urn:example:complies'('urn:example:carol5685', false)). +answer('urn:example:complies'('urn:example:carol5686', false)). +answer('urn:example:complies'('urn:example:carol5687', false)). +answer('urn:example:complies'('urn:example:carol5688', false)). +answer('urn:example:complies'('urn:example:carol5689', false)). +answer('urn:example:complies'('urn:example:carol5690', false)). +answer('urn:example:complies'('urn:example:carol5691', false)). +answer('urn:example:complies'('urn:example:carol5692', false)). +answer('urn:example:complies'('urn:example:carol5693', false)). +answer('urn:example:complies'('urn:example:carol5694', false)). +answer('urn:example:complies'('urn:example:carol5695', false)). +answer('urn:example:complies'('urn:example:carol5696', false)). +answer('urn:example:complies'('urn:example:carol5697', false)). +answer('urn:example:complies'('urn:example:carol5698', false)). +answer('urn:example:complies'('urn:example:carol5699', false)). +answer('urn:example:complies'('urn:example:carol5700', false)). +answer('urn:example:complies'('urn:example:carol5701', false)). +answer('urn:example:complies'('urn:example:carol5702', false)). +answer('urn:example:complies'('urn:example:carol5703', false)). +answer('urn:example:complies'('urn:example:carol5704', false)). +answer('urn:example:complies'('urn:example:carol5705', false)). +answer('urn:example:complies'('urn:example:carol5706', false)). +answer('urn:example:complies'('urn:example:carol5707', false)). +answer('urn:example:complies'('urn:example:carol5708', false)). +answer('urn:example:complies'('urn:example:carol5709', false)). +answer('urn:example:complies'('urn:example:carol5710', false)). +answer('urn:example:complies'('urn:example:carol5711', false)). +answer('urn:example:complies'('urn:example:carol5712', false)). +answer('urn:example:complies'('urn:example:carol5713', false)). +answer('urn:example:complies'('urn:example:carol5714', false)). +answer('urn:example:complies'('urn:example:carol5715', false)). +answer('urn:example:complies'('urn:example:carol5716', false)). +answer('urn:example:complies'('urn:example:carol5717', false)). +answer('urn:example:complies'('urn:example:carol5718', false)). +answer('urn:example:complies'('urn:example:carol5719', false)). +answer('urn:example:complies'('urn:example:carol5720', false)). +answer('urn:example:complies'('urn:example:carol5721', false)). +answer('urn:example:complies'('urn:example:carol5722', false)). +answer('urn:example:complies'('urn:example:carol5723', false)). +answer('urn:example:complies'('urn:example:carol5724', false)). +answer('urn:example:complies'('urn:example:carol5725', false)). +answer('urn:example:complies'('urn:example:carol5726', false)). +answer('urn:example:complies'('urn:example:carol5727', false)). +answer('urn:example:complies'('urn:example:carol5728', false)). +answer('urn:example:complies'('urn:example:carol5729', false)). +answer('urn:example:complies'('urn:example:carol5730', false)). +answer('urn:example:complies'('urn:example:carol5731', false)). +answer('urn:example:complies'('urn:example:carol5732', false)). +answer('urn:example:complies'('urn:example:carol5733', false)). +answer('urn:example:complies'('urn:example:carol5734', false)). +answer('urn:example:complies'('urn:example:carol5735', false)). +answer('urn:example:complies'('urn:example:carol5736', false)). +answer('urn:example:complies'('urn:example:carol5737', false)). +answer('urn:example:complies'('urn:example:carol5738', false)). +answer('urn:example:complies'('urn:example:carol5739', false)). +answer('urn:example:complies'('urn:example:carol5740', false)). +answer('urn:example:complies'('urn:example:carol5741', false)). +answer('urn:example:complies'('urn:example:carol5742', false)). +answer('urn:example:complies'('urn:example:carol5743', false)). +answer('urn:example:complies'('urn:example:carol5744', false)). +answer('urn:example:complies'('urn:example:carol5745', false)). +answer('urn:example:complies'('urn:example:carol5746', false)). +answer('urn:example:complies'('urn:example:carol5747', false)). +answer('urn:example:complies'('urn:example:carol5748', false)). +answer('urn:example:complies'('urn:example:carol5749', false)). +answer('urn:example:complies'('urn:example:carol5750', false)). +answer('urn:example:complies'('urn:example:carol5751', false)). +answer('urn:example:complies'('urn:example:carol5752', false)). +answer('urn:example:complies'('urn:example:carol5753', false)). +answer('urn:example:complies'('urn:example:carol5754', false)). +answer('urn:example:complies'('urn:example:carol5755', false)). +answer('urn:example:complies'('urn:example:carol5756', false)). +answer('urn:example:complies'('urn:example:carol5757', false)). +answer('urn:example:complies'('urn:example:carol5758', false)). +answer('urn:example:complies'('urn:example:carol5759', false)). +answer('urn:example:complies'('urn:example:carol5760', false)). +answer('urn:example:complies'('urn:example:carol5761', false)). +answer('urn:example:complies'('urn:example:carol5762', false)). +answer('urn:example:complies'('urn:example:carol5763', false)). +answer('urn:example:complies'('urn:example:carol5764', false)). +answer('urn:example:complies'('urn:example:carol5765', false)). +answer('urn:example:complies'('urn:example:carol5766', false)). +answer('urn:example:complies'('urn:example:carol5767', false)). +answer('urn:example:complies'('urn:example:carol5768', false)). +answer('urn:example:complies'('urn:example:carol5769', false)). +answer('urn:example:complies'('urn:example:carol5770', false)). +answer('urn:example:complies'('urn:example:carol5771', false)). +answer('urn:example:complies'('urn:example:carol5772', false)). +answer('urn:example:complies'('urn:example:carol5773', false)). +answer('urn:example:complies'('urn:example:carol5774', false)). +answer('urn:example:complies'('urn:example:carol5775', false)). +answer('urn:example:complies'('urn:example:carol5776', false)). +answer('urn:example:complies'('urn:example:carol5777', false)). +answer('urn:example:complies'('urn:example:carol5778', false)). +answer('urn:example:complies'('urn:example:carol5779', false)). +answer('urn:example:complies'('urn:example:carol5780', false)). +answer('urn:example:complies'('urn:example:carol5781', false)). +answer('urn:example:complies'('urn:example:carol5782', false)). +answer('urn:example:complies'('urn:example:carol5783', false)). +answer('urn:example:complies'('urn:example:carol5784', false)). +answer('urn:example:complies'('urn:example:carol5785', false)). +answer('urn:example:complies'('urn:example:carol5786', false)). +answer('urn:example:complies'('urn:example:carol5787', false)). +answer('urn:example:complies'('urn:example:carol5788', false)). +answer('urn:example:complies'('urn:example:carol5789', false)). +answer('urn:example:complies'('urn:example:carol5790', false)). +answer('urn:example:complies'('urn:example:carol5791', false)). +answer('urn:example:complies'('urn:example:carol5792', false)). +answer('urn:example:complies'('urn:example:carol5793', false)). +answer('urn:example:complies'('urn:example:carol5794', false)). +answer('urn:example:complies'('urn:example:carol5795', false)). +answer('urn:example:complies'('urn:example:carol5796', false)). +answer('urn:example:complies'('urn:example:carol5797', false)). +answer('urn:example:complies'('urn:example:carol5798', false)). +answer('urn:example:complies'('urn:example:carol5799', false)). +answer('urn:example:complies'('urn:example:carol5800', false)). +answer('urn:example:complies'('urn:example:carol5801', false)). +answer('urn:example:complies'('urn:example:carol5802', false)). +answer('urn:example:complies'('urn:example:carol5803', false)). +answer('urn:example:complies'('urn:example:carol5804', false)). +answer('urn:example:complies'('urn:example:carol5805', false)). +answer('urn:example:complies'('urn:example:carol5806', false)). +answer('urn:example:complies'('urn:example:carol5807', false)). +answer('urn:example:complies'('urn:example:carol5808', false)). +answer('urn:example:complies'('urn:example:carol5809', false)). +answer('urn:example:complies'('urn:example:carol5810', false)). +answer('urn:example:complies'('urn:example:carol5811', false)). +answer('urn:example:complies'('urn:example:carol5812', false)). +answer('urn:example:complies'('urn:example:carol5813', false)). +answer('urn:example:complies'('urn:example:carol5814', false)). +answer('urn:example:complies'('urn:example:carol5815', false)). +answer('urn:example:complies'('urn:example:carol5816', false)). +answer('urn:example:complies'('urn:example:carol5817', false)). +answer('urn:example:complies'('urn:example:carol5818', false)). +answer('urn:example:complies'('urn:example:carol5819', false)). +answer('urn:example:complies'('urn:example:carol5820', false)). +answer('urn:example:complies'('urn:example:carol5821', false)). +answer('urn:example:complies'('urn:example:carol5822', false)). +answer('urn:example:complies'('urn:example:carol5823', false)). +answer('urn:example:complies'('urn:example:carol5824', false)). +answer('urn:example:complies'('urn:example:carol5825', false)). +answer('urn:example:complies'('urn:example:carol5826', false)). +answer('urn:example:complies'('urn:example:carol5827', false)). +answer('urn:example:complies'('urn:example:carol5828', false)). +answer('urn:example:complies'('urn:example:carol5829', false)). +answer('urn:example:complies'('urn:example:carol5830', false)). +answer('urn:example:complies'('urn:example:carol5831', false)). +answer('urn:example:complies'('urn:example:carol5832', false)). +answer('urn:example:complies'('urn:example:carol5833', false)). +answer('urn:example:complies'('urn:example:carol5834', false)). +answer('urn:example:complies'('urn:example:carol5835', false)). +answer('urn:example:complies'('urn:example:carol5836', false)). +answer('urn:example:complies'('urn:example:carol5837', false)). +answer('urn:example:complies'('urn:example:carol5838', false)). +answer('urn:example:complies'('urn:example:carol5839', false)). +answer('urn:example:complies'('urn:example:carol5840', false)). +answer('urn:example:complies'('urn:example:carol5841', false)). +answer('urn:example:complies'('urn:example:carol5842', false)). +answer('urn:example:complies'('urn:example:carol5843', false)). +answer('urn:example:complies'('urn:example:carol5844', false)). +answer('urn:example:complies'('urn:example:carol5845', false)). +answer('urn:example:complies'('urn:example:carol5846', false)). +answer('urn:example:complies'('urn:example:carol5847', false)). +answer('urn:example:complies'('urn:example:carol5848', false)). +answer('urn:example:complies'('urn:example:carol5849', false)). +answer('urn:example:complies'('urn:example:carol5850', false)). +answer('urn:example:complies'('urn:example:carol5851', false)). +answer('urn:example:complies'('urn:example:carol5852', false)). +answer('urn:example:complies'('urn:example:carol5853', false)). +answer('urn:example:complies'('urn:example:carol5854', false)). +answer('urn:example:complies'('urn:example:carol5855', false)). +answer('urn:example:complies'('urn:example:carol5856', false)). +answer('urn:example:complies'('urn:example:carol5857', false)). +answer('urn:example:complies'('urn:example:carol5858', false)). +answer('urn:example:complies'('urn:example:carol5859', false)). +answer('urn:example:complies'('urn:example:carol5860', false)). +answer('urn:example:complies'('urn:example:carol5861', false)). +answer('urn:example:complies'('urn:example:carol5862', false)). +answer('urn:example:complies'('urn:example:carol5863', false)). +answer('urn:example:complies'('urn:example:carol5864', false)). +answer('urn:example:complies'('urn:example:carol5865', false)). +answer('urn:example:complies'('urn:example:carol5866', false)). +answer('urn:example:complies'('urn:example:carol5867', false)). +answer('urn:example:complies'('urn:example:carol5868', false)). +answer('urn:example:complies'('urn:example:carol5869', false)). +answer('urn:example:complies'('urn:example:carol5870', false)). +answer('urn:example:complies'('urn:example:carol5871', false)). +answer('urn:example:complies'('urn:example:carol5872', false)). +answer('urn:example:complies'('urn:example:carol5873', false)). +answer('urn:example:complies'('urn:example:carol5874', false)). +answer('urn:example:complies'('urn:example:carol5875', false)). +answer('urn:example:complies'('urn:example:carol5876', false)). +answer('urn:example:complies'('urn:example:carol5877', false)). +answer('urn:example:complies'('urn:example:carol5878', false)). +answer('urn:example:complies'('urn:example:carol5879', false)). +answer('urn:example:complies'('urn:example:carol5880', false)). +answer('urn:example:complies'('urn:example:carol5881', false)). +answer('urn:example:complies'('urn:example:carol5882', false)). +answer('urn:example:complies'('urn:example:carol5883', false)). +answer('urn:example:complies'('urn:example:carol5884', false)). +answer('urn:example:complies'('urn:example:carol5885', false)). +answer('urn:example:complies'('urn:example:carol5886', false)). +answer('urn:example:complies'('urn:example:carol5887', false)). +answer('urn:example:complies'('urn:example:carol5888', false)). +answer('urn:example:complies'('urn:example:carol5889', false)). +answer('urn:example:complies'('urn:example:carol5890', false)). +answer('urn:example:complies'('urn:example:carol5891', false)). +answer('urn:example:complies'('urn:example:carol5892', false)). +answer('urn:example:complies'('urn:example:carol5893', false)). +answer('urn:example:complies'('urn:example:carol5894', false)). +answer('urn:example:complies'('urn:example:carol5895', false)). +answer('urn:example:complies'('urn:example:carol5896', false)). +answer('urn:example:complies'('urn:example:carol5897', false)). +answer('urn:example:complies'('urn:example:carol5898', false)). +answer('urn:example:complies'('urn:example:carol5899', false)). +answer('urn:example:complies'('urn:example:carol5900', false)). +answer('urn:example:complies'('urn:example:carol5901', false)). +answer('urn:example:complies'('urn:example:carol5902', false)). +answer('urn:example:complies'('urn:example:carol5903', false)). +answer('urn:example:complies'('urn:example:carol5904', false)). +answer('urn:example:complies'('urn:example:carol5905', false)). +answer('urn:example:complies'('urn:example:carol5906', false)). +answer('urn:example:complies'('urn:example:carol5907', false)). +answer('urn:example:complies'('urn:example:carol5908', false)). +answer('urn:example:complies'('urn:example:carol5909', false)). +answer('urn:example:complies'('urn:example:carol5910', false)). +answer('urn:example:complies'('urn:example:carol5911', false)). +answer('urn:example:complies'('urn:example:carol5912', false)). +answer('urn:example:complies'('urn:example:carol5913', false)). +answer('urn:example:complies'('urn:example:carol5914', false)). +answer('urn:example:complies'('urn:example:carol5915', false)). +answer('urn:example:complies'('urn:example:carol5916', false)). +answer('urn:example:complies'('urn:example:carol5917', false)). +answer('urn:example:complies'('urn:example:carol5918', false)). +answer('urn:example:complies'('urn:example:carol5919', false)). +answer('urn:example:complies'('urn:example:carol5920', false)). +answer('urn:example:complies'('urn:example:carol5921', false)). +answer('urn:example:complies'('urn:example:carol5922', false)). +answer('urn:example:complies'('urn:example:carol5923', false)). +answer('urn:example:complies'('urn:example:carol5924', false)). +answer('urn:example:complies'('urn:example:carol5925', false)). +answer('urn:example:complies'('urn:example:carol5926', false)). +answer('urn:example:complies'('urn:example:carol5927', false)). +answer('urn:example:complies'('urn:example:carol5928', false)). +answer('urn:example:complies'('urn:example:carol5929', false)). +answer('urn:example:complies'('urn:example:carol5930', false)). +answer('urn:example:complies'('urn:example:carol5931', false)). +answer('urn:example:complies'('urn:example:carol5932', false)). +answer('urn:example:complies'('urn:example:carol5933', false)). +answer('urn:example:complies'('urn:example:carol5934', false)). +answer('urn:example:complies'('urn:example:carol5935', false)). +answer('urn:example:complies'('urn:example:carol5936', false)). +answer('urn:example:complies'('urn:example:carol5937', false)). +answer('urn:example:complies'('urn:example:carol5938', false)). +answer('urn:example:complies'('urn:example:carol5939', false)). +answer('urn:example:complies'('urn:example:carol5940', false)). +answer('urn:example:complies'('urn:example:carol5941', false)). +answer('urn:example:complies'('urn:example:carol5942', false)). +answer('urn:example:complies'('urn:example:carol5943', false)). +answer('urn:example:complies'('urn:example:carol5944', false)). +answer('urn:example:complies'('urn:example:carol5945', false)). +answer('urn:example:complies'('urn:example:carol5946', false)). +answer('urn:example:complies'('urn:example:carol5947', false)). +answer('urn:example:complies'('urn:example:carol5948', false)). +answer('urn:example:complies'('urn:example:carol5949', false)). +answer('urn:example:complies'('urn:example:carol5950', false)). +answer('urn:example:complies'('urn:example:carol5951', false)). +answer('urn:example:complies'('urn:example:carol5952', false)). +answer('urn:example:complies'('urn:example:carol5953', false)). +answer('urn:example:complies'('urn:example:carol5954', false)). +answer('urn:example:complies'('urn:example:carol5955', false)). +answer('urn:example:complies'('urn:example:carol5956', false)). +answer('urn:example:complies'('urn:example:carol5957', false)). +answer('urn:example:complies'('urn:example:carol5958', false)). +answer('urn:example:complies'('urn:example:carol5959', false)). +answer('urn:example:complies'('urn:example:carol5960', false)). +answer('urn:example:complies'('urn:example:carol5961', false)). +answer('urn:example:complies'('urn:example:carol5962', false)). +answer('urn:example:complies'('urn:example:carol5963', false)). +answer('urn:example:complies'('urn:example:carol5964', false)). +answer('urn:example:complies'('urn:example:carol5965', false)). +answer('urn:example:complies'('urn:example:carol5966', false)). +answer('urn:example:complies'('urn:example:carol5967', false)). +answer('urn:example:complies'('urn:example:carol5968', false)). +answer('urn:example:complies'('urn:example:carol5969', false)). +answer('urn:example:complies'('urn:example:carol5970', false)). +answer('urn:example:complies'('urn:example:carol5971', false)). +answer('urn:example:complies'('urn:example:carol5972', false)). +answer('urn:example:complies'('urn:example:carol5973', false)). +answer('urn:example:complies'('urn:example:carol5974', false)). +answer('urn:example:complies'('urn:example:carol5975', false)). +answer('urn:example:complies'('urn:example:carol5976', false)). +answer('urn:example:complies'('urn:example:carol5977', false)). +answer('urn:example:complies'('urn:example:carol5978', false)). +answer('urn:example:complies'('urn:example:carol5979', false)). +answer('urn:example:complies'('urn:example:carol5980', false)). +answer('urn:example:complies'('urn:example:carol5981', false)). +answer('urn:example:complies'('urn:example:carol5982', false)). +answer('urn:example:complies'('urn:example:carol5983', false)). +answer('urn:example:complies'('urn:example:carol5984', false)). +answer('urn:example:complies'('urn:example:carol5985', false)). +answer('urn:example:complies'('urn:example:carol5986', false)). +answer('urn:example:complies'('urn:example:carol5987', false)). +answer('urn:example:complies'('urn:example:carol5988', false)). +answer('urn:example:complies'('urn:example:carol5989', false)). +answer('urn:example:complies'('urn:example:carol5990', false)). +answer('urn:example:complies'('urn:example:carol5991', false)). +answer('urn:example:complies'('urn:example:carol5992', false)). +answer('urn:example:complies'('urn:example:carol5993', false)). +answer('urn:example:complies'('urn:example:carol5994', false)). +answer('urn:example:complies'('urn:example:carol5995', false)). +answer('urn:example:complies'('urn:example:carol5996', false)). +answer('urn:example:complies'('urn:example:carol5997', false)). +answer('urn:example:complies'('urn:example:carol5998', false)). +answer('urn:example:complies'('urn:example:carol5999', false)). +answer('urn:example:complies'('urn:example:carol6000', false)). +answer('urn:example:complies'('urn:example:carol6001', false)). +answer('urn:example:complies'('urn:example:carol6002', false)). +answer('urn:example:complies'('urn:example:carol6003', false)). +answer('urn:example:complies'('urn:example:carol6004', false)). +answer('urn:example:complies'('urn:example:carol6005', false)). +answer('urn:example:complies'('urn:example:carol6006', false)). +answer('urn:example:complies'('urn:example:carol6007', false)). +answer('urn:example:complies'('urn:example:carol6008', false)). +answer('urn:example:complies'('urn:example:carol6009', false)). +answer('urn:example:complies'('urn:example:carol6010', false)). +answer('urn:example:complies'('urn:example:carol6011', false)). +answer('urn:example:complies'('urn:example:carol6012', false)). +answer('urn:example:complies'('urn:example:carol6013', false)). +answer('urn:example:complies'('urn:example:carol6014', false)). +answer('urn:example:complies'('urn:example:carol6015', false)). +answer('urn:example:complies'('urn:example:carol6016', false)). +answer('urn:example:complies'('urn:example:carol6017', false)). +answer('urn:example:complies'('urn:example:carol6018', false)). +answer('urn:example:complies'('urn:example:carol6019', false)). +answer('urn:example:complies'('urn:example:carol6020', false)). +answer('urn:example:complies'('urn:example:carol6021', false)). +answer('urn:example:complies'('urn:example:carol6022', false)). +answer('urn:example:complies'('urn:example:carol6023', false)). +answer('urn:example:complies'('urn:example:carol6024', false)). +answer('urn:example:complies'('urn:example:carol6025', false)). +answer('urn:example:complies'('urn:example:carol6026', false)). +answer('urn:example:complies'('urn:example:carol6027', false)). +answer('urn:example:complies'('urn:example:carol6028', false)). +answer('urn:example:complies'('urn:example:carol6029', false)). +answer('urn:example:complies'('urn:example:carol6030', false)). +answer('urn:example:complies'('urn:example:carol6031', false)). +answer('urn:example:complies'('urn:example:carol6032', false)). +answer('urn:example:complies'('urn:example:carol6033', false)). +answer('urn:example:complies'('urn:example:carol6034', false)). +answer('urn:example:complies'('urn:example:carol6035', false)). +answer('urn:example:complies'('urn:example:carol6036', false)). +answer('urn:example:complies'('urn:example:carol6037', false)). +answer('urn:example:complies'('urn:example:carol6038', false)). +answer('urn:example:complies'('urn:example:carol6039', false)). +answer('urn:example:complies'('urn:example:carol6040', false)). +answer('urn:example:complies'('urn:example:carol6041', false)). +answer('urn:example:complies'('urn:example:carol6042', false)). +answer('urn:example:complies'('urn:example:carol6043', false)). +answer('urn:example:complies'('urn:example:carol6044', false)). +answer('urn:example:complies'('urn:example:carol6045', false)). +answer('urn:example:complies'('urn:example:carol6046', false)). +answer('urn:example:complies'('urn:example:carol6047', false)). +answer('urn:example:complies'('urn:example:carol6048', false)). +answer('urn:example:complies'('urn:example:carol6049', false)). +answer('urn:example:complies'('urn:example:carol6050', false)). +answer('urn:example:complies'('urn:example:carol6051', false)). +answer('urn:example:complies'('urn:example:carol6052', false)). +answer('urn:example:complies'('urn:example:carol6053', false)). +answer('urn:example:complies'('urn:example:carol6054', false)). +answer('urn:example:complies'('urn:example:carol6055', false)). +answer('urn:example:complies'('urn:example:carol6056', false)). +answer('urn:example:complies'('urn:example:carol6057', false)). +answer('urn:example:complies'('urn:example:carol6058', false)). +answer('urn:example:complies'('urn:example:carol6059', false)). +answer('urn:example:complies'('urn:example:carol6060', false)). +answer('urn:example:complies'('urn:example:carol6061', false)). +answer('urn:example:complies'('urn:example:carol6062', false)). +answer('urn:example:complies'('urn:example:carol6063', false)). +answer('urn:example:complies'('urn:example:carol6064', false)). +answer('urn:example:complies'('urn:example:carol6065', false)). +answer('urn:example:complies'('urn:example:carol6066', false)). +answer('urn:example:complies'('urn:example:carol6067', false)). +answer('urn:example:complies'('urn:example:carol6068', false)). +answer('urn:example:complies'('urn:example:carol6069', false)). +answer('urn:example:complies'('urn:example:carol6070', false)). +answer('urn:example:complies'('urn:example:carol6071', false)). +answer('urn:example:complies'('urn:example:carol6072', false)). +answer('urn:example:complies'('urn:example:carol6073', false)). +answer('urn:example:complies'('urn:example:carol6074', false)). +answer('urn:example:complies'('urn:example:carol6075', false)). +answer('urn:example:complies'('urn:example:carol6076', false)). +answer('urn:example:complies'('urn:example:carol6077', false)). +answer('urn:example:complies'('urn:example:carol6078', false)). +answer('urn:example:complies'('urn:example:carol6079', false)). +answer('urn:example:complies'('urn:example:carol6080', false)). +answer('urn:example:complies'('urn:example:carol6081', false)). +answer('urn:example:complies'('urn:example:carol6082', false)). +answer('urn:example:complies'('urn:example:carol6083', false)). +answer('urn:example:complies'('urn:example:carol6084', false)). +answer('urn:example:complies'('urn:example:carol6085', false)). +answer('urn:example:complies'('urn:example:carol6086', false)). +answer('urn:example:complies'('urn:example:carol6087', false)). +answer('urn:example:complies'('urn:example:carol6088', false)). +answer('urn:example:complies'('urn:example:carol6089', false)). +answer('urn:example:complies'('urn:example:carol6090', false)). +answer('urn:example:complies'('urn:example:carol6091', false)). +answer('urn:example:complies'('urn:example:carol6092', false)). +answer('urn:example:complies'('urn:example:carol6093', false)). +answer('urn:example:complies'('urn:example:carol6094', false)). +answer('urn:example:complies'('urn:example:carol6095', false)). +answer('urn:example:complies'('urn:example:carol6096', false)). +answer('urn:example:complies'('urn:example:carol6097', false)). +answer('urn:example:complies'('urn:example:carol6098', false)). +answer('urn:example:complies'('urn:example:carol6099', false)). +answer('urn:example:complies'('urn:example:carol6100', false)). +answer('urn:example:complies'('urn:example:carol6101', false)). +answer('urn:example:complies'('urn:example:carol6102', false)). +answer('urn:example:complies'('urn:example:carol6103', false)). +answer('urn:example:complies'('urn:example:carol6104', false)). +answer('urn:example:complies'('urn:example:carol6105', false)). +answer('urn:example:complies'('urn:example:carol6106', false)). +answer('urn:example:complies'('urn:example:carol6107', false)). +answer('urn:example:complies'('urn:example:carol6108', false)). +answer('urn:example:complies'('urn:example:carol6109', false)). +answer('urn:example:complies'('urn:example:carol6110', false)). +answer('urn:example:complies'('urn:example:carol6111', false)). +answer('urn:example:complies'('urn:example:carol6112', false)). +answer('urn:example:complies'('urn:example:carol6113', false)). +answer('urn:example:complies'('urn:example:carol6114', false)). +answer('urn:example:complies'('urn:example:carol6115', false)). +answer('urn:example:complies'('urn:example:carol6116', false)). +answer('urn:example:complies'('urn:example:carol6117', false)). +answer('urn:example:complies'('urn:example:carol6118', false)). +answer('urn:example:complies'('urn:example:carol6119', false)). +answer('urn:example:complies'('urn:example:carol6120', false)). +answer('urn:example:complies'('urn:example:carol6121', false)). +answer('urn:example:complies'('urn:example:carol6122', false)). +answer('urn:example:complies'('urn:example:carol6123', false)). +answer('urn:example:complies'('urn:example:carol6124', false)). +answer('urn:example:complies'('urn:example:carol6125', false)). +answer('urn:example:complies'('urn:example:carol6126', false)). +answer('urn:example:complies'('urn:example:carol6127', false)). +answer('urn:example:complies'('urn:example:carol6128', false)). +answer('urn:example:complies'('urn:example:carol6129', false)). +answer('urn:example:complies'('urn:example:carol6130', false)). +answer('urn:example:complies'('urn:example:carol6131', false)). +answer('urn:example:complies'('urn:example:carol6132', false)). +answer('urn:example:complies'('urn:example:carol6133', false)). +answer('urn:example:complies'('urn:example:carol6134', false)). +answer('urn:example:complies'('urn:example:carol6135', false)). +answer('urn:example:complies'('urn:example:carol6136', false)). +answer('urn:example:complies'('urn:example:carol6137', false)). +answer('urn:example:complies'('urn:example:carol6138', false)). +answer('urn:example:complies'('urn:example:carol6139', false)). +answer('urn:example:complies'('urn:example:carol6140', false)). +answer('urn:example:complies'('urn:example:carol6141', false)). +answer('urn:example:complies'('urn:example:carol6142', false)). +answer('urn:example:complies'('urn:example:carol6143', false)). +answer('urn:example:complies'('urn:example:carol6144', false)). +answer('urn:example:complies'('urn:example:carol6145', false)). +answer('urn:example:complies'('urn:example:carol6146', false)). +answer('urn:example:complies'('urn:example:carol6147', false)). +answer('urn:example:complies'('urn:example:carol6148', false)). +answer('urn:example:complies'('urn:example:carol6149', false)). +answer('urn:example:complies'('urn:example:carol6150', false)). +answer('urn:example:complies'('urn:example:carol6151', false)). +answer('urn:example:complies'('urn:example:carol6152', false)). +answer('urn:example:complies'('urn:example:carol6153', false)). +answer('urn:example:complies'('urn:example:carol6154', false)). +answer('urn:example:complies'('urn:example:carol6155', false)). +answer('urn:example:complies'('urn:example:carol6156', false)). +answer('urn:example:complies'('urn:example:carol6157', false)). +answer('urn:example:complies'('urn:example:carol6158', false)). +answer('urn:example:complies'('urn:example:carol6159', false)). +answer('urn:example:complies'('urn:example:carol6160', false)). +answer('urn:example:complies'('urn:example:carol6161', false)). +answer('urn:example:complies'('urn:example:carol6162', false)). +answer('urn:example:complies'('urn:example:carol6163', false)). +answer('urn:example:complies'('urn:example:carol6164', false)). +answer('urn:example:complies'('urn:example:carol6165', false)). +answer('urn:example:complies'('urn:example:carol6166', false)). +answer('urn:example:complies'('urn:example:carol6167', false)). +answer('urn:example:complies'('urn:example:carol6168', false)). +answer('urn:example:complies'('urn:example:carol6169', false)). +answer('urn:example:complies'('urn:example:carol6170', false)). +answer('urn:example:complies'('urn:example:carol6171', false)). +answer('urn:example:complies'('urn:example:carol6172', false)). +answer('urn:example:complies'('urn:example:carol6173', false)). +answer('urn:example:complies'('urn:example:carol6174', false)). +answer('urn:example:complies'('urn:example:carol6175', false)). +answer('urn:example:complies'('urn:example:carol6176', false)). +answer('urn:example:complies'('urn:example:carol6177', false)). +answer('urn:example:complies'('urn:example:carol6178', false)). +answer('urn:example:complies'('urn:example:carol6179', false)). +answer('urn:example:complies'('urn:example:carol6180', false)). +answer('urn:example:complies'('urn:example:carol6181', false)). +answer('urn:example:complies'('urn:example:carol6182', false)). +answer('urn:example:complies'('urn:example:carol6183', false)). +answer('urn:example:complies'('urn:example:carol6184', false)). +answer('urn:example:complies'('urn:example:carol6185', false)). +answer('urn:example:complies'('urn:example:carol6186', false)). +answer('urn:example:complies'('urn:example:carol6187', false)). +answer('urn:example:complies'('urn:example:carol6188', false)). +answer('urn:example:complies'('urn:example:carol6189', false)). +answer('urn:example:complies'('urn:example:carol6190', false)). +answer('urn:example:complies'('urn:example:carol6191', false)). +answer('urn:example:complies'('urn:example:carol6192', false)). +answer('urn:example:complies'('urn:example:carol6193', false)). +answer('urn:example:complies'('urn:example:carol6194', false)). +answer('urn:example:complies'('urn:example:carol6195', false)). +answer('urn:example:complies'('urn:example:carol6196', false)). +answer('urn:example:complies'('urn:example:carol6197', false)). +answer('urn:example:complies'('urn:example:carol6198', false)). +answer('urn:example:complies'('urn:example:carol6199', false)). +answer('urn:example:complies'('urn:example:carol6200', false)). +answer('urn:example:complies'('urn:example:carol6201', false)). +answer('urn:example:complies'('urn:example:carol6202', false)). +answer('urn:example:complies'('urn:example:carol6203', false)). +answer('urn:example:complies'('urn:example:carol6204', false)). +answer('urn:example:complies'('urn:example:carol6205', false)). +answer('urn:example:complies'('urn:example:carol6206', false)). +answer('urn:example:complies'('urn:example:carol6207', false)). +answer('urn:example:complies'('urn:example:carol6208', false)). +answer('urn:example:complies'('urn:example:carol6209', false)). +answer('urn:example:complies'('urn:example:carol6210', false)). +answer('urn:example:complies'('urn:example:carol6211', false)). +answer('urn:example:complies'('urn:example:carol6212', false)). +answer('urn:example:complies'('urn:example:carol6213', false)). +answer('urn:example:complies'('urn:example:carol6214', false)). +answer('urn:example:complies'('urn:example:carol6215', false)). +answer('urn:example:complies'('urn:example:carol6216', false)). +answer('urn:example:complies'('urn:example:carol6217', false)). +answer('urn:example:complies'('urn:example:carol6218', false)). +answer('urn:example:complies'('urn:example:carol6219', false)). +answer('urn:example:complies'('urn:example:carol6220', false)). +answer('urn:example:complies'('urn:example:carol6221', false)). +answer('urn:example:complies'('urn:example:carol6222', false)). +answer('urn:example:complies'('urn:example:carol6223', false)). +answer('urn:example:complies'('urn:example:carol6224', false)). +answer('urn:example:complies'('urn:example:carol6225', false)). +answer('urn:example:complies'('urn:example:carol6226', false)). +answer('urn:example:complies'('urn:example:carol6227', false)). +answer('urn:example:complies'('urn:example:carol6228', false)). +answer('urn:example:complies'('urn:example:carol6229', false)). +answer('urn:example:complies'('urn:example:carol6230', false)). +answer('urn:example:complies'('urn:example:carol6231', false)). +answer('urn:example:complies'('urn:example:carol6232', false)). +answer('urn:example:complies'('urn:example:carol6233', false)). +answer('urn:example:complies'('urn:example:carol6234', false)). +answer('urn:example:complies'('urn:example:carol6235', false)). +answer('urn:example:complies'('urn:example:carol6236', false)). +answer('urn:example:complies'('urn:example:carol6237', false)). +answer('urn:example:complies'('urn:example:carol6238', false)). +answer('urn:example:complies'('urn:example:carol6239', false)). +answer('urn:example:complies'('urn:example:carol6240', false)). +answer('urn:example:complies'('urn:example:carol6241', false)). +answer('urn:example:complies'('urn:example:carol6242', false)). +answer('urn:example:complies'('urn:example:carol6243', false)). +answer('urn:example:complies'('urn:example:carol6244', false)). +answer('urn:example:complies'('urn:example:carol6245', false)). +answer('urn:example:complies'('urn:example:carol6246', false)). +answer('urn:example:complies'('urn:example:carol6247', false)). +answer('urn:example:complies'('urn:example:carol6248', false)). +answer('urn:example:complies'('urn:example:carol6249', false)). +answer('urn:example:complies'('urn:example:carol6250', false)). +answer('urn:example:complies'('urn:example:carol6251', false)). +answer('urn:example:complies'('urn:example:carol6252', false)). +answer('urn:example:complies'('urn:example:carol6253', false)). +answer('urn:example:complies'('urn:example:carol6254', false)). +answer('urn:example:complies'('urn:example:carol6255', false)). +answer('urn:example:complies'('urn:example:carol6256', false)). +answer('urn:example:complies'('urn:example:carol6257', false)). +answer('urn:example:complies'('urn:example:carol6258', false)). +answer('urn:example:complies'('urn:example:carol6259', false)). +answer('urn:example:complies'('urn:example:carol6260', false)). +answer('urn:example:complies'('urn:example:carol6261', false)). +answer('urn:example:complies'('urn:example:carol6262', false)). +answer('urn:example:complies'('urn:example:carol6263', false)). +answer('urn:example:complies'('urn:example:carol6264', false)). +answer('urn:example:complies'('urn:example:carol6265', false)). +answer('urn:example:complies'('urn:example:carol6266', false)). +answer('urn:example:complies'('urn:example:carol6267', false)). +answer('urn:example:complies'('urn:example:carol6268', false)). +answer('urn:example:complies'('urn:example:carol6269', false)). +answer('urn:example:complies'('urn:example:carol6270', false)). +answer('urn:example:complies'('urn:example:carol6271', false)). +answer('urn:example:complies'('urn:example:carol6272', false)). +answer('urn:example:complies'('urn:example:carol6273', false)). +answer('urn:example:complies'('urn:example:carol6274', false)). +answer('urn:example:complies'('urn:example:carol6275', false)). +answer('urn:example:complies'('urn:example:carol6276', false)). +answer('urn:example:complies'('urn:example:carol6277', false)). +answer('urn:example:complies'('urn:example:carol6278', false)). +answer('urn:example:complies'('urn:example:carol6279', false)). +answer('urn:example:complies'('urn:example:carol6280', false)). +answer('urn:example:complies'('urn:example:carol6281', false)). +answer('urn:example:complies'('urn:example:carol6282', false)). +answer('urn:example:complies'('urn:example:carol6283', false)). +answer('urn:example:complies'('urn:example:carol6284', false)). +answer('urn:example:complies'('urn:example:carol6285', false)). +answer('urn:example:complies'('urn:example:carol6286', false)). +answer('urn:example:complies'('urn:example:carol6287', false)). +answer('urn:example:complies'('urn:example:carol6288', false)). +answer('urn:example:complies'('urn:example:carol6289', false)). +answer('urn:example:complies'('urn:example:carol6290', false)). +answer('urn:example:complies'('urn:example:carol6291', false)). +answer('urn:example:complies'('urn:example:carol6292', false)). +answer('urn:example:complies'('urn:example:carol6293', false)). +answer('urn:example:complies'('urn:example:carol6294', false)). +answer('urn:example:complies'('urn:example:carol6295', false)). +answer('urn:example:complies'('urn:example:carol6296', false)). +answer('urn:example:complies'('urn:example:carol6297', false)). +answer('urn:example:complies'('urn:example:carol6298', false)). +answer('urn:example:complies'('urn:example:carol6299', false)). +answer('urn:example:complies'('urn:example:carol6300', false)). +answer('urn:example:complies'('urn:example:carol6301', false)). +answer('urn:example:complies'('urn:example:carol6302', false)). +answer('urn:example:complies'('urn:example:carol6303', false)). +answer('urn:example:complies'('urn:example:carol6304', false)). +answer('urn:example:complies'('urn:example:carol6305', false)). +answer('urn:example:complies'('urn:example:carol6306', false)). +answer('urn:example:complies'('urn:example:carol6307', false)). +answer('urn:example:complies'('urn:example:carol6308', false)). +answer('urn:example:complies'('urn:example:carol6309', false)). +answer('urn:example:complies'('urn:example:carol6310', false)). +answer('urn:example:complies'('urn:example:carol6311', false)). +answer('urn:example:complies'('urn:example:carol6312', false)). +answer('urn:example:complies'('urn:example:carol6313', false)). +answer('urn:example:complies'('urn:example:carol6314', false)). +answer('urn:example:complies'('urn:example:carol6315', false)). +answer('urn:example:complies'('urn:example:carol6316', false)). +answer('urn:example:complies'('urn:example:carol6317', false)). +answer('urn:example:complies'('urn:example:carol6318', false)). +answer('urn:example:complies'('urn:example:carol6319', false)). +answer('urn:example:complies'('urn:example:carol6320', false)). +answer('urn:example:complies'('urn:example:carol6321', false)). +answer('urn:example:complies'('urn:example:carol6322', false)). +answer('urn:example:complies'('urn:example:carol6323', false)). +answer('urn:example:complies'('urn:example:carol6324', false)). +answer('urn:example:complies'('urn:example:carol6325', false)). +answer('urn:example:complies'('urn:example:carol6326', false)). +answer('urn:example:complies'('urn:example:carol6327', false)). +answer('urn:example:complies'('urn:example:carol6328', false)). +answer('urn:example:complies'('urn:example:carol6329', false)). +answer('urn:example:complies'('urn:example:carol6330', false)). +answer('urn:example:complies'('urn:example:carol6331', false)). +answer('urn:example:complies'('urn:example:carol6332', false)). +answer('urn:example:complies'('urn:example:carol6333', false)). +answer('urn:example:complies'('urn:example:carol6334', false)). +answer('urn:example:complies'('urn:example:carol6335', false)). +answer('urn:example:complies'('urn:example:carol6336', false)). +answer('urn:example:complies'('urn:example:carol6337', false)). +answer('urn:example:complies'('urn:example:carol6338', false)). +answer('urn:example:complies'('urn:example:carol6339', false)). +answer('urn:example:complies'('urn:example:carol6340', false)). +answer('urn:example:complies'('urn:example:carol6341', false)). +answer('urn:example:complies'('urn:example:carol6342', false)). +answer('urn:example:complies'('urn:example:carol6343', false)). +answer('urn:example:complies'('urn:example:carol6344', false)). +answer('urn:example:complies'('urn:example:carol6345', false)). +answer('urn:example:complies'('urn:example:carol6346', false)). +answer('urn:example:complies'('urn:example:carol6347', false)). +answer('urn:example:complies'('urn:example:carol6348', false)). +answer('urn:example:complies'('urn:example:carol6349', false)). +answer('urn:example:complies'('urn:example:carol6350', false)). +answer('urn:example:complies'('urn:example:carol6351', false)). +answer('urn:example:complies'('urn:example:carol6352', false)). +answer('urn:example:complies'('urn:example:carol6353', false)). +answer('urn:example:complies'('urn:example:carol6354', false)). +answer('urn:example:complies'('urn:example:carol6355', false)). +answer('urn:example:complies'('urn:example:carol6356', false)). +answer('urn:example:complies'('urn:example:carol6357', false)). +answer('urn:example:complies'('urn:example:carol6358', false)). +answer('urn:example:complies'('urn:example:carol6359', false)). +answer('urn:example:complies'('urn:example:carol6360', false)). +answer('urn:example:complies'('urn:example:carol6361', false)). +answer('urn:example:complies'('urn:example:carol6362', false)). +answer('urn:example:complies'('urn:example:carol6363', false)). +answer('urn:example:complies'('urn:example:carol6364', false)). +answer('urn:example:complies'('urn:example:carol6365', false)). +answer('urn:example:complies'('urn:example:carol6366', false)). +answer('urn:example:complies'('urn:example:carol6367', false)). +answer('urn:example:complies'('urn:example:carol6368', false)). +answer('urn:example:complies'('urn:example:carol6369', false)). +answer('urn:example:complies'('urn:example:carol6370', false)). +answer('urn:example:complies'('urn:example:carol6371', false)). +answer('urn:example:complies'('urn:example:carol6372', false)). +answer('urn:example:complies'('urn:example:carol6373', false)). +answer('urn:example:complies'('urn:example:carol6374', false)). +answer('urn:example:complies'('urn:example:carol6375', false)). +answer('urn:example:complies'('urn:example:carol6376', false)). +answer('urn:example:complies'('urn:example:carol6377', false)). +answer('urn:example:complies'('urn:example:carol6378', false)). +answer('urn:example:complies'('urn:example:carol6379', false)). +answer('urn:example:complies'('urn:example:carol6380', false)). +answer('urn:example:complies'('urn:example:carol6381', false)). +answer('urn:example:complies'('urn:example:carol6382', false)). +answer('urn:example:complies'('urn:example:carol6383', false)). +answer('urn:example:complies'('urn:example:carol6384', false)). +answer('urn:example:complies'('urn:example:carol6385', false)). +answer('urn:example:complies'('urn:example:carol6386', false)). +answer('urn:example:complies'('urn:example:carol6387', false)). +answer('urn:example:complies'('urn:example:carol6388', false)). +answer('urn:example:complies'('urn:example:carol6389', false)). +answer('urn:example:complies'('urn:example:carol6390', false)). +answer('urn:example:complies'('urn:example:carol6391', false)). +answer('urn:example:complies'('urn:example:carol6392', false)). +answer('urn:example:complies'('urn:example:carol6393', false)). +answer('urn:example:complies'('urn:example:carol6394', false)). +answer('urn:example:complies'('urn:example:carol6395', false)). +answer('urn:example:complies'('urn:example:carol6396', false)). +answer('urn:example:complies'('urn:example:carol6397', false)). +answer('urn:example:complies'('urn:example:carol6398', false)). +answer('urn:example:complies'('urn:example:carol6399', false)). +answer('urn:example:complies'('urn:example:carol6400', false)). +answer('urn:example:complies'('urn:example:carol6401', false)). +answer('urn:example:complies'('urn:example:carol6402', false)). +answer('urn:example:complies'('urn:example:carol6403', false)). +answer('urn:example:complies'('urn:example:carol6404', false)). +answer('urn:example:complies'('urn:example:carol6405', false)). +answer('urn:example:complies'('urn:example:carol6406', false)). +answer('urn:example:complies'('urn:example:carol6407', false)). +answer('urn:example:complies'('urn:example:carol6408', false)). +answer('urn:example:complies'('urn:example:carol6409', false)). +answer('urn:example:complies'('urn:example:carol6410', false)). +answer('urn:example:complies'('urn:example:carol6411', false)). +answer('urn:example:complies'('urn:example:carol6412', false)). +answer('urn:example:complies'('urn:example:carol6413', false)). +answer('urn:example:complies'('urn:example:carol6414', false)). +answer('urn:example:complies'('urn:example:carol6415', false)). +answer('urn:example:complies'('urn:example:carol6416', false)). +answer('urn:example:complies'('urn:example:carol6417', false)). +answer('urn:example:complies'('urn:example:carol6418', false)). +answer('urn:example:complies'('urn:example:carol6419', false)). +answer('urn:example:complies'('urn:example:carol6420', false)). +answer('urn:example:complies'('urn:example:carol6421', false)). +answer('urn:example:complies'('urn:example:carol6422', false)). +answer('urn:example:complies'('urn:example:carol6423', false)). +answer('urn:example:complies'('urn:example:carol6424', false)). +answer('urn:example:complies'('urn:example:carol6425', false)). +answer('urn:example:complies'('urn:example:carol6426', false)). +answer('urn:example:complies'('urn:example:carol6427', false)). +answer('urn:example:complies'('urn:example:carol6428', false)). +answer('urn:example:complies'('urn:example:carol6429', false)). +answer('urn:example:complies'('urn:example:carol6430', false)). +answer('urn:example:complies'('urn:example:carol6431', false)). +answer('urn:example:complies'('urn:example:carol6432', false)). +answer('urn:example:complies'('urn:example:carol6433', false)). +answer('urn:example:complies'('urn:example:carol6434', false)). +answer('urn:example:complies'('urn:example:carol6435', false)). +answer('urn:example:complies'('urn:example:carol6436', false)). +answer('urn:example:complies'('urn:example:carol6437', false)). +answer('urn:example:complies'('urn:example:carol6438', false)). +answer('urn:example:complies'('urn:example:carol6439', false)). +answer('urn:example:complies'('urn:example:carol6440', false)). +answer('urn:example:complies'('urn:example:carol6441', false)). +answer('urn:example:complies'('urn:example:carol6442', false)). +answer('urn:example:complies'('urn:example:carol6443', false)). +answer('urn:example:complies'('urn:example:carol6444', false)). +answer('urn:example:complies'('urn:example:carol6445', false)). +answer('urn:example:complies'('urn:example:carol6446', false)). +answer('urn:example:complies'('urn:example:carol6447', false)). +answer('urn:example:complies'('urn:example:carol6448', false)). +answer('urn:example:complies'('urn:example:carol6449', false)). +answer('urn:example:complies'('urn:example:carol6450', false)). +answer('urn:example:complies'('urn:example:carol6451', false)). +answer('urn:example:complies'('urn:example:carol6452', false)). +answer('urn:example:complies'('urn:example:carol6453', false)). +answer('urn:example:complies'('urn:example:carol6454', false)). +answer('urn:example:complies'('urn:example:carol6455', false)). +answer('urn:example:complies'('urn:example:carol6456', false)). +answer('urn:example:complies'('urn:example:carol6457', false)). +answer('urn:example:complies'('urn:example:carol6458', false)). +answer('urn:example:complies'('urn:example:carol6459', false)). +answer('urn:example:complies'('urn:example:carol6460', false)). +answer('urn:example:complies'('urn:example:carol6461', false)). +answer('urn:example:complies'('urn:example:carol6462', false)). +answer('urn:example:complies'('urn:example:carol6463', false)). +answer('urn:example:complies'('urn:example:carol6464', false)). +answer('urn:example:complies'('urn:example:carol6465', false)). +answer('urn:example:complies'('urn:example:carol6466', false)). +answer('urn:example:complies'('urn:example:carol6467', false)). +answer('urn:example:complies'('urn:example:carol6468', false)). +answer('urn:example:complies'('urn:example:carol6469', false)). +answer('urn:example:complies'('urn:example:carol6470', false)). +answer('urn:example:complies'('urn:example:carol6471', false)). +answer('urn:example:complies'('urn:example:carol6472', false)). +answer('urn:example:complies'('urn:example:carol6473', false)). +answer('urn:example:complies'('urn:example:carol6474', false)). +answer('urn:example:complies'('urn:example:carol6475', false)). +answer('urn:example:complies'('urn:example:carol6476', false)). +answer('urn:example:complies'('urn:example:carol6477', false)). +answer('urn:example:complies'('urn:example:carol6478', false)). +answer('urn:example:complies'('urn:example:carol6479', false)). +answer('urn:example:complies'('urn:example:carol6480', false)). +answer('urn:example:complies'('urn:example:carol6481', false)). +answer('urn:example:complies'('urn:example:carol6482', false)). +answer('urn:example:complies'('urn:example:carol6483', false)). +answer('urn:example:complies'('urn:example:carol6484', false)). +answer('urn:example:complies'('urn:example:carol6485', false)). +answer('urn:example:complies'('urn:example:carol6486', false)). +answer('urn:example:complies'('urn:example:carol6487', false)). +answer('urn:example:complies'('urn:example:carol6488', false)). +answer('urn:example:complies'('urn:example:carol6489', false)). +answer('urn:example:complies'('urn:example:carol6490', false)). +answer('urn:example:complies'('urn:example:carol6491', false)). +answer('urn:example:complies'('urn:example:carol6492', false)). +answer('urn:example:complies'('urn:example:carol6493', false)). +answer('urn:example:complies'('urn:example:carol6494', false)). +answer('urn:example:complies'('urn:example:carol6495', false)). +answer('urn:example:complies'('urn:example:carol6496', false)). +answer('urn:example:complies'('urn:example:carol6497', false)). +answer('urn:example:complies'('urn:example:carol6498', false)). +answer('urn:example:complies'('urn:example:carol6499', false)). +answer('urn:example:complies'('urn:example:carol6500', false)). +answer('urn:example:complies'('urn:example:carol6501', false)). +answer('urn:example:complies'('urn:example:carol6502', false)). +answer('urn:example:complies'('urn:example:carol6503', false)). +answer('urn:example:complies'('urn:example:carol6504', false)). +answer('urn:example:complies'('urn:example:carol6505', false)). +answer('urn:example:complies'('urn:example:carol6506', false)). +answer('urn:example:complies'('urn:example:carol6507', false)). +answer('urn:example:complies'('urn:example:carol6508', false)). +answer('urn:example:complies'('urn:example:carol6509', false)). +answer('urn:example:complies'('urn:example:carol6510', false)). +answer('urn:example:complies'('urn:example:carol6511', false)). +answer('urn:example:complies'('urn:example:carol6512', false)). +answer('urn:example:complies'('urn:example:carol6513', false)). +answer('urn:example:complies'('urn:example:carol6514', false)). +answer('urn:example:complies'('urn:example:carol6515', false)). +answer('urn:example:complies'('urn:example:carol6516', false)). +answer('urn:example:complies'('urn:example:carol6517', false)). +answer('urn:example:complies'('urn:example:carol6518', false)). +answer('urn:example:complies'('urn:example:carol6519', false)). +answer('urn:example:complies'('urn:example:carol6520', false)). +answer('urn:example:complies'('urn:example:carol6521', false)). +answer('urn:example:complies'('urn:example:carol6522', false)). +answer('urn:example:complies'('urn:example:carol6523', false)). +answer('urn:example:complies'('urn:example:carol6524', false)). +answer('urn:example:complies'('urn:example:carol6525', false)). +answer('urn:example:complies'('urn:example:carol6526', false)). +answer('urn:example:complies'('urn:example:carol6527', false)). +answer('urn:example:complies'('urn:example:carol6528', false)). +answer('urn:example:complies'('urn:example:carol6529', false)). +answer('urn:example:complies'('urn:example:carol6530', false)). +answer('urn:example:complies'('urn:example:carol6531', false)). +answer('urn:example:complies'('urn:example:carol6532', false)). +answer('urn:example:complies'('urn:example:carol6533', false)). +answer('urn:example:complies'('urn:example:carol6534', false)). +answer('urn:example:complies'('urn:example:carol6535', false)). +answer('urn:example:complies'('urn:example:carol6536', false)). +answer('urn:example:complies'('urn:example:carol6537', false)). +answer('urn:example:complies'('urn:example:carol6538', false)). +answer('urn:example:complies'('urn:example:carol6539', false)). +answer('urn:example:complies'('urn:example:carol6540', false)). +answer('urn:example:complies'('urn:example:carol6541', false)). +answer('urn:example:complies'('urn:example:carol6542', false)). +answer('urn:example:complies'('urn:example:carol6543', false)). +answer('urn:example:complies'('urn:example:carol6544', false)). +answer('urn:example:complies'('urn:example:carol6545', false)). +answer('urn:example:complies'('urn:example:carol6546', false)). +answer('urn:example:complies'('urn:example:carol6547', false)). +answer('urn:example:complies'('urn:example:carol6548', false)). +answer('urn:example:complies'('urn:example:carol6549', false)). +answer('urn:example:complies'('urn:example:carol6550', false)). +answer('urn:example:complies'('urn:example:carol6551', false)). +answer('urn:example:complies'('urn:example:carol6552', false)). +answer('urn:example:complies'('urn:example:carol6553', false)). +answer('urn:example:complies'('urn:example:carol6554', false)). +answer('urn:example:complies'('urn:example:carol6555', false)). +answer('urn:example:complies'('urn:example:carol6556', false)). +answer('urn:example:complies'('urn:example:carol6557', false)). +answer('urn:example:complies'('urn:example:carol6558', false)). +answer('urn:example:complies'('urn:example:carol6559', false)). +answer('urn:example:complies'('urn:example:carol6560', false)). +answer('urn:example:complies'('urn:example:carol6561', false)). +answer('urn:example:complies'('urn:example:carol6562', false)). +answer('urn:example:complies'('urn:example:carol6563', false)). +answer('urn:example:complies'('urn:example:carol6564', false)). +answer('urn:example:complies'('urn:example:carol6565', false)). +answer('urn:example:complies'('urn:example:carol6566', false)). +answer('urn:example:complies'('urn:example:carol6567', false)). +answer('urn:example:complies'('urn:example:carol6568', false)). +answer('urn:example:complies'('urn:example:carol6569', false)). +answer('urn:example:complies'('urn:example:carol6570', false)). +answer('urn:example:complies'('urn:example:carol6571', false)). +answer('urn:example:complies'('urn:example:carol6572', false)). +answer('urn:example:complies'('urn:example:carol6573', false)). +answer('urn:example:complies'('urn:example:carol6574', false)). +answer('urn:example:complies'('urn:example:carol6575', false)). +answer('urn:example:complies'('urn:example:carol6576', false)). +answer('urn:example:complies'('urn:example:carol6577', false)). +answer('urn:example:complies'('urn:example:carol6578', false)). +answer('urn:example:complies'('urn:example:carol6579', false)). +answer('urn:example:complies'('urn:example:carol6580', false)). +answer('urn:example:complies'('urn:example:carol6581', false)). +answer('urn:example:complies'('urn:example:carol6582', false)). +answer('urn:example:complies'('urn:example:carol6583', false)). +answer('urn:example:complies'('urn:example:carol6584', false)). +answer('urn:example:complies'('urn:example:carol6585', false)). +answer('urn:example:complies'('urn:example:carol6586', false)). +answer('urn:example:complies'('urn:example:carol6587', false)). +answer('urn:example:complies'('urn:example:carol6588', false)). +answer('urn:example:complies'('urn:example:carol6589', false)). +answer('urn:example:complies'('urn:example:carol6590', false)). +answer('urn:example:complies'('urn:example:carol6591', false)). +answer('urn:example:complies'('urn:example:carol6592', false)). +answer('urn:example:complies'('urn:example:carol6593', false)). +answer('urn:example:complies'('urn:example:carol6594', false)). +answer('urn:example:complies'('urn:example:carol6595', false)). +answer('urn:example:complies'('urn:example:carol6596', false)). +answer('urn:example:complies'('urn:example:carol6597', false)). +answer('urn:example:complies'('urn:example:carol6598', false)). +answer('urn:example:complies'('urn:example:carol6599', false)). +answer('urn:example:complies'('urn:example:carol6600', false)). +answer('urn:example:complies'('urn:example:carol6601', false)). +answer('urn:example:complies'('urn:example:carol6602', false)). +answer('urn:example:complies'('urn:example:carol6603', false)). +answer('urn:example:complies'('urn:example:carol6604', false)). +answer('urn:example:complies'('urn:example:carol6605', false)). +answer('urn:example:complies'('urn:example:carol6606', false)). +answer('urn:example:complies'('urn:example:carol6607', false)). +answer('urn:example:complies'('urn:example:carol6608', false)). +answer('urn:example:complies'('urn:example:carol6609', false)). +answer('urn:example:complies'('urn:example:carol6610', false)). +answer('urn:example:complies'('urn:example:carol6611', false)). +answer('urn:example:complies'('urn:example:carol6612', false)). +answer('urn:example:complies'('urn:example:carol6613', false)). +answer('urn:example:complies'('urn:example:carol6614', false)). +answer('urn:example:complies'('urn:example:carol6615', false)). +answer('urn:example:complies'('urn:example:carol6616', false)). +answer('urn:example:complies'('urn:example:carol6617', false)). +answer('urn:example:complies'('urn:example:carol6618', false)). +answer('urn:example:complies'('urn:example:carol6619', false)). +answer('urn:example:complies'('urn:example:carol6620', false)). +answer('urn:example:complies'('urn:example:carol6621', false)). +answer('urn:example:complies'('urn:example:carol6622', false)). +answer('urn:example:complies'('urn:example:carol6623', false)). +answer('urn:example:complies'('urn:example:carol6624', false)). +answer('urn:example:complies'('urn:example:carol6625', false)). +answer('urn:example:complies'('urn:example:carol6626', false)). +answer('urn:example:complies'('urn:example:carol6627', false)). +answer('urn:example:complies'('urn:example:carol6628', false)). +answer('urn:example:complies'('urn:example:carol6629', false)). +answer('urn:example:complies'('urn:example:carol6630', false)). +answer('urn:example:complies'('urn:example:carol6631', false)). +answer('urn:example:complies'('urn:example:carol6632', false)). +answer('urn:example:complies'('urn:example:carol6633', false)). +answer('urn:example:complies'('urn:example:carol6634', false)). +answer('urn:example:complies'('urn:example:carol6635', false)). +answer('urn:example:complies'('urn:example:carol6636', false)). +answer('urn:example:complies'('urn:example:carol6637', false)). +answer('urn:example:complies'('urn:example:carol6638', false)). +answer('urn:example:complies'('urn:example:carol6639', false)). +answer('urn:example:complies'('urn:example:carol6640', false)). +answer('urn:example:complies'('urn:example:carol6641', false)). +answer('urn:example:complies'('urn:example:carol6642', false)). +answer('urn:example:complies'('urn:example:carol6643', false)). +answer('urn:example:complies'('urn:example:carol6644', false)). +answer('urn:example:complies'('urn:example:carol6645', false)). +answer('urn:example:complies'('urn:example:carol6646', false)). +answer('urn:example:complies'('urn:example:carol6647', false)). +answer('urn:example:complies'('urn:example:carol6648', false)). +answer('urn:example:complies'('urn:example:carol6649', false)). +answer('urn:example:complies'('urn:example:carol6650', false)). +answer('urn:example:complies'('urn:example:carol6651', false)). +answer('urn:example:complies'('urn:example:carol6652', false)). +answer('urn:example:complies'('urn:example:carol6653', false)). +answer('urn:example:complies'('urn:example:carol6654', false)). +answer('urn:example:complies'('urn:example:carol6655', false)). +answer('urn:example:complies'('urn:example:carol6656', false)). +answer('urn:example:complies'('urn:example:carol6657', false)). +answer('urn:example:complies'('urn:example:carol6658', false)). +answer('urn:example:complies'('urn:example:carol6659', false)). +answer('urn:example:complies'('urn:example:carol6660', false)). +answer('urn:example:complies'('urn:example:carol6661', false)). +answer('urn:example:complies'('urn:example:carol6662', false)). +answer('urn:example:complies'('urn:example:carol6663', false)). +answer('urn:example:complies'('urn:example:carol6664', false)). +answer('urn:example:complies'('urn:example:carol6665', false)). +answer('urn:example:complies'('urn:example:carol6666', false)). +answer('urn:example:complies'('urn:example:carol6667', false)). +answer('urn:example:complies'('urn:example:carol6668', false)). +answer('urn:example:complies'('urn:example:carol6669', false)). +answer('urn:example:complies'('urn:example:carol6670', false)). +answer('urn:example:complies'('urn:example:carol6671', false)). +answer('urn:example:complies'('urn:example:carol6672', false)). +answer('urn:example:complies'('urn:example:carol6673', false)). +answer('urn:example:complies'('urn:example:carol6674', false)). +answer('urn:example:complies'('urn:example:carol6675', false)). +answer('urn:example:complies'('urn:example:carol6676', false)). +answer('urn:example:complies'('urn:example:carol6677', false)). +answer('urn:example:complies'('urn:example:carol6678', false)). +answer('urn:example:complies'('urn:example:carol6679', false)). +answer('urn:example:complies'('urn:example:carol6680', false)). +answer('urn:example:complies'('urn:example:carol6681', false)). +answer('urn:example:complies'('urn:example:carol6682', false)). +answer('urn:example:complies'('urn:example:carol6683', false)). +answer('urn:example:complies'('urn:example:carol6684', false)). +answer('urn:example:complies'('urn:example:carol6685', false)). +answer('urn:example:complies'('urn:example:carol6686', false)). +answer('urn:example:complies'('urn:example:carol6687', false)). +answer('urn:example:complies'('urn:example:carol6688', false)). +answer('urn:example:complies'('urn:example:carol6689', false)). +answer('urn:example:complies'('urn:example:carol6690', false)). +answer('urn:example:complies'('urn:example:carol6691', false)). +answer('urn:example:complies'('urn:example:carol6692', false)). +answer('urn:example:complies'('urn:example:carol6693', false)). +answer('urn:example:complies'('urn:example:carol6694', false)). +answer('urn:example:complies'('urn:example:carol6695', false)). +answer('urn:example:complies'('urn:example:carol6696', false)). +answer('urn:example:complies'('urn:example:carol6697', false)). +answer('urn:example:complies'('urn:example:carol6698', false)). +answer('urn:example:complies'('urn:example:carol6699', false)). +answer('urn:example:complies'('urn:example:carol6700', false)). +answer('urn:example:complies'('urn:example:carol6701', false)). +answer('urn:example:complies'('urn:example:carol6702', false)). +answer('urn:example:complies'('urn:example:carol6703', false)). +answer('urn:example:complies'('urn:example:carol6704', false)). +answer('urn:example:complies'('urn:example:carol6705', false)). +answer('urn:example:complies'('urn:example:carol6706', false)). +answer('urn:example:complies'('urn:example:carol6707', false)). +answer('urn:example:complies'('urn:example:carol6708', false)). +answer('urn:example:complies'('urn:example:carol6709', false)). +answer('urn:example:complies'('urn:example:carol6710', false)). +answer('urn:example:complies'('urn:example:carol6711', false)). +answer('urn:example:complies'('urn:example:carol6712', false)). +answer('urn:example:complies'('urn:example:carol6713', false)). +answer('urn:example:complies'('urn:example:carol6714', false)). +answer('urn:example:complies'('urn:example:carol6715', false)). +answer('urn:example:complies'('urn:example:carol6716', false)). +answer('urn:example:complies'('urn:example:carol6717', false)). +answer('urn:example:complies'('urn:example:carol6718', false)). +answer('urn:example:complies'('urn:example:carol6719', false)). +answer('urn:example:complies'('urn:example:carol6720', false)). +answer('urn:example:complies'('urn:example:carol6721', false)). +answer('urn:example:complies'('urn:example:carol6722', false)). +answer('urn:example:complies'('urn:example:carol6723', false)). +answer('urn:example:complies'('urn:example:carol6724', false)). +answer('urn:example:complies'('urn:example:carol6725', false)). +answer('urn:example:complies'('urn:example:carol6726', false)). +answer('urn:example:complies'('urn:example:carol6727', false)). +answer('urn:example:complies'('urn:example:carol6728', false)). +answer('urn:example:complies'('urn:example:carol6729', false)). +answer('urn:example:complies'('urn:example:carol6730', false)). +answer('urn:example:complies'('urn:example:carol6731', false)). +answer('urn:example:complies'('urn:example:carol6732', false)). +answer('urn:example:complies'('urn:example:carol6733', false)). +answer('urn:example:complies'('urn:example:carol6734', false)). +answer('urn:example:complies'('urn:example:carol6735', false)). +answer('urn:example:complies'('urn:example:carol6736', false)). +answer('urn:example:complies'('urn:example:carol6737', false)). +answer('urn:example:complies'('urn:example:carol6738', false)). +answer('urn:example:complies'('urn:example:carol6739', false)). +answer('urn:example:complies'('urn:example:carol6740', false)). +answer('urn:example:complies'('urn:example:carol6741', false)). +answer('urn:example:complies'('urn:example:carol6742', false)). +answer('urn:example:complies'('urn:example:carol6743', false)). +answer('urn:example:complies'('urn:example:carol6744', false)). +answer('urn:example:complies'('urn:example:carol6745', false)). +answer('urn:example:complies'('urn:example:carol6746', false)). +answer('urn:example:complies'('urn:example:carol6747', false)). +answer('urn:example:complies'('urn:example:carol6748', false)). +answer('urn:example:complies'('urn:example:carol6749', false)). +answer('urn:example:complies'('urn:example:carol6750', false)). +answer('urn:example:complies'('urn:example:carol6751', false)). +answer('urn:example:complies'('urn:example:carol6752', false)). +answer('urn:example:complies'('urn:example:carol6753', false)). +answer('urn:example:complies'('urn:example:carol6754', false)). +answer('urn:example:complies'('urn:example:carol6755', false)). +answer('urn:example:complies'('urn:example:carol6756', false)). +answer('urn:example:complies'('urn:example:carol6757', false)). +answer('urn:example:complies'('urn:example:carol6758', false)). +answer('urn:example:complies'('urn:example:carol6759', false)). +answer('urn:example:complies'('urn:example:carol6760', false)). +answer('urn:example:complies'('urn:example:carol6761', false)). +answer('urn:example:complies'('urn:example:carol6762', false)). +answer('urn:example:complies'('urn:example:carol6763', false)). +answer('urn:example:complies'('urn:example:carol6764', false)). +answer('urn:example:complies'('urn:example:carol6765', false)). +answer('urn:example:complies'('urn:example:carol6766', false)). +answer('urn:example:complies'('urn:example:carol6767', false)). +answer('urn:example:complies'('urn:example:carol6768', false)). +answer('urn:example:complies'('urn:example:carol6769', false)). +answer('urn:example:complies'('urn:example:carol6770', false)). +answer('urn:example:complies'('urn:example:carol6771', false)). +answer('urn:example:complies'('urn:example:carol6772', false)). +answer('urn:example:complies'('urn:example:carol6773', false)). +answer('urn:example:complies'('urn:example:carol6774', false)). +answer('urn:example:complies'('urn:example:carol6775', false)). +answer('urn:example:complies'('urn:example:carol6776', false)). +answer('urn:example:complies'('urn:example:carol6777', false)). +answer('urn:example:complies'('urn:example:carol6778', false)). +answer('urn:example:complies'('urn:example:carol6779', false)). +answer('urn:example:complies'('urn:example:carol6780', false)). +answer('urn:example:complies'('urn:example:carol6781', false)). +answer('urn:example:complies'('urn:example:carol6782', false)). +answer('urn:example:complies'('urn:example:carol6783', false)). +answer('urn:example:complies'('urn:example:carol6784', false)). +answer('urn:example:complies'('urn:example:carol6785', false)). +answer('urn:example:complies'('urn:example:carol6786', false)). +answer('urn:example:complies'('urn:example:carol6787', false)). +answer('urn:example:complies'('urn:example:carol6788', false)). +answer('urn:example:complies'('urn:example:carol6789', false)). +answer('urn:example:complies'('urn:example:carol6790', false)). +answer('urn:example:complies'('urn:example:carol6791', false)). +answer('urn:example:complies'('urn:example:carol6792', false)). +answer('urn:example:complies'('urn:example:carol6793', false)). +answer('urn:example:complies'('urn:example:carol6794', false)). +answer('urn:example:complies'('urn:example:carol6795', false)). +answer('urn:example:complies'('urn:example:carol6796', false)). +answer('urn:example:complies'('urn:example:carol6797', false)). +answer('urn:example:complies'('urn:example:carol6798', false)). +answer('urn:example:complies'('urn:example:carol6799', false)). +answer('urn:example:complies'('urn:example:carol6800', false)). +answer('urn:example:complies'('urn:example:carol6801', false)). +answer('urn:example:complies'('urn:example:carol6802', false)). +answer('urn:example:complies'('urn:example:carol6803', false)). +answer('urn:example:complies'('urn:example:carol6804', false)). +answer('urn:example:complies'('urn:example:carol6805', false)). +answer('urn:example:complies'('urn:example:carol6806', false)). +answer('urn:example:complies'('urn:example:carol6807', false)). +answer('urn:example:complies'('urn:example:carol6808', false)). +answer('urn:example:complies'('urn:example:carol6809', false)). +answer('urn:example:complies'('urn:example:carol6810', false)). +answer('urn:example:complies'('urn:example:carol6811', false)). +answer('urn:example:complies'('urn:example:carol6812', false)). +answer('urn:example:complies'('urn:example:carol6813', false)). +answer('urn:example:complies'('urn:example:carol6814', false)). +answer('urn:example:complies'('urn:example:carol6815', false)). +answer('urn:example:complies'('urn:example:carol6816', false)). +answer('urn:example:complies'('urn:example:carol6817', false)). +answer('urn:example:complies'('urn:example:carol6818', false)). +answer('urn:example:complies'('urn:example:carol6819', false)). +answer('urn:example:complies'('urn:example:carol6820', false)). +answer('urn:example:complies'('urn:example:carol6821', false)). +answer('urn:example:complies'('urn:example:carol6822', false)). +answer('urn:example:complies'('urn:example:carol6823', false)). +answer('urn:example:complies'('urn:example:carol6824', false)). +answer('urn:example:complies'('urn:example:carol6825', false)). +answer('urn:example:complies'('urn:example:carol6826', false)). +answer('urn:example:complies'('urn:example:carol6827', false)). +answer('urn:example:complies'('urn:example:carol6828', false)). +answer('urn:example:complies'('urn:example:carol6829', false)). +answer('urn:example:complies'('urn:example:carol6830', false)). +answer('urn:example:complies'('urn:example:carol6831', false)). +answer('urn:example:complies'('urn:example:carol6832', false)). +answer('urn:example:complies'('urn:example:carol6833', false)). +answer('urn:example:complies'('urn:example:carol6834', false)). +answer('urn:example:complies'('urn:example:carol6835', false)). +answer('urn:example:complies'('urn:example:carol6836', false)). +answer('urn:example:complies'('urn:example:carol6837', false)). +answer('urn:example:complies'('urn:example:carol6838', false)). +answer('urn:example:complies'('urn:example:carol6839', false)). +answer('urn:example:complies'('urn:example:carol6840', false)). +answer('urn:example:complies'('urn:example:carol6841', false)). +answer('urn:example:complies'('urn:example:carol6842', false)). +answer('urn:example:complies'('urn:example:carol6843', false)). +answer('urn:example:complies'('urn:example:carol6844', false)). +answer('urn:example:complies'('urn:example:carol6845', false)). +answer('urn:example:complies'('urn:example:carol6846', false)). +answer('urn:example:complies'('urn:example:carol6847', false)). +answer('urn:example:complies'('urn:example:carol6848', false)). +answer('urn:example:complies'('urn:example:carol6849', false)). +answer('urn:example:complies'('urn:example:carol6850', false)). +answer('urn:example:complies'('urn:example:carol6851', false)). +answer('urn:example:complies'('urn:example:carol6852', false)). +answer('urn:example:complies'('urn:example:carol6853', false)). +answer('urn:example:complies'('urn:example:carol6854', false)). +answer('urn:example:complies'('urn:example:carol6855', false)). +answer('urn:example:complies'('urn:example:carol6856', false)). +answer('urn:example:complies'('urn:example:carol6857', false)). +answer('urn:example:complies'('urn:example:carol6858', false)). +answer('urn:example:complies'('urn:example:carol6859', false)). +answer('urn:example:complies'('urn:example:carol6860', false)). +answer('urn:example:complies'('urn:example:carol6861', false)). +answer('urn:example:complies'('urn:example:carol6862', false)). +answer('urn:example:complies'('urn:example:carol6863', false)). +answer('urn:example:complies'('urn:example:carol6864', false)). +answer('urn:example:complies'('urn:example:carol6865', false)). +answer('urn:example:complies'('urn:example:carol6866', false)). +answer('urn:example:complies'('urn:example:carol6867', false)). +answer('urn:example:complies'('urn:example:carol6868', false)). +answer('urn:example:complies'('urn:example:carol6869', false)). +answer('urn:example:complies'('urn:example:carol6870', false)). +answer('urn:example:complies'('urn:example:carol6871', false)). +answer('urn:example:complies'('urn:example:carol6872', false)). +answer('urn:example:complies'('urn:example:carol6873', false)). +answer('urn:example:complies'('urn:example:carol6874', false)). +answer('urn:example:complies'('urn:example:carol6875', false)). +answer('urn:example:complies'('urn:example:carol6876', false)). +answer('urn:example:complies'('urn:example:carol6877', false)). +answer('urn:example:complies'('urn:example:carol6878', false)). +answer('urn:example:complies'('urn:example:carol6879', false)). +answer('urn:example:complies'('urn:example:carol6880', false)). +answer('urn:example:complies'('urn:example:carol6881', false)). +answer('urn:example:complies'('urn:example:carol6882', false)). +answer('urn:example:complies'('urn:example:carol6883', false)). +answer('urn:example:complies'('urn:example:carol6884', false)). +answer('urn:example:complies'('urn:example:carol6885', false)). +answer('urn:example:complies'('urn:example:carol6886', false)). +answer('urn:example:complies'('urn:example:carol6887', false)). +answer('urn:example:complies'('urn:example:carol6888', false)). +answer('urn:example:complies'('urn:example:carol6889', false)). +answer('urn:example:complies'('urn:example:carol6890', false)). +answer('urn:example:complies'('urn:example:carol6891', false)). +answer('urn:example:complies'('urn:example:carol6892', false)). +answer('urn:example:complies'('urn:example:carol6893', false)). +answer('urn:example:complies'('urn:example:carol6894', false)). +answer('urn:example:complies'('urn:example:carol6895', false)). +answer('urn:example:complies'('urn:example:carol6896', false)). +answer('urn:example:complies'('urn:example:carol6897', false)). +answer('urn:example:complies'('urn:example:carol6898', false)). +answer('urn:example:complies'('urn:example:carol6899', false)). +answer('urn:example:complies'('urn:example:carol6900', false)). +answer('urn:example:complies'('urn:example:carol6901', false)). +answer('urn:example:complies'('urn:example:carol6902', false)). +answer('urn:example:complies'('urn:example:carol6903', false)). +answer('urn:example:complies'('urn:example:carol6904', false)). +answer('urn:example:complies'('urn:example:carol6905', false)). +answer('urn:example:complies'('urn:example:carol6906', false)). +answer('urn:example:complies'('urn:example:carol6907', false)). +answer('urn:example:complies'('urn:example:carol6908', false)). +answer('urn:example:complies'('urn:example:carol6909', false)). +answer('urn:example:complies'('urn:example:carol6910', false)). +answer('urn:example:complies'('urn:example:carol6911', false)). +answer('urn:example:complies'('urn:example:carol6912', false)). +answer('urn:example:complies'('urn:example:carol6913', false)). +answer('urn:example:complies'('urn:example:carol6914', false)). +answer('urn:example:complies'('urn:example:carol6915', false)). +answer('urn:example:complies'('urn:example:carol6916', false)). +answer('urn:example:complies'('urn:example:carol6917', false)). +answer('urn:example:complies'('urn:example:carol6918', false)). +answer('urn:example:complies'('urn:example:carol6919', false)). +answer('urn:example:complies'('urn:example:carol6920', false)). +answer('urn:example:complies'('urn:example:carol6921', false)). +answer('urn:example:complies'('urn:example:carol6922', false)). +answer('urn:example:complies'('urn:example:carol6923', false)). +answer('urn:example:complies'('urn:example:carol6924', false)). +answer('urn:example:complies'('urn:example:carol6925', false)). +answer('urn:example:complies'('urn:example:carol6926', false)). +answer('urn:example:complies'('urn:example:carol6927', false)). +answer('urn:example:complies'('urn:example:carol6928', false)). +answer('urn:example:complies'('urn:example:carol6929', false)). +answer('urn:example:complies'('urn:example:carol6930', false)). +answer('urn:example:complies'('urn:example:carol6931', false)). +answer('urn:example:complies'('urn:example:carol6932', false)). +answer('urn:example:complies'('urn:example:carol6933', false)). +answer('urn:example:complies'('urn:example:carol6934', false)). +answer('urn:example:complies'('urn:example:carol6935', false)). +answer('urn:example:complies'('urn:example:carol6936', false)). +answer('urn:example:complies'('urn:example:carol6937', false)). +answer('urn:example:complies'('urn:example:carol6938', false)). +answer('urn:example:complies'('urn:example:carol6939', false)). +answer('urn:example:complies'('urn:example:carol6940', false)). +answer('urn:example:complies'('urn:example:carol6941', false)). +answer('urn:example:complies'('urn:example:carol6942', false)). +answer('urn:example:complies'('urn:example:carol6943', false)). +answer('urn:example:complies'('urn:example:carol6944', false)). +answer('urn:example:complies'('urn:example:carol6945', false)). +answer('urn:example:complies'('urn:example:carol6946', false)). +answer('urn:example:complies'('urn:example:carol6947', false)). +answer('urn:example:complies'('urn:example:carol6948', false)). +answer('urn:example:complies'('urn:example:carol6949', false)). +answer('urn:example:complies'('urn:example:carol6950', false)). +answer('urn:example:complies'('urn:example:carol6951', false)). +answer('urn:example:complies'('urn:example:carol6952', false)). +answer('urn:example:complies'('urn:example:carol6953', false)). +answer('urn:example:complies'('urn:example:carol6954', false)). +answer('urn:example:complies'('urn:example:carol6955', false)). +answer('urn:example:complies'('urn:example:carol6956', false)). +answer('urn:example:complies'('urn:example:carol6957', false)). +answer('urn:example:complies'('urn:example:carol6958', false)). +answer('urn:example:complies'('urn:example:carol6959', false)). +answer('urn:example:complies'('urn:example:carol6960', false)). +answer('urn:example:complies'('urn:example:carol6961', false)). +answer('urn:example:complies'('urn:example:carol6962', false)). +answer('urn:example:complies'('urn:example:carol6963', false)). +answer('urn:example:complies'('urn:example:carol6964', false)). +answer('urn:example:complies'('urn:example:carol6965', false)). +answer('urn:example:complies'('urn:example:carol6966', false)). +answer('urn:example:complies'('urn:example:carol6967', false)). +answer('urn:example:complies'('urn:example:carol6968', false)). +answer('urn:example:complies'('urn:example:carol6969', false)). +answer('urn:example:complies'('urn:example:carol6970', false)). +answer('urn:example:complies'('urn:example:carol6971', false)). +answer('urn:example:complies'('urn:example:carol6972', false)). +answer('urn:example:complies'('urn:example:carol6973', false)). +answer('urn:example:complies'('urn:example:carol6974', false)). +answer('urn:example:complies'('urn:example:carol6975', false)). +answer('urn:example:complies'('urn:example:carol6976', false)). +answer('urn:example:complies'('urn:example:carol6977', false)). +answer('urn:example:complies'('urn:example:carol6978', false)). +answer('urn:example:complies'('urn:example:carol6979', false)). +answer('urn:example:complies'('urn:example:carol6980', false)). +answer('urn:example:complies'('urn:example:carol6981', false)). +answer('urn:example:complies'('urn:example:carol6982', false)). +answer('urn:example:complies'('urn:example:carol6983', false)). +answer('urn:example:complies'('urn:example:carol6984', false)). +answer('urn:example:complies'('urn:example:carol6985', false)). +answer('urn:example:complies'('urn:example:carol6986', false)). +answer('urn:example:complies'('urn:example:carol6987', false)). +answer('urn:example:complies'('urn:example:carol6988', false)). +answer('urn:example:complies'('urn:example:carol6989', false)). +answer('urn:example:complies'('urn:example:carol6990', false)). +answer('urn:example:complies'('urn:example:carol6991', false)). +answer('urn:example:complies'('urn:example:carol6992', false)). +answer('urn:example:complies'('urn:example:carol6993', false)). +answer('urn:example:complies'('urn:example:carol6994', false)). +answer('urn:example:complies'('urn:example:carol6995', false)). +answer('urn:example:complies'('urn:example:carol6996', false)). +answer('urn:example:complies'('urn:example:carol6997', false)). +answer('urn:example:complies'('urn:example:carol6998', false)). +answer('urn:example:complies'('urn:example:carol6999', false)). +answer('urn:example:complies'('urn:example:carol7000', false)). +answer('urn:example:complies'('urn:example:carol7001', false)). +answer('urn:example:complies'('urn:example:carol7002', false)). +answer('urn:example:complies'('urn:example:carol7003', false)). +answer('urn:example:complies'('urn:example:carol7004', false)). +answer('urn:example:complies'('urn:example:carol7005', false)). +answer('urn:example:complies'('urn:example:carol7006', false)). +answer('urn:example:complies'('urn:example:carol7007', false)). +answer('urn:example:complies'('urn:example:carol7008', false)). +answer('urn:example:complies'('urn:example:carol7009', false)). +answer('urn:example:complies'('urn:example:carol7010', false)). +answer('urn:example:complies'('urn:example:carol7011', false)). +answer('urn:example:complies'('urn:example:carol7012', false)). +answer('urn:example:complies'('urn:example:carol7013', false)). +answer('urn:example:complies'('urn:example:carol7014', false)). +answer('urn:example:complies'('urn:example:carol7015', false)). +answer('urn:example:complies'('urn:example:carol7016', false)). +answer('urn:example:complies'('urn:example:carol7017', false)). +answer('urn:example:complies'('urn:example:carol7018', false)). +answer('urn:example:complies'('urn:example:carol7019', false)). +answer('urn:example:complies'('urn:example:carol7020', false)). +answer('urn:example:complies'('urn:example:carol7021', false)). +answer('urn:example:complies'('urn:example:carol7022', false)). +answer('urn:example:complies'('urn:example:carol7023', false)). +answer('urn:example:complies'('urn:example:carol7024', false)). +answer('urn:example:complies'('urn:example:carol7025', false)). +answer('urn:example:complies'('urn:example:carol7026', false)). +answer('urn:example:complies'('urn:example:carol7027', false)). +answer('urn:example:complies'('urn:example:carol7028', false)). +answer('urn:example:complies'('urn:example:carol7029', false)). +answer('urn:example:complies'('urn:example:carol7030', false)). +answer('urn:example:complies'('urn:example:carol7031', false)). +answer('urn:example:complies'('urn:example:carol7032', false)). +answer('urn:example:complies'('urn:example:carol7033', false)). +answer('urn:example:complies'('urn:example:carol7034', false)). +answer('urn:example:complies'('urn:example:carol7035', false)). +answer('urn:example:complies'('urn:example:carol7036', false)). +answer('urn:example:complies'('urn:example:carol7037', false)). +answer('urn:example:complies'('urn:example:carol7038', false)). +answer('urn:example:complies'('urn:example:carol7039', false)). +answer('urn:example:complies'('urn:example:carol7040', false)). +answer('urn:example:complies'('urn:example:carol7041', false)). +answer('urn:example:complies'('urn:example:carol7042', false)). +answer('urn:example:complies'('urn:example:carol7043', false)). +answer('urn:example:complies'('urn:example:carol7044', false)). +answer('urn:example:complies'('urn:example:carol7045', false)). +answer('urn:example:complies'('urn:example:carol7046', false)). +answer('urn:example:complies'('urn:example:carol7047', false)). +answer('urn:example:complies'('urn:example:carol7048', false)). +answer('urn:example:complies'('urn:example:carol7049', false)). +answer('urn:example:complies'('urn:example:carol7050', false)). +answer('urn:example:complies'('urn:example:carol7051', false)). +answer('urn:example:complies'('urn:example:carol7052', false)). +answer('urn:example:complies'('urn:example:carol7053', false)). +answer('urn:example:complies'('urn:example:carol7054', false)). +answer('urn:example:complies'('urn:example:carol7055', false)). +answer('urn:example:complies'('urn:example:carol7056', false)). +answer('urn:example:complies'('urn:example:carol7057', false)). +answer('urn:example:complies'('urn:example:carol7058', false)). +answer('urn:example:complies'('urn:example:carol7059', false)). +answer('urn:example:complies'('urn:example:carol7060', false)). +answer('urn:example:complies'('urn:example:carol7061', false)). +answer('urn:example:complies'('urn:example:carol7062', false)). +answer('urn:example:complies'('urn:example:carol7063', false)). +answer('urn:example:complies'('urn:example:carol7064', false)). +answer('urn:example:complies'('urn:example:carol7065', false)). +answer('urn:example:complies'('urn:example:carol7066', false)). +answer('urn:example:complies'('urn:example:carol7067', false)). +answer('urn:example:complies'('urn:example:carol7068', false)). +answer('urn:example:complies'('urn:example:carol7069', false)). +answer('urn:example:complies'('urn:example:carol7070', false)). +answer('urn:example:complies'('urn:example:carol7071', false)). +answer('urn:example:complies'('urn:example:carol7072', false)). +answer('urn:example:complies'('urn:example:carol7073', false)). +answer('urn:example:complies'('urn:example:carol7074', false)). +answer('urn:example:complies'('urn:example:carol7075', false)). +answer('urn:example:complies'('urn:example:carol7076', false)). +answer('urn:example:complies'('urn:example:carol7077', false)). +answer('urn:example:complies'('urn:example:carol7078', false)). +answer('urn:example:complies'('urn:example:carol7079', false)). +answer('urn:example:complies'('urn:example:carol7080', false)). +answer('urn:example:complies'('urn:example:carol7081', false)). +answer('urn:example:complies'('urn:example:carol7082', false)). +answer('urn:example:complies'('urn:example:carol7083', false)). +answer('urn:example:complies'('urn:example:carol7084', false)). +answer('urn:example:complies'('urn:example:carol7085', false)). +answer('urn:example:complies'('urn:example:carol7086', false)). +answer('urn:example:complies'('urn:example:carol7087', false)). +answer('urn:example:complies'('urn:example:carol7088', false)). +answer('urn:example:complies'('urn:example:carol7089', false)). +answer('urn:example:complies'('urn:example:carol7090', false)). +answer('urn:example:complies'('urn:example:carol7091', false)). +answer('urn:example:complies'('urn:example:carol7092', false)). +answer('urn:example:complies'('urn:example:carol7093', false)). +answer('urn:example:complies'('urn:example:carol7094', false)). +answer('urn:example:complies'('urn:example:carol7095', false)). +answer('urn:example:complies'('urn:example:carol7096', false)). +answer('urn:example:complies'('urn:example:carol7097', false)). +answer('urn:example:complies'('urn:example:carol7098', false)). +answer('urn:example:complies'('urn:example:carol7099', false)). +answer('urn:example:complies'('urn:example:carol7100', false)). +answer('urn:example:complies'('urn:example:carol7101', false)). +answer('urn:example:complies'('urn:example:carol7102', false)). +answer('urn:example:complies'('urn:example:carol7103', false)). +answer('urn:example:complies'('urn:example:carol7104', false)). +answer('urn:example:complies'('urn:example:carol7105', false)). +answer('urn:example:complies'('urn:example:carol7106', false)). +answer('urn:example:complies'('urn:example:carol7107', false)). +answer('urn:example:complies'('urn:example:carol7108', false)). +answer('urn:example:complies'('urn:example:carol7109', false)). +answer('urn:example:complies'('urn:example:carol7110', false)). +answer('urn:example:complies'('urn:example:carol7111', false)). +answer('urn:example:complies'('urn:example:carol7112', false)). +answer('urn:example:complies'('urn:example:carol7113', false)). +answer('urn:example:complies'('urn:example:carol7114', false)). +answer('urn:example:complies'('urn:example:carol7115', false)). +answer('urn:example:complies'('urn:example:carol7116', false)). +answer('urn:example:complies'('urn:example:carol7117', false)). +answer('urn:example:complies'('urn:example:carol7118', false)). +answer('urn:example:complies'('urn:example:carol7119', false)). +answer('urn:example:complies'('urn:example:carol7120', false)). +answer('urn:example:complies'('urn:example:carol7121', false)). +answer('urn:example:complies'('urn:example:carol7122', false)). +answer('urn:example:complies'('urn:example:carol7123', false)). +answer('urn:example:complies'('urn:example:carol7124', false)). +answer('urn:example:complies'('urn:example:carol7125', false)). +answer('urn:example:complies'('urn:example:carol7126', false)). +answer('urn:example:complies'('urn:example:carol7127', false)). +answer('urn:example:complies'('urn:example:carol7128', false)). +answer('urn:example:complies'('urn:example:carol7129', false)). +answer('urn:example:complies'('urn:example:carol7130', false)). +answer('urn:example:complies'('urn:example:carol7131', false)). +answer('urn:example:complies'('urn:example:carol7132', false)). +answer('urn:example:complies'('urn:example:carol7133', false)). +answer('urn:example:complies'('urn:example:carol7134', false)). +answer('urn:example:complies'('urn:example:carol7135', false)). +answer('urn:example:complies'('urn:example:carol7136', false)). +answer('urn:example:complies'('urn:example:carol7137', false)). +answer('urn:example:complies'('urn:example:carol7138', false)). +answer('urn:example:complies'('urn:example:carol7139', false)). +answer('urn:example:complies'('urn:example:carol7140', false)). +answer('urn:example:complies'('urn:example:carol7141', false)). +answer('urn:example:complies'('urn:example:carol7142', false)). +answer('urn:example:complies'('urn:example:carol7143', false)). +answer('urn:example:complies'('urn:example:carol7144', false)). +answer('urn:example:complies'('urn:example:carol7145', false)). +answer('urn:example:complies'('urn:example:carol7146', false)). +answer('urn:example:complies'('urn:example:carol7147', false)). +answer('urn:example:complies'('urn:example:carol7148', false)). +answer('urn:example:complies'('urn:example:carol7149', false)). +answer('urn:example:complies'('urn:example:carol7150', false)). +answer('urn:example:complies'('urn:example:carol7151', false)). +answer('urn:example:complies'('urn:example:carol7152', false)). +answer('urn:example:complies'('urn:example:carol7153', false)). +answer('urn:example:complies'('urn:example:carol7154', false)). +answer('urn:example:complies'('urn:example:carol7155', false)). +answer('urn:example:complies'('urn:example:carol7156', false)). +answer('urn:example:complies'('urn:example:carol7157', false)). +answer('urn:example:complies'('urn:example:carol7158', false)). +answer('urn:example:complies'('urn:example:carol7159', false)). +answer('urn:example:complies'('urn:example:carol7160', false)). +answer('urn:example:complies'('urn:example:carol7161', false)). +answer('urn:example:complies'('urn:example:carol7162', false)). +answer('urn:example:complies'('urn:example:carol7163', false)). +answer('urn:example:complies'('urn:example:carol7164', false)). +answer('urn:example:complies'('urn:example:carol7165', false)). +answer('urn:example:complies'('urn:example:carol7166', false)). +answer('urn:example:complies'('urn:example:carol7167', false)). +answer('urn:example:complies'('urn:example:carol7168', false)). +answer('urn:example:complies'('urn:example:carol7169', false)). +answer('urn:example:complies'('urn:example:carol7170', false)). +answer('urn:example:complies'('urn:example:carol7171', false)). +answer('urn:example:complies'('urn:example:carol7172', false)). +answer('urn:example:complies'('urn:example:carol7173', false)). +answer('urn:example:complies'('urn:example:carol7174', false)). +answer('urn:example:complies'('urn:example:carol7175', false)). +answer('urn:example:complies'('urn:example:carol7176', false)). +answer('urn:example:complies'('urn:example:carol7177', false)). +answer('urn:example:complies'('urn:example:carol7178', false)). +answer('urn:example:complies'('urn:example:carol7179', false)). +answer('urn:example:complies'('urn:example:carol7180', false)). +answer('urn:example:complies'('urn:example:carol7181', false)). +answer('urn:example:complies'('urn:example:carol7182', false)). +answer('urn:example:complies'('urn:example:carol7183', false)). +answer('urn:example:complies'('urn:example:carol7184', false)). +answer('urn:example:complies'('urn:example:carol7185', false)). +answer('urn:example:complies'('urn:example:carol7186', false)). +answer('urn:example:complies'('urn:example:carol7187', false)). +answer('urn:example:complies'('urn:example:carol7188', false)). +answer('urn:example:complies'('urn:example:carol7189', false)). +answer('urn:example:complies'('urn:example:carol7190', false)). +answer('urn:example:complies'('urn:example:carol7191', false)). +answer('urn:example:complies'('urn:example:carol7192', false)). +answer('urn:example:complies'('urn:example:carol7193', false)). +answer('urn:example:complies'('urn:example:carol7194', false)). +answer('urn:example:complies'('urn:example:carol7195', false)). +answer('urn:example:complies'('urn:example:carol7196', false)). +answer('urn:example:complies'('urn:example:carol7197', false)). +answer('urn:example:complies'('urn:example:carol7198', false)). +answer('urn:example:complies'('urn:example:carol7199', false)). +answer('urn:example:complies'('urn:example:carol7200', false)). +answer('urn:example:complies'('urn:example:carol7201', false)). +answer('urn:example:complies'('urn:example:carol7202', false)). +answer('urn:example:complies'('urn:example:carol7203', false)). +answer('urn:example:complies'('urn:example:carol7204', false)). +answer('urn:example:complies'('urn:example:carol7205', false)). +answer('urn:example:complies'('urn:example:carol7206', false)). +answer('urn:example:complies'('urn:example:carol7207', false)). +answer('urn:example:complies'('urn:example:carol7208', false)). +answer('urn:example:complies'('urn:example:carol7209', false)). +answer('urn:example:complies'('urn:example:carol7210', false)). +answer('urn:example:complies'('urn:example:carol7211', false)). +answer('urn:example:complies'('urn:example:carol7212', false)). +answer('urn:example:complies'('urn:example:carol7213', false)). +answer('urn:example:complies'('urn:example:carol7214', false)). +answer('urn:example:complies'('urn:example:carol7215', false)). +answer('urn:example:complies'('urn:example:carol7216', false)). +answer('urn:example:complies'('urn:example:carol7217', false)). +answer('urn:example:complies'('urn:example:carol7218', false)). +answer('urn:example:complies'('urn:example:carol7219', false)). +answer('urn:example:complies'('urn:example:carol7220', false)). +answer('urn:example:complies'('urn:example:carol7221', false)). +answer('urn:example:complies'('urn:example:carol7222', false)). +answer('urn:example:complies'('urn:example:carol7223', false)). +answer('urn:example:complies'('urn:example:carol7224', false)). +answer('urn:example:complies'('urn:example:carol7225', false)). +answer('urn:example:complies'('urn:example:carol7226', false)). +answer('urn:example:complies'('urn:example:carol7227', false)). +answer('urn:example:complies'('urn:example:carol7228', false)). +answer('urn:example:complies'('urn:example:carol7229', false)). +answer('urn:example:complies'('urn:example:carol7230', false)). +answer('urn:example:complies'('urn:example:carol7231', false)). +answer('urn:example:complies'('urn:example:carol7232', false)). +answer('urn:example:complies'('urn:example:carol7233', false)). +answer('urn:example:complies'('urn:example:carol7234', false)). +answer('urn:example:complies'('urn:example:carol7235', false)). +answer('urn:example:complies'('urn:example:carol7236', false)). +answer('urn:example:complies'('urn:example:carol7237', false)). +answer('urn:example:complies'('urn:example:carol7238', false)). +answer('urn:example:complies'('urn:example:carol7239', false)). +answer('urn:example:complies'('urn:example:carol7240', false)). +answer('urn:example:complies'('urn:example:carol7241', false)). +answer('urn:example:complies'('urn:example:carol7242', false)). +answer('urn:example:complies'('urn:example:carol7243', false)). +answer('urn:example:complies'('urn:example:carol7244', false)). +answer('urn:example:complies'('urn:example:carol7245', false)). +answer('urn:example:complies'('urn:example:carol7246', false)). +answer('urn:example:complies'('urn:example:carol7247', false)). +answer('urn:example:complies'('urn:example:carol7248', false)). +answer('urn:example:complies'('urn:example:carol7249', false)). +answer('urn:example:complies'('urn:example:carol7250', false)). +answer('urn:example:complies'('urn:example:carol7251', false)). +answer('urn:example:complies'('urn:example:carol7252', false)). +answer('urn:example:complies'('urn:example:carol7253', false)). +answer('urn:example:complies'('urn:example:carol7254', false)). +answer('urn:example:complies'('urn:example:carol7255', false)). +answer('urn:example:complies'('urn:example:carol7256', false)). +answer('urn:example:complies'('urn:example:carol7257', false)). +answer('urn:example:complies'('urn:example:carol7258', false)). +answer('urn:example:complies'('urn:example:carol7259', false)). +answer('urn:example:complies'('urn:example:carol7260', false)). +answer('urn:example:complies'('urn:example:carol7261', false)). +answer('urn:example:complies'('urn:example:carol7262', false)). +answer('urn:example:complies'('urn:example:carol7263', false)). +answer('urn:example:complies'('urn:example:carol7264', false)). +answer('urn:example:complies'('urn:example:carol7265', false)). +answer('urn:example:complies'('urn:example:carol7266', false)). +answer('urn:example:complies'('urn:example:carol7267', false)). +answer('urn:example:complies'('urn:example:carol7268', false)). +answer('urn:example:complies'('urn:example:carol7269', false)). +answer('urn:example:complies'('urn:example:carol7270', false)). +answer('urn:example:complies'('urn:example:carol7271', false)). +answer('urn:example:complies'('urn:example:carol7272', false)). +answer('urn:example:complies'('urn:example:carol7273', false)). +answer('urn:example:complies'('urn:example:carol7274', false)). +answer('urn:example:complies'('urn:example:carol7275', false)). +answer('urn:example:complies'('urn:example:carol7276', false)). +answer('urn:example:complies'('urn:example:carol7277', false)). +answer('urn:example:complies'('urn:example:carol7278', false)). +answer('urn:example:complies'('urn:example:carol7279', false)). +answer('urn:example:complies'('urn:example:carol7280', false)). +answer('urn:example:complies'('urn:example:carol7281', false)). +answer('urn:example:complies'('urn:example:carol7282', false)). +answer('urn:example:complies'('urn:example:carol7283', false)). +answer('urn:example:complies'('urn:example:carol7284', false)). +answer('urn:example:complies'('urn:example:carol7285', false)). +answer('urn:example:complies'('urn:example:carol7286', false)). +answer('urn:example:complies'('urn:example:carol7287', false)). +answer('urn:example:complies'('urn:example:carol7288', false)). +answer('urn:example:complies'('urn:example:carol7289', false)). +answer('urn:example:complies'('urn:example:carol7290', false)). +answer('urn:example:complies'('urn:example:carol7291', false)). +answer('urn:example:complies'('urn:example:carol7292', false)). +answer('urn:example:complies'('urn:example:carol7293', false)). +answer('urn:example:complies'('urn:example:carol7294', false)). +answer('urn:example:complies'('urn:example:carol7295', false)). +answer('urn:example:complies'('urn:example:carol7296', false)). +answer('urn:example:complies'('urn:example:carol7297', false)). +answer('urn:example:complies'('urn:example:carol7298', false)). +answer('urn:example:complies'('urn:example:carol7299', false)). +answer('urn:example:complies'('urn:example:carol7300', false)). +answer('urn:example:complies'('urn:example:carol7301', false)). +answer('urn:example:complies'('urn:example:carol7302', false)). +answer('urn:example:complies'('urn:example:carol7303', false)). +answer('urn:example:complies'('urn:example:carol7304', false)). +answer('urn:example:complies'('urn:example:carol7305', false)). +answer('urn:example:complies'('urn:example:carol7306', false)). +answer('urn:example:complies'('urn:example:carol7307', false)). +answer('urn:example:complies'('urn:example:carol7308', false)). +answer('urn:example:complies'('urn:example:carol7309', false)). +answer('urn:example:complies'('urn:example:carol7310', false)). +answer('urn:example:complies'('urn:example:carol7311', false)). +answer('urn:example:complies'('urn:example:carol7312', false)). +answer('urn:example:complies'('urn:example:carol7313', false)). +answer('urn:example:complies'('urn:example:carol7314', false)). +answer('urn:example:complies'('urn:example:carol7315', false)). +answer('urn:example:complies'('urn:example:carol7316', false)). +answer('urn:example:complies'('urn:example:carol7317', false)). +answer('urn:example:complies'('urn:example:carol7318', false)). +answer('urn:example:complies'('urn:example:carol7319', false)). +answer('urn:example:complies'('urn:example:carol7320', false)). +answer('urn:example:complies'('urn:example:carol7321', false)). +answer('urn:example:complies'('urn:example:carol7322', false)). +answer('urn:example:complies'('urn:example:carol7323', false)). +answer('urn:example:complies'('urn:example:carol7324', false)). +answer('urn:example:complies'('urn:example:carol7325', false)). +answer('urn:example:complies'('urn:example:carol7326', false)). +answer('urn:example:complies'('urn:example:carol7327', false)). +answer('urn:example:complies'('urn:example:carol7328', false)). +answer('urn:example:complies'('urn:example:carol7329', false)). +answer('urn:example:complies'('urn:example:carol7330', false)). +answer('urn:example:complies'('urn:example:carol7331', false)). +answer('urn:example:complies'('urn:example:carol7332', false)). +answer('urn:example:complies'('urn:example:carol7333', false)). +answer('urn:example:complies'('urn:example:carol7334', false)). +answer('urn:example:complies'('urn:example:carol7335', false)). +answer('urn:example:complies'('urn:example:carol7336', false)). +answer('urn:example:complies'('urn:example:carol7337', false)). +answer('urn:example:complies'('urn:example:carol7338', false)). +answer('urn:example:complies'('urn:example:carol7339', false)). +answer('urn:example:complies'('urn:example:carol7340', false)). +answer('urn:example:complies'('urn:example:carol7341', false)). +answer('urn:example:complies'('urn:example:carol7342', false)). +answer('urn:example:complies'('urn:example:carol7343', false)). +answer('urn:example:complies'('urn:example:carol7344', false)). +answer('urn:example:complies'('urn:example:carol7345', false)). +answer('urn:example:complies'('urn:example:carol7346', false)). +answer('urn:example:complies'('urn:example:carol7347', false)). +answer('urn:example:complies'('urn:example:carol7348', false)). +answer('urn:example:complies'('urn:example:carol7349', false)). +answer('urn:example:complies'('urn:example:carol7350', false)). +answer('urn:example:complies'('urn:example:carol7351', false)). +answer('urn:example:complies'('urn:example:carol7352', false)). +answer('urn:example:complies'('urn:example:carol7353', false)). +answer('urn:example:complies'('urn:example:carol7354', false)). +answer('urn:example:complies'('urn:example:carol7355', false)). +answer('urn:example:complies'('urn:example:carol7356', false)). +answer('urn:example:complies'('urn:example:carol7357', false)). +answer('urn:example:complies'('urn:example:carol7358', false)). +answer('urn:example:complies'('urn:example:carol7359', false)). +answer('urn:example:complies'('urn:example:carol7360', false)). +answer('urn:example:complies'('urn:example:carol7361', false)). +answer('urn:example:complies'('urn:example:carol7362', false)). +answer('urn:example:complies'('urn:example:carol7363', false)). +answer('urn:example:complies'('urn:example:carol7364', false)). +answer('urn:example:complies'('urn:example:carol7365', false)). +answer('urn:example:complies'('urn:example:carol7366', false)). +answer('urn:example:complies'('urn:example:carol7367', false)). +answer('urn:example:complies'('urn:example:carol7368', false)). +answer('urn:example:complies'('urn:example:carol7369', false)). +answer('urn:example:complies'('urn:example:carol7370', false)). +answer('urn:example:complies'('urn:example:carol7371', false)). +answer('urn:example:complies'('urn:example:carol7372', false)). +answer('urn:example:complies'('urn:example:carol7373', false)). +answer('urn:example:complies'('urn:example:carol7374', false)). +answer('urn:example:complies'('urn:example:carol7375', false)). +answer('urn:example:complies'('urn:example:carol7376', false)). +answer('urn:example:complies'('urn:example:carol7377', false)). +answer('urn:example:complies'('urn:example:carol7378', false)). +answer('urn:example:complies'('urn:example:carol7379', false)). +answer('urn:example:complies'('urn:example:carol7380', false)). +answer('urn:example:complies'('urn:example:carol7381', false)). +answer('urn:example:complies'('urn:example:carol7382', false)). +answer('urn:example:complies'('urn:example:carol7383', false)). +answer('urn:example:complies'('urn:example:carol7384', false)). +answer('urn:example:complies'('urn:example:carol7385', false)). +answer('urn:example:complies'('urn:example:carol7386', false)). +answer('urn:example:complies'('urn:example:carol7387', false)). +answer('urn:example:complies'('urn:example:carol7388', false)). +answer('urn:example:complies'('urn:example:carol7389', false)). +answer('urn:example:complies'('urn:example:carol7390', false)). +answer('urn:example:complies'('urn:example:carol7391', false)). +answer('urn:example:complies'('urn:example:carol7392', false)). +answer('urn:example:complies'('urn:example:carol7393', false)). +answer('urn:example:complies'('urn:example:carol7394', false)). +answer('urn:example:complies'('urn:example:carol7395', false)). +answer('urn:example:complies'('urn:example:carol7396', false)). +answer('urn:example:complies'('urn:example:carol7397', false)). +answer('urn:example:complies'('urn:example:carol7398', false)). +answer('urn:example:complies'('urn:example:carol7399', false)). +answer('urn:example:complies'('urn:example:carol7400', false)). +answer('urn:example:complies'('urn:example:carol7401', false)). +answer('urn:example:complies'('urn:example:carol7402', false)). +answer('urn:example:complies'('urn:example:carol7403', false)). +answer('urn:example:complies'('urn:example:carol7404', false)). +answer('urn:example:complies'('urn:example:carol7405', false)). +answer('urn:example:complies'('urn:example:carol7406', false)). +answer('urn:example:complies'('urn:example:carol7407', false)). +answer('urn:example:complies'('urn:example:carol7408', false)). +answer('urn:example:complies'('urn:example:carol7409', false)). +answer('urn:example:complies'('urn:example:carol7410', false)). +answer('urn:example:complies'('urn:example:carol7411', false)). +answer('urn:example:complies'('urn:example:carol7412', false)). +answer('urn:example:complies'('urn:example:carol7413', false)). +answer('urn:example:complies'('urn:example:carol7414', false)). +answer('urn:example:complies'('urn:example:carol7415', false)). +answer('urn:example:complies'('urn:example:carol7416', false)). +answer('urn:example:complies'('urn:example:carol7417', false)). +answer('urn:example:complies'('urn:example:carol7418', false)). +answer('urn:example:complies'('urn:example:carol7419', false)). +answer('urn:example:complies'('urn:example:carol7420', false)). +answer('urn:example:complies'('urn:example:carol7421', false)). +answer('urn:example:complies'('urn:example:carol7422', false)). +answer('urn:example:complies'('urn:example:carol7423', false)). +answer('urn:example:complies'('urn:example:carol7424', false)). +answer('urn:example:complies'('urn:example:carol7425', false)). +answer('urn:example:complies'('urn:example:carol7426', false)). +answer('urn:example:complies'('urn:example:carol7427', false)). +answer('urn:example:complies'('urn:example:carol7428', false)). +answer('urn:example:complies'('urn:example:carol7429', false)). +answer('urn:example:complies'('urn:example:carol7430', false)). +answer('urn:example:complies'('urn:example:carol7431', false)). +answer('urn:example:complies'('urn:example:carol7432', false)). +answer('urn:example:complies'('urn:example:carol7433', false)). +answer('urn:example:complies'('urn:example:carol7434', false)). +answer('urn:example:complies'('urn:example:carol7435', false)). +answer('urn:example:complies'('urn:example:carol7436', false)). +answer('urn:example:complies'('urn:example:carol7437', false)). +answer('urn:example:complies'('urn:example:carol7438', false)). +answer('urn:example:complies'('urn:example:carol7439', false)). +answer('urn:example:complies'('urn:example:carol7440', false)). +answer('urn:example:complies'('urn:example:carol7441', false)). +answer('urn:example:complies'('urn:example:carol7442', false)). +answer('urn:example:complies'('urn:example:carol7443', false)). +answer('urn:example:complies'('urn:example:carol7444', false)). +answer('urn:example:complies'('urn:example:carol7445', false)). +answer('urn:example:complies'('urn:example:carol7446', false)). +answer('urn:example:complies'('urn:example:carol7447', false)). +answer('urn:example:complies'('urn:example:carol7448', false)). +answer('urn:example:complies'('urn:example:carol7449', false)). +answer('urn:example:complies'('urn:example:carol7450', false)). +answer('urn:example:complies'('urn:example:carol7451', false)). +answer('urn:example:complies'('urn:example:carol7452', false)). +answer('urn:example:complies'('urn:example:carol7453', false)). +answer('urn:example:complies'('urn:example:carol7454', false)). +answer('urn:example:complies'('urn:example:carol7455', false)). +answer('urn:example:complies'('urn:example:carol7456', false)). +answer('urn:example:complies'('urn:example:carol7457', false)). +answer('urn:example:complies'('urn:example:carol7458', false)). +answer('urn:example:complies'('urn:example:carol7459', false)). +answer('urn:example:complies'('urn:example:carol7460', false)). +answer('urn:example:complies'('urn:example:carol7461', false)). +answer('urn:example:complies'('urn:example:carol7462', false)). +answer('urn:example:complies'('urn:example:carol7463', false)). +answer('urn:example:complies'('urn:example:carol7464', false)). +answer('urn:example:complies'('urn:example:carol7465', false)). +answer('urn:example:complies'('urn:example:carol7466', false)). +answer('urn:example:complies'('urn:example:carol7467', false)). +answer('urn:example:complies'('urn:example:carol7468', false)). +answer('urn:example:complies'('urn:example:carol7469', false)). +answer('urn:example:complies'('urn:example:carol7470', false)). +answer('urn:example:complies'('urn:example:carol7471', false)). +answer('urn:example:complies'('urn:example:carol7472', false)). +answer('urn:example:complies'('urn:example:carol7473', false)). +answer('urn:example:complies'('urn:example:carol7474', false)). +answer('urn:example:complies'('urn:example:carol7475', false)). +answer('urn:example:complies'('urn:example:carol7476', false)). +answer('urn:example:complies'('urn:example:carol7477', false)). +answer('urn:example:complies'('urn:example:carol7478', false)). +answer('urn:example:complies'('urn:example:carol7479', false)). +answer('urn:example:complies'('urn:example:carol7480', false)). +answer('urn:example:complies'('urn:example:carol7481', false)). +answer('urn:example:complies'('urn:example:carol7482', false)). +answer('urn:example:complies'('urn:example:carol7483', false)). +answer('urn:example:complies'('urn:example:carol7484', false)). +answer('urn:example:complies'('urn:example:carol7485', false)). +answer('urn:example:complies'('urn:example:carol7486', false)). +answer('urn:example:complies'('urn:example:carol7487', false)). +answer('urn:example:complies'('urn:example:carol7488', false)). +answer('urn:example:complies'('urn:example:carol7489', false)). +answer('urn:example:complies'('urn:example:carol7490', false)). +answer('urn:example:complies'('urn:example:carol7491', false)). +answer('urn:example:complies'('urn:example:carol7492', false)). +answer('urn:example:complies'('urn:example:carol7493', false)). +answer('urn:example:complies'('urn:example:carol7494', false)). +answer('urn:example:complies'('urn:example:carol7495', false)). +answer('urn:example:complies'('urn:example:carol7496', false)). +answer('urn:example:complies'('urn:example:carol7497', false)). +answer('urn:example:complies'('urn:example:carol7498', false)). +answer('urn:example:complies'('urn:example:carol7499', false)). +answer('urn:example:complies'('urn:example:carol7500', false)). +answer('urn:example:complies'('urn:example:carol7501', false)). +answer('urn:example:complies'('urn:example:carol7502', false)). +answer('urn:example:complies'('urn:example:carol7503', false)). +answer('urn:example:complies'('urn:example:carol7504', false)). +answer('urn:example:complies'('urn:example:carol7505', false)). +answer('urn:example:complies'('urn:example:carol7506', false)). +answer('urn:example:complies'('urn:example:carol7507', false)). +answer('urn:example:complies'('urn:example:carol7508', false)). +answer('urn:example:complies'('urn:example:carol7509', false)). +answer('urn:example:complies'('urn:example:carol7510', false)). +answer('urn:example:complies'('urn:example:carol7511', false)). +answer('urn:example:complies'('urn:example:carol7512', false)). +answer('urn:example:complies'('urn:example:carol7513', false)). +answer('urn:example:complies'('urn:example:carol7514', false)). +answer('urn:example:complies'('urn:example:carol7515', false)). +answer('urn:example:complies'('urn:example:carol7516', false)). +answer('urn:example:complies'('urn:example:carol7517', false)). +answer('urn:example:complies'('urn:example:carol7518', false)). +answer('urn:example:complies'('urn:example:carol7519', false)). +answer('urn:example:complies'('urn:example:carol7520', false)). +answer('urn:example:complies'('urn:example:carol7521', false)). +answer('urn:example:complies'('urn:example:carol7522', false)). +answer('urn:example:complies'('urn:example:carol7523', false)). +answer('urn:example:complies'('urn:example:carol7524', false)). +answer('urn:example:complies'('urn:example:carol7525', false)). +answer('urn:example:complies'('urn:example:carol7526', false)). +answer('urn:example:complies'('urn:example:carol7527', false)). +answer('urn:example:complies'('urn:example:carol7528', false)). +answer('urn:example:complies'('urn:example:carol7529', false)). +answer('urn:example:complies'('urn:example:carol7530', false)). +answer('urn:example:complies'('urn:example:carol7531', false)). +answer('urn:example:complies'('urn:example:carol7532', false)). +answer('urn:example:complies'('urn:example:carol7533', false)). +answer('urn:example:complies'('urn:example:carol7534', false)). +answer('urn:example:complies'('urn:example:carol7535', false)). +answer('urn:example:complies'('urn:example:carol7536', false)). +answer('urn:example:complies'('urn:example:carol7537', false)). +answer('urn:example:complies'('urn:example:carol7538', false)). +answer('urn:example:complies'('urn:example:carol7539', false)). +answer('urn:example:complies'('urn:example:carol7540', false)). +answer('urn:example:complies'('urn:example:carol7541', false)). +answer('urn:example:complies'('urn:example:carol7542', false)). +answer('urn:example:complies'('urn:example:carol7543', false)). +answer('urn:example:complies'('urn:example:carol7544', false)). +answer('urn:example:complies'('urn:example:carol7545', false)). +answer('urn:example:complies'('urn:example:carol7546', false)). +answer('urn:example:complies'('urn:example:carol7547', false)). +answer('urn:example:complies'('urn:example:carol7548', false)). +answer('urn:example:complies'('urn:example:carol7549', false)). +answer('urn:example:complies'('urn:example:carol7550', false)). +answer('urn:example:complies'('urn:example:carol7551', false)). +answer('urn:example:complies'('urn:example:carol7552', false)). +answer('urn:example:complies'('urn:example:carol7553', false)). +answer('urn:example:complies'('urn:example:carol7554', false)). +answer('urn:example:complies'('urn:example:carol7555', false)). +answer('urn:example:complies'('urn:example:carol7556', false)). +answer('urn:example:complies'('urn:example:carol7557', false)). +answer('urn:example:complies'('urn:example:carol7558', false)). +answer('urn:example:complies'('urn:example:carol7559', false)). +answer('urn:example:complies'('urn:example:carol7560', false)). +answer('urn:example:complies'('urn:example:carol7561', false)). +answer('urn:example:complies'('urn:example:carol7562', false)). +answer('urn:example:complies'('urn:example:carol7563', false)). +answer('urn:example:complies'('urn:example:carol7564', false)). +answer('urn:example:complies'('urn:example:carol7565', false)). +answer('urn:example:complies'('urn:example:carol7566', false)). +answer('urn:example:complies'('urn:example:carol7567', false)). +answer('urn:example:complies'('urn:example:carol7568', false)). +answer('urn:example:complies'('urn:example:carol7569', false)). +answer('urn:example:complies'('urn:example:carol7570', false)). +answer('urn:example:complies'('urn:example:carol7571', false)). +answer('urn:example:complies'('urn:example:carol7572', false)). +answer('urn:example:complies'('urn:example:carol7573', false)). +answer('urn:example:complies'('urn:example:carol7574', false)). +answer('urn:example:complies'('urn:example:carol7575', false)). +answer('urn:example:complies'('urn:example:carol7576', false)). +answer('urn:example:complies'('urn:example:carol7577', false)). +answer('urn:example:complies'('urn:example:carol7578', false)). +answer('urn:example:complies'('urn:example:carol7579', false)). +answer('urn:example:complies'('urn:example:carol7580', false)). +answer('urn:example:complies'('urn:example:carol7581', false)). +answer('urn:example:complies'('urn:example:carol7582', false)). +answer('urn:example:complies'('urn:example:carol7583', false)). +answer('urn:example:complies'('urn:example:carol7584', false)). +answer('urn:example:complies'('urn:example:carol7585', false)). +answer('urn:example:complies'('urn:example:carol7586', false)). +answer('urn:example:complies'('urn:example:carol7587', false)). +answer('urn:example:complies'('urn:example:carol7588', false)). +answer('urn:example:complies'('urn:example:carol7589', false)). +answer('urn:example:complies'('urn:example:carol7590', false)). +answer('urn:example:complies'('urn:example:carol7591', false)). +answer('urn:example:complies'('urn:example:carol7592', false)). +answer('urn:example:complies'('urn:example:carol7593', false)). +answer('urn:example:complies'('urn:example:carol7594', false)). +answer('urn:example:complies'('urn:example:carol7595', false)). +answer('urn:example:complies'('urn:example:carol7596', false)). +answer('urn:example:complies'('urn:example:carol7597', false)). +answer('urn:example:complies'('urn:example:carol7598', false)). +answer('urn:example:complies'('urn:example:carol7599', false)). +answer('urn:example:complies'('urn:example:carol7600', false)). +answer('urn:example:complies'('urn:example:carol7601', false)). +answer('urn:example:complies'('urn:example:carol7602', false)). +answer('urn:example:complies'('urn:example:carol7603', false)). +answer('urn:example:complies'('urn:example:carol7604', false)). +answer('urn:example:complies'('urn:example:carol7605', false)). +answer('urn:example:complies'('urn:example:carol7606', false)). +answer('urn:example:complies'('urn:example:carol7607', false)). +answer('urn:example:complies'('urn:example:carol7608', false)). +answer('urn:example:complies'('urn:example:carol7609', false)). +answer('urn:example:complies'('urn:example:carol7610', false)). +answer('urn:example:complies'('urn:example:carol7611', false)). +answer('urn:example:complies'('urn:example:carol7612', false)). +answer('urn:example:complies'('urn:example:carol7613', false)). +answer('urn:example:complies'('urn:example:carol7614', false)). +answer('urn:example:complies'('urn:example:carol7615', false)). +answer('urn:example:complies'('urn:example:carol7616', false)). +answer('urn:example:complies'('urn:example:carol7617', false)). +answer('urn:example:complies'('urn:example:carol7618', false)). +answer('urn:example:complies'('urn:example:carol7619', false)). +answer('urn:example:complies'('urn:example:carol7620', false)). +answer('urn:example:complies'('urn:example:carol7621', false)). +answer('urn:example:complies'('urn:example:carol7622', false)). +answer('urn:example:complies'('urn:example:carol7623', false)). +answer('urn:example:complies'('urn:example:carol7624', false)). +answer('urn:example:complies'('urn:example:carol7625', false)). +answer('urn:example:complies'('urn:example:carol7626', false)). +answer('urn:example:complies'('urn:example:carol7627', false)). +answer('urn:example:complies'('urn:example:carol7628', false)). +answer('urn:example:complies'('urn:example:carol7629', false)). +answer('urn:example:complies'('urn:example:carol7630', false)). +answer('urn:example:complies'('urn:example:carol7631', false)). +answer('urn:example:complies'('urn:example:carol7632', false)). +answer('urn:example:complies'('urn:example:carol7633', false)). +answer('urn:example:complies'('urn:example:carol7634', false)). +answer('urn:example:complies'('urn:example:carol7635', false)). +answer('urn:example:complies'('urn:example:carol7636', false)). +answer('urn:example:complies'('urn:example:carol7637', false)). +answer('urn:example:complies'('urn:example:carol7638', false)). +answer('urn:example:complies'('urn:example:carol7639', false)). +answer('urn:example:complies'('urn:example:carol7640', false)). +answer('urn:example:complies'('urn:example:carol7641', false)). +answer('urn:example:complies'('urn:example:carol7642', false)). +answer('urn:example:complies'('urn:example:carol7643', false)). +answer('urn:example:complies'('urn:example:carol7644', false)). +answer('urn:example:complies'('urn:example:carol7645', false)). +answer('urn:example:complies'('urn:example:carol7646', false)). +answer('urn:example:complies'('urn:example:carol7647', false)). +answer('urn:example:complies'('urn:example:carol7648', false)). +answer('urn:example:complies'('urn:example:carol7649', false)). +answer('urn:example:complies'('urn:example:carol7650', false)). +answer('urn:example:complies'('urn:example:carol7651', false)). +answer('urn:example:complies'('urn:example:carol7652', false)). +answer('urn:example:complies'('urn:example:carol7653', false)). +answer('urn:example:complies'('urn:example:carol7654', false)). +answer('urn:example:complies'('urn:example:carol7655', false)). +answer('urn:example:complies'('urn:example:carol7656', false)). +answer('urn:example:complies'('urn:example:carol7657', false)). +answer('urn:example:complies'('urn:example:carol7658', false)). +answer('urn:example:complies'('urn:example:carol7659', false)). +answer('urn:example:complies'('urn:example:carol7660', false)). +answer('urn:example:complies'('urn:example:carol7661', false)). +answer('urn:example:complies'('urn:example:carol7662', false)). +answer('urn:example:complies'('urn:example:carol7663', false)). +answer('urn:example:complies'('urn:example:carol7664', false)). +answer('urn:example:complies'('urn:example:carol7665', false)). +answer('urn:example:complies'('urn:example:carol7666', false)). +answer('urn:example:complies'('urn:example:carol7667', false)). +answer('urn:example:complies'('urn:example:carol7668', false)). +answer('urn:example:complies'('urn:example:carol7669', false)). +answer('urn:example:complies'('urn:example:carol7670', false)). +answer('urn:example:complies'('urn:example:carol7671', false)). +answer('urn:example:complies'('urn:example:carol7672', false)). +answer('urn:example:complies'('urn:example:carol7673', false)). +answer('urn:example:complies'('urn:example:carol7674', false)). +answer('urn:example:complies'('urn:example:carol7675', false)). +answer('urn:example:complies'('urn:example:carol7676', false)). +answer('urn:example:complies'('urn:example:carol7677', false)). +answer('urn:example:complies'('urn:example:carol7678', false)). +answer('urn:example:complies'('urn:example:carol7679', false)). +answer('urn:example:complies'('urn:example:carol7680', false)). +answer('urn:example:complies'('urn:example:carol7681', false)). +answer('urn:example:complies'('urn:example:carol7682', false)). +answer('urn:example:complies'('urn:example:carol7683', false)). +answer('urn:example:complies'('urn:example:carol7684', false)). +answer('urn:example:complies'('urn:example:carol7685', false)). +answer('urn:example:complies'('urn:example:carol7686', false)). +answer('urn:example:complies'('urn:example:carol7687', false)). +answer('urn:example:complies'('urn:example:carol7688', false)). +answer('urn:example:complies'('urn:example:carol7689', false)). +answer('urn:example:complies'('urn:example:carol7690', false)). +answer('urn:example:complies'('urn:example:carol7691', false)). +answer('urn:example:complies'('urn:example:carol7692', false)). +answer('urn:example:complies'('urn:example:carol7693', false)). +answer('urn:example:complies'('urn:example:carol7694', false)). +answer('urn:example:complies'('urn:example:carol7695', false)). +answer('urn:example:complies'('urn:example:carol7696', false)). +answer('urn:example:complies'('urn:example:carol7697', false)). +answer('urn:example:complies'('urn:example:carol7698', false)). +answer('urn:example:complies'('urn:example:carol7699', false)). +answer('urn:example:complies'('urn:example:carol7700', false)). +answer('urn:example:complies'('urn:example:carol7701', false)). +answer('urn:example:complies'('urn:example:carol7702', false)). +answer('urn:example:complies'('urn:example:carol7703', false)). +answer('urn:example:complies'('urn:example:carol7704', false)). +answer('urn:example:complies'('urn:example:carol7705', false)). +answer('urn:example:complies'('urn:example:carol7706', false)). +answer('urn:example:complies'('urn:example:carol7707', false)). +answer('urn:example:complies'('urn:example:carol7708', false)). +answer('urn:example:complies'('urn:example:carol7709', false)). +answer('urn:example:complies'('urn:example:carol7710', false)). +answer('urn:example:complies'('urn:example:carol7711', false)). +answer('urn:example:complies'('urn:example:carol7712', false)). +answer('urn:example:complies'('urn:example:carol7713', false)). +answer('urn:example:complies'('urn:example:carol7714', false)). +answer('urn:example:complies'('urn:example:carol7715', false)). +answer('urn:example:complies'('urn:example:carol7716', false)). +answer('urn:example:complies'('urn:example:carol7717', false)). +answer('urn:example:complies'('urn:example:carol7718', false)). +answer('urn:example:complies'('urn:example:carol7719', false)). +answer('urn:example:complies'('urn:example:carol7720', false)). +answer('urn:example:complies'('urn:example:carol7721', false)). +answer('urn:example:complies'('urn:example:carol7722', false)). +answer('urn:example:complies'('urn:example:carol7723', false)). +answer('urn:example:complies'('urn:example:carol7724', false)). +answer('urn:example:complies'('urn:example:carol7725', false)). +answer('urn:example:complies'('urn:example:carol7726', false)). +answer('urn:example:complies'('urn:example:carol7727', false)). +answer('urn:example:complies'('urn:example:carol7728', false)). +answer('urn:example:complies'('urn:example:carol7729', false)). +answer('urn:example:complies'('urn:example:carol7730', false)). +answer('urn:example:complies'('urn:example:carol7731', false)). +answer('urn:example:complies'('urn:example:carol7732', false)). +answer('urn:example:complies'('urn:example:carol7733', false)). +answer('urn:example:complies'('urn:example:carol7734', false)). +answer('urn:example:complies'('urn:example:carol7735', false)). +answer('urn:example:complies'('urn:example:carol7736', false)). +answer('urn:example:complies'('urn:example:carol7737', false)). +answer('urn:example:complies'('urn:example:carol7738', false)). +answer('urn:example:complies'('urn:example:carol7739', false)). +answer('urn:example:complies'('urn:example:carol7740', false)). +answer('urn:example:complies'('urn:example:carol7741', false)). +answer('urn:example:complies'('urn:example:carol7742', false)). +answer('urn:example:complies'('urn:example:carol7743', false)). +answer('urn:example:complies'('urn:example:carol7744', false)). +answer('urn:example:complies'('urn:example:carol7745', false)). +answer('urn:example:complies'('urn:example:carol7746', false)). +answer('urn:example:complies'('urn:example:carol7747', false)). +answer('urn:example:complies'('urn:example:carol7748', false)). +answer('urn:example:complies'('urn:example:carol7749', false)). +answer('urn:example:complies'('urn:example:carol7750', false)). +answer('urn:example:complies'('urn:example:carol7751', false)). +answer('urn:example:complies'('urn:example:carol7752', false)). +answer('urn:example:complies'('urn:example:carol7753', false)). +answer('urn:example:complies'('urn:example:carol7754', false)). +answer('urn:example:complies'('urn:example:carol7755', false)). +answer('urn:example:complies'('urn:example:carol7756', false)). +answer('urn:example:complies'('urn:example:carol7757', false)). +answer('urn:example:complies'('urn:example:carol7758', false)). +answer('urn:example:complies'('urn:example:carol7759', false)). +answer('urn:example:complies'('urn:example:carol7760', false)). +answer('urn:example:complies'('urn:example:carol7761', false)). +answer('urn:example:complies'('urn:example:carol7762', false)). +answer('urn:example:complies'('urn:example:carol7763', false)). +answer('urn:example:complies'('urn:example:carol7764', false)). +answer('urn:example:complies'('urn:example:carol7765', false)). +answer('urn:example:complies'('urn:example:carol7766', false)). +answer('urn:example:complies'('urn:example:carol7767', false)). +answer('urn:example:complies'('urn:example:carol7768', false)). +answer('urn:example:complies'('urn:example:carol7769', false)). +answer('urn:example:complies'('urn:example:carol7770', false)). +answer('urn:example:complies'('urn:example:carol7771', false)). +answer('urn:example:complies'('urn:example:carol7772', false)). +answer('urn:example:complies'('urn:example:carol7773', false)). +answer('urn:example:complies'('urn:example:carol7774', false)). +answer('urn:example:complies'('urn:example:carol7775', false)). +answer('urn:example:complies'('urn:example:carol7776', false)). +answer('urn:example:complies'('urn:example:carol7777', false)). +answer('urn:example:complies'('urn:example:carol7778', false)). +answer('urn:example:complies'('urn:example:carol7779', false)). +answer('urn:example:complies'('urn:example:carol7780', false)). +answer('urn:example:complies'('urn:example:carol7781', false)). +answer('urn:example:complies'('urn:example:carol7782', false)). +answer('urn:example:complies'('urn:example:carol7783', false)). +answer('urn:example:complies'('urn:example:carol7784', false)). +answer('urn:example:complies'('urn:example:carol7785', false)). +answer('urn:example:complies'('urn:example:carol7786', false)). +answer('urn:example:complies'('urn:example:carol7787', false)). +answer('urn:example:complies'('urn:example:carol7788', false)). +answer('urn:example:complies'('urn:example:carol7789', false)). +answer('urn:example:complies'('urn:example:carol7790', false)). +answer('urn:example:complies'('urn:example:carol7791', false)). +answer('urn:example:complies'('urn:example:carol7792', false)). +answer('urn:example:complies'('urn:example:carol7793', false)). +answer('urn:example:complies'('urn:example:carol7794', false)). +answer('urn:example:complies'('urn:example:carol7795', false)). +answer('urn:example:complies'('urn:example:carol7796', false)). +answer('urn:example:complies'('urn:example:carol7797', false)). +answer('urn:example:complies'('urn:example:carol7798', false)). +answer('urn:example:complies'('urn:example:carol7799', false)). +answer('urn:example:complies'('urn:example:carol7800', false)). +answer('urn:example:complies'('urn:example:carol7801', false)). +answer('urn:example:complies'('urn:example:carol7802', false)). +answer('urn:example:complies'('urn:example:carol7803', false)). +answer('urn:example:complies'('urn:example:carol7804', false)). +answer('urn:example:complies'('urn:example:carol7805', false)). +answer('urn:example:complies'('urn:example:carol7806', false)). +answer('urn:example:complies'('urn:example:carol7807', false)). +answer('urn:example:complies'('urn:example:carol7808', false)). +answer('urn:example:complies'('urn:example:carol7809', false)). +answer('urn:example:complies'('urn:example:carol7810', false)). +answer('urn:example:complies'('urn:example:carol7811', false)). +answer('urn:example:complies'('urn:example:carol7812', false)). +answer('urn:example:complies'('urn:example:carol7813', false)). +answer('urn:example:complies'('urn:example:carol7814', false)). +answer('urn:example:complies'('urn:example:carol7815', false)). +answer('urn:example:complies'('urn:example:carol7816', false)). +answer('urn:example:complies'('urn:example:carol7817', false)). +answer('urn:example:complies'('urn:example:carol7818', false)). +answer('urn:example:complies'('urn:example:carol7819', false)). +answer('urn:example:complies'('urn:example:carol7820', false)). +answer('urn:example:complies'('urn:example:carol7821', false)). +answer('urn:example:complies'('urn:example:carol7822', false)). +answer('urn:example:complies'('urn:example:carol7823', false)). +answer('urn:example:complies'('urn:example:carol7824', false)). +answer('urn:example:complies'('urn:example:carol7825', false)). +answer('urn:example:complies'('urn:example:carol7826', false)). +answer('urn:example:complies'('urn:example:carol7827', false)). +answer('urn:example:complies'('urn:example:carol7828', false)). +answer('urn:example:complies'('urn:example:carol7829', false)). +answer('urn:example:complies'('urn:example:carol7830', false)). +answer('urn:example:complies'('urn:example:carol7831', false)). +answer('urn:example:complies'('urn:example:carol7832', false)). +answer('urn:example:complies'('urn:example:carol7833', false)). +answer('urn:example:complies'('urn:example:carol7834', false)). +answer('urn:example:complies'('urn:example:carol7835', false)). +answer('urn:example:complies'('urn:example:carol7836', false)). +answer('urn:example:complies'('urn:example:carol7837', false)). +answer('urn:example:complies'('urn:example:carol7838', false)). +answer('urn:example:complies'('urn:example:carol7839', false)). +answer('urn:example:complies'('urn:example:carol7840', false)). +answer('urn:example:complies'('urn:example:carol7841', false)). +answer('urn:example:complies'('urn:example:carol7842', false)). +answer('urn:example:complies'('urn:example:carol7843', false)). +answer('urn:example:complies'('urn:example:carol7844', false)). +answer('urn:example:complies'('urn:example:carol7845', false)). +answer('urn:example:complies'('urn:example:carol7846', false)). +answer('urn:example:complies'('urn:example:carol7847', false)). +answer('urn:example:complies'('urn:example:carol7848', false)). +answer('urn:example:complies'('urn:example:carol7849', false)). +answer('urn:example:complies'('urn:example:carol7850', false)). +answer('urn:example:complies'('urn:example:carol7851', false)). +answer('urn:example:complies'('urn:example:carol7852', false)). +answer('urn:example:complies'('urn:example:carol7853', false)). +answer('urn:example:complies'('urn:example:carol7854', false)). +answer('urn:example:complies'('urn:example:carol7855', false)). +answer('urn:example:complies'('urn:example:carol7856', false)). +answer('urn:example:complies'('urn:example:carol7857', false)). +answer('urn:example:complies'('urn:example:carol7858', false)). +answer('urn:example:complies'('urn:example:carol7859', false)). +answer('urn:example:complies'('urn:example:carol7860', false)). +answer('urn:example:complies'('urn:example:carol7861', false)). +answer('urn:example:complies'('urn:example:carol7862', false)). +answer('urn:example:complies'('urn:example:carol7863', false)). +answer('urn:example:complies'('urn:example:carol7864', false)). +answer('urn:example:complies'('urn:example:carol7865', false)). +answer('urn:example:complies'('urn:example:carol7866', false)). +answer('urn:example:complies'('urn:example:carol7867', false)). +answer('urn:example:complies'('urn:example:carol7868', false)). +answer('urn:example:complies'('urn:example:carol7869', false)). +answer('urn:example:complies'('urn:example:carol7870', false)). +answer('urn:example:complies'('urn:example:carol7871', false)). +answer('urn:example:complies'('urn:example:carol7872', false)). +answer('urn:example:complies'('urn:example:carol7873', false)). +answer('urn:example:complies'('urn:example:carol7874', false)). +answer('urn:example:complies'('urn:example:carol7875', false)). +answer('urn:example:complies'('urn:example:carol7876', false)). +answer('urn:example:complies'('urn:example:carol7877', false)). +answer('urn:example:complies'('urn:example:carol7878', false)). +answer('urn:example:complies'('urn:example:carol7879', false)). +answer('urn:example:complies'('urn:example:carol7880', false)). +answer('urn:example:complies'('urn:example:carol7881', false)). +answer('urn:example:complies'('urn:example:carol7882', false)). +answer('urn:example:complies'('urn:example:carol7883', false)). +answer('urn:example:complies'('urn:example:carol7884', false)). +answer('urn:example:complies'('urn:example:carol7885', false)). +answer('urn:example:complies'('urn:example:carol7886', false)). +answer('urn:example:complies'('urn:example:carol7887', false)). +answer('urn:example:complies'('urn:example:carol7888', false)). +answer('urn:example:complies'('urn:example:carol7889', false)). +answer('urn:example:complies'('urn:example:carol7890', false)). +answer('urn:example:complies'('urn:example:carol7891', false)). +answer('urn:example:complies'('urn:example:carol7892', false)). +answer('urn:example:complies'('urn:example:carol7893', false)). +answer('urn:example:complies'('urn:example:carol7894', false)). +answer('urn:example:complies'('urn:example:carol7895', false)). +answer('urn:example:complies'('urn:example:carol7896', false)). +answer('urn:example:complies'('urn:example:carol7897', false)). +answer('urn:example:complies'('urn:example:carol7898', false)). +answer('urn:example:complies'('urn:example:carol7899', false)). +answer('urn:example:complies'('urn:example:carol7900', false)). +answer('urn:example:complies'('urn:example:carol7901', false)). +answer('urn:example:complies'('urn:example:carol7902', false)). +answer('urn:example:complies'('urn:example:carol7903', false)). +answer('urn:example:complies'('urn:example:carol7904', false)). +answer('urn:example:complies'('urn:example:carol7905', false)). +answer('urn:example:complies'('urn:example:carol7906', false)). +answer('urn:example:complies'('urn:example:carol7907', false)). +answer('urn:example:complies'('urn:example:carol7908', false)). +answer('urn:example:complies'('urn:example:carol7909', false)). +answer('urn:example:complies'('urn:example:carol7910', false)). +answer('urn:example:complies'('urn:example:carol7911', false)). +answer('urn:example:complies'('urn:example:carol7912', false)). +answer('urn:example:complies'('urn:example:carol7913', false)). +answer('urn:example:complies'('urn:example:carol7914', false)). +answer('urn:example:complies'('urn:example:carol7915', false)). +answer('urn:example:complies'('urn:example:carol7916', false)). +answer('urn:example:complies'('urn:example:carol7917', false)). +answer('urn:example:complies'('urn:example:carol7918', false)). +answer('urn:example:complies'('urn:example:carol7919', false)). +answer('urn:example:complies'('urn:example:carol7920', false)). +answer('urn:example:complies'('urn:example:carol7921', false)). +answer('urn:example:complies'('urn:example:carol7922', false)). +answer('urn:example:complies'('urn:example:carol7923', false)). +answer('urn:example:complies'('urn:example:carol7924', false)). +answer('urn:example:complies'('urn:example:carol7925', false)). +answer('urn:example:complies'('urn:example:carol7926', false)). +answer('urn:example:complies'('urn:example:carol7927', false)). +answer('urn:example:complies'('urn:example:carol7928', false)). +answer('urn:example:complies'('urn:example:carol7929', false)). +answer('urn:example:complies'('urn:example:carol7930', false)). +answer('urn:example:complies'('urn:example:carol7931', false)). +answer('urn:example:complies'('urn:example:carol7932', false)). +answer('urn:example:complies'('urn:example:carol7933', false)). +answer('urn:example:complies'('urn:example:carol7934', false)). +answer('urn:example:complies'('urn:example:carol7935', false)). +answer('urn:example:complies'('urn:example:carol7936', false)). +answer('urn:example:complies'('urn:example:carol7937', false)). +answer('urn:example:complies'('urn:example:carol7938', false)). +answer('urn:example:complies'('urn:example:carol7939', false)). +answer('urn:example:complies'('urn:example:carol7940', false)). +answer('urn:example:complies'('urn:example:carol7941', false)). +answer('urn:example:complies'('urn:example:carol7942', false)). +answer('urn:example:complies'('urn:example:carol7943', false)). +answer('urn:example:complies'('urn:example:carol7944', false)). +answer('urn:example:complies'('urn:example:carol7945', false)). +answer('urn:example:complies'('urn:example:carol7946', false)). +answer('urn:example:complies'('urn:example:carol7947', false)). +answer('urn:example:complies'('urn:example:carol7948', false)). +answer('urn:example:complies'('urn:example:carol7949', false)). +answer('urn:example:complies'('urn:example:carol7950', false)). +answer('urn:example:complies'('urn:example:carol7951', false)). +answer('urn:example:complies'('urn:example:carol7952', false)). +answer('urn:example:complies'('urn:example:carol7953', false)). +answer('urn:example:complies'('urn:example:carol7954', false)). +answer('urn:example:complies'('urn:example:carol7955', false)). +answer('urn:example:complies'('urn:example:carol7956', false)). +answer('urn:example:complies'('urn:example:carol7957', false)). +answer('urn:example:complies'('urn:example:carol7958', false)). +answer('urn:example:complies'('urn:example:carol7959', false)). +answer('urn:example:complies'('urn:example:carol7960', false)). +answer('urn:example:complies'('urn:example:carol7961', false)). +answer('urn:example:complies'('urn:example:carol7962', false)). +answer('urn:example:complies'('urn:example:carol7963', false)). +answer('urn:example:complies'('urn:example:carol7964', false)). +answer('urn:example:complies'('urn:example:carol7965', false)). +answer('urn:example:complies'('urn:example:carol7966', false)). +answer('urn:example:complies'('urn:example:carol7967', false)). +answer('urn:example:complies'('urn:example:carol7968', false)). +answer('urn:example:complies'('urn:example:carol7969', false)). +answer('urn:example:complies'('urn:example:carol7970', false)). +answer('urn:example:complies'('urn:example:carol7971', false)). +answer('urn:example:complies'('urn:example:carol7972', false)). +answer('urn:example:complies'('urn:example:carol7973', false)). +answer('urn:example:complies'('urn:example:carol7974', false)). +answer('urn:example:complies'('urn:example:carol7975', false)). +answer('urn:example:complies'('urn:example:carol7976', false)). +answer('urn:example:complies'('urn:example:carol7977', false)). +answer('urn:example:complies'('urn:example:carol7978', false)). +answer('urn:example:complies'('urn:example:carol7979', false)). +answer('urn:example:complies'('urn:example:carol7980', false)). +answer('urn:example:complies'('urn:example:carol7981', false)). +answer('urn:example:complies'('urn:example:carol7982', false)). +answer('urn:example:complies'('urn:example:carol7983', false)). +answer('urn:example:complies'('urn:example:carol7984', false)). +answer('urn:example:complies'('urn:example:carol7985', false)). +answer('urn:example:complies'('urn:example:carol7986', false)). +answer('urn:example:complies'('urn:example:carol7987', false)). +answer('urn:example:complies'('urn:example:carol7988', false)). +answer('urn:example:complies'('urn:example:carol7989', false)). +answer('urn:example:complies'('urn:example:carol7990', false)). +answer('urn:example:complies'('urn:example:carol7991', false)). +answer('urn:example:complies'('urn:example:carol7992', false)). +answer('urn:example:complies'('urn:example:carol7993', false)). +answer('urn:example:complies'('urn:example:carol7994', false)). +answer('urn:example:complies'('urn:example:carol7995', false)). +answer('urn:example:complies'('urn:example:carol7996', false)). +answer('urn:example:complies'('urn:example:carol7997', false)). +answer('urn:example:complies'('urn:example:carol7998', false)). +answer('urn:example:complies'('urn:example:carol7999', false)). +answer('urn:example:complies'('urn:example:carol8000', false)). +answer('urn:example:complies'('urn:example:carol8001', false)). +answer('urn:example:complies'('urn:example:carol8002', false)). +answer('urn:example:complies'('urn:example:carol8003', false)). +answer('urn:example:complies'('urn:example:carol8004', false)). +answer('urn:example:complies'('urn:example:carol8005', false)). +answer('urn:example:complies'('urn:example:carol8006', false)). +answer('urn:example:complies'('urn:example:carol8007', false)). +answer('urn:example:complies'('urn:example:carol8008', false)). +answer('urn:example:complies'('urn:example:carol8009', false)). +answer('urn:example:complies'('urn:example:carol8010', false)). +answer('urn:example:complies'('urn:example:carol8011', false)). +answer('urn:example:complies'('urn:example:carol8012', false)). +answer('urn:example:complies'('urn:example:carol8013', false)). +answer('urn:example:complies'('urn:example:carol8014', false)). +answer('urn:example:complies'('urn:example:carol8015', false)). +answer('urn:example:complies'('urn:example:carol8016', false)). +answer('urn:example:complies'('urn:example:carol8017', false)). +answer('urn:example:complies'('urn:example:carol8018', false)). +answer('urn:example:complies'('urn:example:carol8019', false)). +answer('urn:example:complies'('urn:example:carol8020', false)). +answer('urn:example:complies'('urn:example:carol8021', false)). +answer('urn:example:complies'('urn:example:carol8022', false)). +answer('urn:example:complies'('urn:example:carol8023', false)). +answer('urn:example:complies'('urn:example:carol8024', false)). +answer('urn:example:complies'('urn:example:carol8025', false)). +answer('urn:example:complies'('urn:example:carol8026', false)). +answer('urn:example:complies'('urn:example:carol8027', false)). +answer('urn:example:complies'('urn:example:carol8028', false)). +answer('urn:example:complies'('urn:example:carol8029', false)). +answer('urn:example:complies'('urn:example:carol8030', false)). +answer('urn:example:complies'('urn:example:carol8031', false)). +answer('urn:example:complies'('urn:example:carol8032', false)). +answer('urn:example:complies'('urn:example:carol8033', false)). +answer('urn:example:complies'('urn:example:carol8034', false)). +answer('urn:example:complies'('urn:example:carol8035', false)). +answer('urn:example:complies'('urn:example:carol8036', false)). +answer('urn:example:complies'('urn:example:carol8037', false)). +answer('urn:example:complies'('urn:example:carol8038', false)). +answer('urn:example:complies'('urn:example:carol8039', false)). +answer('urn:example:complies'('urn:example:carol8040', false)). +answer('urn:example:complies'('urn:example:carol8041', false)). +answer('urn:example:complies'('urn:example:carol8042', false)). +answer('urn:example:complies'('urn:example:carol8043', false)). +answer('urn:example:complies'('urn:example:carol8044', false)). +answer('urn:example:complies'('urn:example:carol8045', false)). +answer('urn:example:complies'('urn:example:carol8046', false)). +answer('urn:example:complies'('urn:example:carol8047', false)). +answer('urn:example:complies'('urn:example:carol8048', false)). +answer('urn:example:complies'('urn:example:carol8049', false)). +answer('urn:example:complies'('urn:example:carol8050', false)). +answer('urn:example:complies'('urn:example:carol8051', false)). +answer('urn:example:complies'('urn:example:carol8052', false)). +answer('urn:example:complies'('urn:example:carol8053', false)). +answer('urn:example:complies'('urn:example:carol8054', false)). +answer('urn:example:complies'('urn:example:carol8055', false)). +answer('urn:example:complies'('urn:example:carol8056', false)). +answer('urn:example:complies'('urn:example:carol8057', false)). +answer('urn:example:complies'('urn:example:carol8058', false)). +answer('urn:example:complies'('urn:example:carol8059', false)). +answer('urn:example:complies'('urn:example:carol8060', false)). +answer('urn:example:complies'('urn:example:carol8061', false)). +answer('urn:example:complies'('urn:example:carol8062', false)). +answer('urn:example:complies'('urn:example:carol8063', false)). +answer('urn:example:complies'('urn:example:carol8064', false)). +answer('urn:example:complies'('urn:example:carol8065', false)). +answer('urn:example:complies'('urn:example:carol8066', false)). +answer('urn:example:complies'('urn:example:carol8067', false)). +answer('urn:example:complies'('urn:example:carol8068', false)). +answer('urn:example:complies'('urn:example:carol8069', false)). +answer('urn:example:complies'('urn:example:carol8070', false)). +answer('urn:example:complies'('urn:example:carol8071', false)). +answer('urn:example:complies'('urn:example:carol8072', false)). +answer('urn:example:complies'('urn:example:carol8073', false)). +answer('urn:example:complies'('urn:example:carol8074', false)). +answer('urn:example:complies'('urn:example:carol8075', false)). +answer('urn:example:complies'('urn:example:carol8076', false)). +answer('urn:example:complies'('urn:example:carol8077', false)). +answer('urn:example:complies'('urn:example:carol8078', false)). +answer('urn:example:complies'('urn:example:carol8079', false)). +answer('urn:example:complies'('urn:example:carol8080', false)). +answer('urn:example:complies'('urn:example:carol8081', false)). +answer('urn:example:complies'('urn:example:carol8082', false)). +answer('urn:example:complies'('urn:example:carol8083', false)). +answer('urn:example:complies'('urn:example:carol8084', false)). +answer('urn:example:complies'('urn:example:carol8085', false)). +answer('urn:example:complies'('urn:example:carol8086', false)). +answer('urn:example:complies'('urn:example:carol8087', false)). +answer('urn:example:complies'('urn:example:carol8088', false)). +answer('urn:example:complies'('urn:example:carol8089', false)). +answer('urn:example:complies'('urn:example:carol8090', false)). +answer('urn:example:complies'('urn:example:carol8091', false)). +answer('urn:example:complies'('urn:example:carol8092', false)). +answer('urn:example:complies'('urn:example:carol8093', false)). +answer('urn:example:complies'('urn:example:carol8094', false)). +answer('urn:example:complies'('urn:example:carol8095', false)). +answer('urn:example:complies'('urn:example:carol8096', false)). +answer('urn:example:complies'('urn:example:carol8097', false)). +answer('urn:example:complies'('urn:example:carol8098', false)). +answer('urn:example:complies'('urn:example:carol8099', false)). +answer('urn:example:complies'('urn:example:carol8100', false)). +answer('urn:example:complies'('urn:example:carol8101', false)). +answer('urn:example:complies'('urn:example:carol8102', false)). +answer('urn:example:complies'('urn:example:carol8103', false)). +answer('urn:example:complies'('urn:example:carol8104', false)). +answer('urn:example:complies'('urn:example:carol8105', false)). +answer('urn:example:complies'('urn:example:carol8106', false)). +answer('urn:example:complies'('urn:example:carol8107', false)). +answer('urn:example:complies'('urn:example:carol8108', false)). +answer('urn:example:complies'('urn:example:carol8109', false)). +answer('urn:example:complies'('urn:example:carol8110', false)). +answer('urn:example:complies'('urn:example:carol8111', false)). +answer('urn:example:complies'('urn:example:carol8112', false)). +answer('urn:example:complies'('urn:example:carol8113', false)). +answer('urn:example:complies'('urn:example:carol8114', false)). +answer('urn:example:complies'('urn:example:carol8115', false)). +answer('urn:example:complies'('urn:example:carol8116', false)). +answer('urn:example:complies'('urn:example:carol8117', false)). +answer('urn:example:complies'('urn:example:carol8118', false)). +answer('urn:example:complies'('urn:example:carol8119', false)). +answer('urn:example:complies'('urn:example:carol8120', false)). +answer('urn:example:complies'('urn:example:carol8121', false)). +answer('urn:example:complies'('urn:example:carol8122', false)). +answer('urn:example:complies'('urn:example:carol8123', false)). +answer('urn:example:complies'('urn:example:carol8124', false)). +answer('urn:example:complies'('urn:example:carol8125', false)). +answer('urn:example:complies'('urn:example:carol8126', false)). +answer('urn:example:complies'('urn:example:carol8127', false)). +answer('urn:example:complies'('urn:example:carol8128', false)). +answer('urn:example:complies'('urn:example:carol8129', false)). +answer('urn:example:complies'('urn:example:carol8130', false)). +answer('urn:example:complies'('urn:example:carol8131', false)). +answer('urn:example:complies'('urn:example:carol8132', false)). +answer('urn:example:complies'('urn:example:carol8133', false)). +answer('urn:example:complies'('urn:example:carol8134', false)). +answer('urn:example:complies'('urn:example:carol8135', false)). +answer('urn:example:complies'('urn:example:carol8136', false)). +answer('urn:example:complies'('urn:example:carol8137', false)). +answer('urn:example:complies'('urn:example:carol8138', false)). +answer('urn:example:complies'('urn:example:carol8139', false)). +answer('urn:example:complies'('urn:example:carol8140', false)). +answer('urn:example:complies'('urn:example:carol8141', false)). +answer('urn:example:complies'('urn:example:carol8142', false)). +answer('urn:example:complies'('urn:example:carol8143', false)). +answer('urn:example:complies'('urn:example:carol8144', false)). +answer('urn:example:complies'('urn:example:carol8145', false)). +answer('urn:example:complies'('urn:example:carol8146', false)). +answer('urn:example:complies'('urn:example:carol8147', false)). +answer('urn:example:complies'('urn:example:carol8148', false)). +answer('urn:example:complies'('urn:example:carol8149', false)). +answer('urn:example:complies'('urn:example:carol8150', false)). +answer('urn:example:complies'('urn:example:carol8151', false)). +answer('urn:example:complies'('urn:example:carol8152', false)). +answer('urn:example:complies'('urn:example:carol8153', false)). +answer('urn:example:complies'('urn:example:carol8154', false)). +answer('urn:example:complies'('urn:example:carol8155', false)). +answer('urn:example:complies'('urn:example:carol8156', false)). +answer('urn:example:complies'('urn:example:carol8157', false)). +answer('urn:example:complies'('urn:example:carol8158', false)). +answer('urn:example:complies'('urn:example:carol8159', false)). +answer('urn:example:complies'('urn:example:carol8160', false)). +answer('urn:example:complies'('urn:example:carol8161', false)). +answer('urn:example:complies'('urn:example:carol8162', false)). +answer('urn:example:complies'('urn:example:carol8163', false)). +answer('urn:example:complies'('urn:example:carol8164', false)). +answer('urn:example:complies'('urn:example:carol8165', false)). +answer('urn:example:complies'('urn:example:carol8166', false)). +answer('urn:example:complies'('urn:example:carol8167', false)). +answer('urn:example:complies'('urn:example:carol8168', false)). +answer('urn:example:complies'('urn:example:carol8169', false)). +answer('urn:example:complies'('urn:example:carol8170', false)). +answer('urn:example:complies'('urn:example:carol8171', false)). +answer('urn:example:complies'('urn:example:carol8172', false)). +answer('urn:example:complies'('urn:example:carol8173', false)). +answer('urn:example:complies'('urn:example:carol8174', false)). +answer('urn:example:complies'('urn:example:carol8175', false)). +answer('urn:example:complies'('urn:example:carol8176', false)). +answer('urn:example:complies'('urn:example:carol8177', false)). +answer('urn:example:complies'('urn:example:carol8178', false)). +answer('urn:example:complies'('urn:example:carol8179', false)). +answer('urn:example:complies'('urn:example:carol8180', false)). +answer('urn:example:complies'('urn:example:carol8181', false)). +answer('urn:example:complies'('urn:example:carol8182', false)). +answer('urn:example:complies'('urn:example:carol8183', false)). +answer('urn:example:complies'('urn:example:carol8184', false)). +answer('urn:example:complies'('urn:example:carol8185', false)). +answer('urn:example:complies'('urn:example:carol8186', false)). +answer('urn:example:complies'('urn:example:carol8187', false)). +answer('urn:example:complies'('urn:example:carol8188', false)). +answer('urn:example:complies'('urn:example:carol8189', false)). +answer('urn:example:complies'('urn:example:carol8190', false)). +answer('urn:example:complies'('urn:example:carol8191', false)). +answer('urn:example:complies'('urn:example:carol8192', false)). +answer('urn:example:complies'('urn:example:carol8193', false)). +answer('urn:example:complies'('urn:example:carol8194', false)). +answer('urn:example:complies'('urn:example:carol8195', false)). +answer('urn:example:complies'('urn:example:carol8196', false)). +answer('urn:example:complies'('urn:example:carol8197', false)). +answer('urn:example:complies'('urn:example:carol8198', false)). +answer('urn:example:complies'('urn:example:carol8199', false)). +answer('urn:example:complies'('urn:example:carol8200', false)). +answer('urn:example:complies'('urn:example:carol8201', false)). +answer('urn:example:complies'('urn:example:carol8202', false)). +answer('urn:example:complies'('urn:example:carol8203', false)). +answer('urn:example:complies'('urn:example:carol8204', false)). +answer('urn:example:complies'('urn:example:carol8205', false)). +answer('urn:example:complies'('urn:example:carol8206', false)). +answer('urn:example:complies'('urn:example:carol8207', false)). +answer('urn:example:complies'('urn:example:carol8208', false)). +answer('urn:example:complies'('urn:example:carol8209', false)). +answer('urn:example:complies'('urn:example:carol8210', false)). +answer('urn:example:complies'('urn:example:carol8211', false)). +answer('urn:example:complies'('urn:example:carol8212', false)). +answer('urn:example:complies'('urn:example:carol8213', false)). +answer('urn:example:complies'('urn:example:carol8214', false)). +answer('urn:example:complies'('urn:example:carol8215', false)). +answer('urn:example:complies'('urn:example:carol8216', false)). +answer('urn:example:complies'('urn:example:carol8217', false)). +answer('urn:example:complies'('urn:example:carol8218', false)). +answer('urn:example:complies'('urn:example:carol8219', false)). +answer('urn:example:complies'('urn:example:carol8220', false)). +answer('urn:example:complies'('urn:example:carol8221', false)). +answer('urn:example:complies'('urn:example:carol8222', false)). +answer('urn:example:complies'('urn:example:carol8223', false)). +answer('urn:example:complies'('urn:example:carol8224', false)). +answer('urn:example:complies'('urn:example:carol8225', false)). +answer('urn:example:complies'('urn:example:carol8226', false)). +answer('urn:example:complies'('urn:example:carol8227', false)). +answer('urn:example:complies'('urn:example:carol8228', false)). +answer('urn:example:complies'('urn:example:carol8229', false)). +answer('urn:example:complies'('urn:example:carol8230', false)). +answer('urn:example:complies'('urn:example:carol8231', false)). +answer('urn:example:complies'('urn:example:carol8232', false)). +answer('urn:example:complies'('urn:example:carol8233', false)). +answer('urn:example:complies'('urn:example:carol8234', false)). +answer('urn:example:complies'('urn:example:carol8235', false)). +answer('urn:example:complies'('urn:example:carol8236', false)). +answer('urn:example:complies'('urn:example:carol8237', false)). +answer('urn:example:complies'('urn:example:carol8238', false)). +answer('urn:example:complies'('urn:example:carol8239', false)). +answer('urn:example:complies'('urn:example:carol8240', false)). +answer('urn:example:complies'('urn:example:carol8241', false)). +answer('urn:example:complies'('urn:example:carol8242', false)). +answer('urn:example:complies'('urn:example:carol8243', false)). +answer('urn:example:complies'('urn:example:carol8244', false)). +answer('urn:example:complies'('urn:example:carol8245', false)). +answer('urn:example:complies'('urn:example:carol8246', false)). +answer('urn:example:complies'('urn:example:carol8247', false)). +answer('urn:example:complies'('urn:example:carol8248', false)). +answer('urn:example:complies'('urn:example:carol8249', false)). +answer('urn:example:complies'('urn:example:carol8250', false)). +answer('urn:example:complies'('urn:example:carol8251', false)). +answer('urn:example:complies'('urn:example:carol8252', false)). +answer('urn:example:complies'('urn:example:carol8253', false)). +answer('urn:example:complies'('urn:example:carol8254', false)). +answer('urn:example:complies'('urn:example:carol8255', false)). +answer('urn:example:complies'('urn:example:carol8256', false)). +answer('urn:example:complies'('urn:example:carol8257', false)). +answer('urn:example:complies'('urn:example:carol8258', false)). +answer('urn:example:complies'('urn:example:carol8259', false)). +answer('urn:example:complies'('urn:example:carol8260', false)). +answer('urn:example:complies'('urn:example:carol8261', false)). +answer('urn:example:complies'('urn:example:carol8262', false)). +answer('urn:example:complies'('urn:example:carol8263', false)). +answer('urn:example:complies'('urn:example:carol8264', false)). +answer('urn:example:complies'('urn:example:carol8265', false)). +answer('urn:example:complies'('urn:example:carol8266', false)). +answer('urn:example:complies'('urn:example:carol8267', false)). +answer('urn:example:complies'('urn:example:carol8268', false)). +answer('urn:example:complies'('urn:example:carol8269', false)). +answer('urn:example:complies'('urn:example:carol8270', false)). +answer('urn:example:complies'('urn:example:carol8271', false)). +answer('urn:example:complies'('urn:example:carol8272', false)). +answer('urn:example:complies'('urn:example:carol8273', false)). +answer('urn:example:complies'('urn:example:carol8274', false)). +answer('urn:example:complies'('urn:example:carol8275', false)). +answer('urn:example:complies'('urn:example:carol8276', false)). +answer('urn:example:complies'('urn:example:carol8277', false)). +answer('urn:example:complies'('urn:example:carol8278', false)). +answer('urn:example:complies'('urn:example:carol8279', false)). +answer('urn:example:complies'('urn:example:carol8280', false)). +answer('urn:example:complies'('urn:example:carol8281', false)). +answer('urn:example:complies'('urn:example:carol8282', false)). +answer('urn:example:complies'('urn:example:carol8283', false)). +answer('urn:example:complies'('urn:example:carol8284', false)). +answer('urn:example:complies'('urn:example:carol8285', false)). +answer('urn:example:complies'('urn:example:carol8286', false)). +answer('urn:example:complies'('urn:example:carol8287', false)). +answer('urn:example:complies'('urn:example:carol8288', false)). +answer('urn:example:complies'('urn:example:carol8289', false)). +answer('urn:example:complies'('urn:example:carol8290', false)). +answer('urn:example:complies'('urn:example:carol8291', false)). +answer('urn:example:complies'('urn:example:carol8292', false)). +answer('urn:example:complies'('urn:example:carol8293', false)). +answer('urn:example:complies'('urn:example:carol8294', false)). +answer('urn:example:complies'('urn:example:carol8295', false)). +answer('urn:example:complies'('urn:example:carol8296', false)). +answer('urn:example:complies'('urn:example:carol8297', false)). +answer('urn:example:complies'('urn:example:carol8298', false)). +answer('urn:example:complies'('urn:example:carol8299', false)). +answer('urn:example:complies'('urn:example:carol8300', false)). +answer('urn:example:complies'('urn:example:carol8301', false)). +answer('urn:example:complies'('urn:example:carol8302', false)). +answer('urn:example:complies'('urn:example:carol8303', false)). +answer('urn:example:complies'('urn:example:carol8304', false)). +answer('urn:example:complies'('urn:example:carol8305', false)). +answer('urn:example:complies'('urn:example:carol8306', false)). +answer('urn:example:complies'('urn:example:carol8307', false)). +answer('urn:example:complies'('urn:example:carol8308', false)). +answer('urn:example:complies'('urn:example:carol8309', false)). +answer('urn:example:complies'('urn:example:carol8310', false)). +answer('urn:example:complies'('urn:example:carol8311', false)). +answer('urn:example:complies'('urn:example:carol8312', false)). +answer('urn:example:complies'('urn:example:carol8313', false)). +answer('urn:example:complies'('urn:example:carol8314', false)). +answer('urn:example:complies'('urn:example:carol8315', false)). +answer('urn:example:complies'('urn:example:carol8316', false)). +answer('urn:example:complies'('urn:example:carol8317', false)). +answer('urn:example:complies'('urn:example:carol8318', false)). +answer('urn:example:complies'('urn:example:carol8319', false)). +answer('urn:example:complies'('urn:example:carol8320', false)). +answer('urn:example:complies'('urn:example:carol8321', false)). +answer('urn:example:complies'('urn:example:carol8322', false)). +answer('urn:example:complies'('urn:example:carol8323', false)). +answer('urn:example:complies'('urn:example:carol8324', false)). +answer('urn:example:complies'('urn:example:carol8325', false)). +answer('urn:example:complies'('urn:example:carol8326', false)). +answer('urn:example:complies'('urn:example:carol8327', false)). +answer('urn:example:complies'('urn:example:carol8328', false)). +answer('urn:example:complies'('urn:example:carol8329', false)). +answer('urn:example:complies'('urn:example:carol8330', false)). +answer('urn:example:complies'('urn:example:carol8331', false)). +answer('urn:example:complies'('urn:example:carol8332', false)). +answer('urn:example:complies'('urn:example:carol8333', false)). +answer('urn:example:complies'('urn:example:carol8334', false)). +answer('urn:example:complies'('urn:example:carol8335', false)). +answer('urn:example:complies'('urn:example:carol8336', false)). +answer('urn:example:complies'('urn:example:carol8337', false)). +answer('urn:example:complies'('urn:example:carol8338', false)). +answer('urn:example:complies'('urn:example:carol8339', false)). +answer('urn:example:complies'('urn:example:carol8340', false)). +answer('urn:example:complies'('urn:example:carol8341', false)). +answer('urn:example:complies'('urn:example:carol8342', false)). +answer('urn:example:complies'('urn:example:carol8343', false)). +answer('urn:example:complies'('urn:example:carol8344', false)). +answer('urn:example:complies'('urn:example:carol8345', false)). +answer('urn:example:complies'('urn:example:carol8346', false)). +answer('urn:example:complies'('urn:example:carol8347', false)). +answer('urn:example:complies'('urn:example:carol8348', false)). +answer('urn:example:complies'('urn:example:carol8349', false)). +answer('urn:example:complies'('urn:example:carol8350', false)). +answer('urn:example:complies'('urn:example:carol8351', false)). +answer('urn:example:complies'('urn:example:carol8352', false)). +answer('urn:example:complies'('urn:example:carol8353', false)). +answer('urn:example:complies'('urn:example:carol8354', false)). +answer('urn:example:complies'('urn:example:carol8355', false)). +answer('urn:example:complies'('urn:example:carol8356', false)). +answer('urn:example:complies'('urn:example:carol8357', false)). +answer('urn:example:complies'('urn:example:carol8358', false)). +answer('urn:example:complies'('urn:example:carol8359', false)). +answer('urn:example:complies'('urn:example:carol8360', false)). +answer('urn:example:complies'('urn:example:carol8361', false)). +answer('urn:example:complies'('urn:example:carol8362', false)). +answer('urn:example:complies'('urn:example:carol8363', false)). +answer('urn:example:complies'('urn:example:carol8364', false)). +answer('urn:example:complies'('urn:example:carol8365', false)). +answer('urn:example:complies'('urn:example:carol8366', false)). +answer('urn:example:complies'('urn:example:carol8367', false)). +answer('urn:example:complies'('urn:example:carol8368', false)). +answer('urn:example:complies'('urn:example:carol8369', false)). +answer('urn:example:complies'('urn:example:carol8370', false)). +answer('urn:example:complies'('urn:example:carol8371', false)). +answer('urn:example:complies'('urn:example:carol8372', false)). +answer('urn:example:complies'('urn:example:carol8373', false)). +answer('urn:example:complies'('urn:example:carol8374', false)). +answer('urn:example:complies'('urn:example:carol8375', false)). +answer('urn:example:complies'('urn:example:carol8376', false)). +answer('urn:example:complies'('urn:example:carol8377', false)). +answer('urn:example:complies'('urn:example:carol8378', false)). +answer('urn:example:complies'('urn:example:carol8379', false)). +answer('urn:example:complies'('urn:example:carol8380', false)). +answer('urn:example:complies'('urn:example:carol8381', false)). +answer('urn:example:complies'('urn:example:carol8382', false)). +answer('urn:example:complies'('urn:example:carol8383', false)). +answer('urn:example:complies'('urn:example:carol8384', false)). +answer('urn:example:complies'('urn:example:carol8385', false)). +answer('urn:example:complies'('urn:example:carol8386', false)). +answer('urn:example:complies'('urn:example:carol8387', false)). +answer('urn:example:complies'('urn:example:carol8388', false)). +answer('urn:example:complies'('urn:example:carol8389', false)). +answer('urn:example:complies'('urn:example:carol8390', false)). +answer('urn:example:complies'('urn:example:carol8391', false)). +answer('urn:example:complies'('urn:example:carol8392', false)). +answer('urn:example:complies'('urn:example:carol8393', false)). +answer('urn:example:complies'('urn:example:carol8394', false)). +answer('urn:example:complies'('urn:example:carol8395', false)). +answer('urn:example:complies'('urn:example:carol8396', false)). +answer('urn:example:complies'('urn:example:carol8397', false)). +answer('urn:example:complies'('urn:example:carol8398', false)). +answer('urn:example:complies'('urn:example:carol8399', false)). +answer('urn:example:complies'('urn:example:carol8400', false)). +answer('urn:example:complies'('urn:example:carol8401', false)). +answer('urn:example:complies'('urn:example:carol8402', false)). +answer('urn:example:complies'('urn:example:carol8403', false)). +answer('urn:example:complies'('urn:example:carol8404', false)). +answer('urn:example:complies'('urn:example:carol8405', false)). +answer('urn:example:complies'('urn:example:carol8406', false)). +answer('urn:example:complies'('urn:example:carol8407', false)). +answer('urn:example:complies'('urn:example:carol8408', false)). +answer('urn:example:complies'('urn:example:carol8409', false)). +answer('urn:example:complies'('urn:example:carol8410', false)). +answer('urn:example:complies'('urn:example:carol8411', false)). +answer('urn:example:complies'('urn:example:carol8412', false)). +answer('urn:example:complies'('urn:example:carol8413', false)). +answer('urn:example:complies'('urn:example:carol8414', false)). +answer('urn:example:complies'('urn:example:carol8415', false)). +answer('urn:example:complies'('urn:example:carol8416', false)). +answer('urn:example:complies'('urn:example:carol8417', false)). +answer('urn:example:complies'('urn:example:carol8418', false)). +answer('urn:example:complies'('urn:example:carol8419', false)). +answer('urn:example:complies'('urn:example:carol8420', false)). +answer('urn:example:complies'('urn:example:carol8421', false)). +answer('urn:example:complies'('urn:example:carol8422', false)). +answer('urn:example:complies'('urn:example:carol8423', false)). +answer('urn:example:complies'('urn:example:carol8424', false)). +answer('urn:example:complies'('urn:example:carol8425', false)). +answer('urn:example:complies'('urn:example:carol8426', false)). +answer('urn:example:complies'('urn:example:carol8427', false)). +answer('urn:example:complies'('urn:example:carol8428', false)). +answer('urn:example:complies'('urn:example:carol8429', false)). +answer('urn:example:complies'('urn:example:carol8430', false)). +answer('urn:example:complies'('urn:example:carol8431', false)). +answer('urn:example:complies'('urn:example:carol8432', false)). +answer('urn:example:complies'('urn:example:carol8433', false)). +answer('urn:example:complies'('urn:example:carol8434', false)). +answer('urn:example:complies'('urn:example:carol8435', false)). +answer('urn:example:complies'('urn:example:carol8436', false)). +answer('urn:example:complies'('urn:example:carol8437', false)). +answer('urn:example:complies'('urn:example:carol8438', false)). +answer('urn:example:complies'('urn:example:carol8439', false)). +answer('urn:example:complies'('urn:example:carol8440', false)). +answer('urn:example:complies'('urn:example:carol8441', false)). +answer('urn:example:complies'('urn:example:carol8442', false)). +answer('urn:example:complies'('urn:example:carol8443', false)). +answer('urn:example:complies'('urn:example:carol8444', false)). +answer('urn:example:complies'('urn:example:carol8445', false)). +answer('urn:example:complies'('urn:example:carol8446', false)). +answer('urn:example:complies'('urn:example:carol8447', false)). +answer('urn:example:complies'('urn:example:carol8448', false)). +answer('urn:example:complies'('urn:example:carol8449', false)). +answer('urn:example:complies'('urn:example:carol8450', false)). +answer('urn:example:complies'('urn:example:carol8451', false)). +answer('urn:example:complies'('urn:example:carol8452', false)). +answer('urn:example:complies'('urn:example:carol8453', false)). +answer('urn:example:complies'('urn:example:carol8454', false)). +answer('urn:example:complies'('urn:example:carol8455', false)). +answer('urn:example:complies'('urn:example:carol8456', false)). +answer('urn:example:complies'('urn:example:carol8457', false)). +answer('urn:example:complies'('urn:example:carol8458', false)). +answer('urn:example:complies'('urn:example:carol8459', false)). +answer('urn:example:complies'('urn:example:carol8460', false)). +answer('urn:example:complies'('urn:example:carol8461', false)). +answer('urn:example:complies'('urn:example:carol8462', false)). +answer('urn:example:complies'('urn:example:carol8463', false)). +answer('urn:example:complies'('urn:example:carol8464', false)). +answer('urn:example:complies'('urn:example:carol8465', false)). +answer('urn:example:complies'('urn:example:carol8466', false)). +answer('urn:example:complies'('urn:example:carol8467', false)). +answer('urn:example:complies'('urn:example:carol8468', false)). +answer('urn:example:complies'('urn:example:carol8469', false)). +answer('urn:example:complies'('urn:example:carol8470', false)). +answer('urn:example:complies'('urn:example:carol8471', false)). +answer('urn:example:complies'('urn:example:carol8472', false)). +answer('urn:example:complies'('urn:example:carol8473', false)). +answer('urn:example:complies'('urn:example:carol8474', false)). +answer('urn:example:complies'('urn:example:carol8475', false)). +answer('urn:example:complies'('urn:example:carol8476', false)). +answer('urn:example:complies'('urn:example:carol8477', false)). +answer('urn:example:complies'('urn:example:carol8478', false)). +answer('urn:example:complies'('urn:example:carol8479', false)). +answer('urn:example:complies'('urn:example:carol8480', false)). +answer('urn:example:complies'('urn:example:carol8481', false)). +answer('urn:example:complies'('urn:example:carol8482', false)). +answer('urn:example:complies'('urn:example:carol8483', false)). +answer('urn:example:complies'('urn:example:carol8484', false)). +answer('urn:example:complies'('urn:example:carol8485', false)). +answer('urn:example:complies'('urn:example:carol8486', false)). +answer('urn:example:complies'('urn:example:carol8487', false)). +answer('urn:example:complies'('urn:example:carol8488', false)). +answer('urn:example:complies'('urn:example:carol8489', false)). +answer('urn:example:complies'('urn:example:carol8490', false)). +answer('urn:example:complies'('urn:example:carol8491', false)). +answer('urn:example:complies'('urn:example:carol8492', false)). +answer('urn:example:complies'('urn:example:carol8493', false)). +answer('urn:example:complies'('urn:example:carol8494', false)). +answer('urn:example:complies'('urn:example:carol8495', false)). +answer('urn:example:complies'('urn:example:carol8496', false)). +answer('urn:example:complies'('urn:example:carol8497', false)). +answer('urn:example:complies'('urn:example:carol8498', false)). +answer('urn:example:complies'('urn:example:carol8499', false)). +answer('urn:example:complies'('urn:example:carol8500', false)). +answer('urn:example:complies'('urn:example:carol8501', false)). +answer('urn:example:complies'('urn:example:carol8502', false)). +answer('urn:example:complies'('urn:example:carol8503', false)). +answer('urn:example:complies'('urn:example:carol8504', false)). +answer('urn:example:complies'('urn:example:carol8505', false)). +answer('urn:example:complies'('urn:example:carol8506', false)). +answer('urn:example:complies'('urn:example:carol8507', false)). +answer('urn:example:complies'('urn:example:carol8508', false)). +answer('urn:example:complies'('urn:example:carol8509', false)). +answer('urn:example:complies'('urn:example:carol8510', false)). +answer('urn:example:complies'('urn:example:carol8511', false)). +answer('urn:example:complies'('urn:example:carol8512', false)). +answer('urn:example:complies'('urn:example:carol8513', false)). +answer('urn:example:complies'('urn:example:carol8514', false)). +answer('urn:example:complies'('urn:example:carol8515', false)). +answer('urn:example:complies'('urn:example:carol8516', false)). +answer('urn:example:complies'('urn:example:carol8517', false)). +answer('urn:example:complies'('urn:example:carol8518', false)). +answer('urn:example:complies'('urn:example:carol8519', false)). +answer('urn:example:complies'('urn:example:carol8520', false)). +answer('urn:example:complies'('urn:example:carol8521', false)). +answer('urn:example:complies'('urn:example:carol8522', false)). +answer('urn:example:complies'('urn:example:carol8523', false)). +answer('urn:example:complies'('urn:example:carol8524', false)). +answer('urn:example:complies'('urn:example:carol8525', false)). +answer('urn:example:complies'('urn:example:carol8526', false)). +answer('urn:example:complies'('urn:example:carol8527', false)). +answer('urn:example:complies'('urn:example:carol8528', false)). +answer('urn:example:complies'('urn:example:carol8529', false)). +answer('urn:example:complies'('urn:example:carol8530', false)). +answer('urn:example:complies'('urn:example:carol8531', false)). +answer('urn:example:complies'('urn:example:carol8532', false)). +answer('urn:example:complies'('urn:example:carol8533', false)). +answer('urn:example:complies'('urn:example:carol8534', false)). +answer('urn:example:complies'('urn:example:carol8535', false)). +answer('urn:example:complies'('urn:example:carol8536', false)). +answer('urn:example:complies'('urn:example:carol8537', false)). +answer('urn:example:complies'('urn:example:carol8538', false)). +answer('urn:example:complies'('urn:example:carol8539', false)). +answer('urn:example:complies'('urn:example:carol8540', false)). +answer('urn:example:complies'('urn:example:carol8541', false)). +answer('urn:example:complies'('urn:example:carol8542', false)). +answer('urn:example:complies'('urn:example:carol8543', false)). +answer('urn:example:complies'('urn:example:carol8544', false)). +answer('urn:example:complies'('urn:example:carol8545', false)). +answer('urn:example:complies'('urn:example:carol8546', false)). +answer('urn:example:complies'('urn:example:carol8547', false)). +answer('urn:example:complies'('urn:example:carol8548', false)). +answer('urn:example:complies'('urn:example:carol8549', false)). +answer('urn:example:complies'('urn:example:carol8550', false)). +answer('urn:example:complies'('urn:example:carol8551', false)). +answer('urn:example:complies'('urn:example:carol8552', false)). +answer('urn:example:complies'('urn:example:carol8553', false)). +answer('urn:example:complies'('urn:example:carol8554', false)). +answer('urn:example:complies'('urn:example:carol8555', false)). +answer('urn:example:complies'('urn:example:carol8556', false)). +answer('urn:example:complies'('urn:example:carol8557', false)). +answer('urn:example:complies'('urn:example:carol8558', false)). +answer('urn:example:complies'('urn:example:carol8559', false)). +answer('urn:example:complies'('urn:example:carol8560', false)). +answer('urn:example:complies'('urn:example:carol8561', false)). +answer('urn:example:complies'('urn:example:carol8562', false)). +answer('urn:example:complies'('urn:example:carol8563', false)). +answer('urn:example:complies'('urn:example:carol8564', false)). +answer('urn:example:complies'('urn:example:carol8565', false)). +answer('urn:example:complies'('urn:example:carol8566', false)). +answer('urn:example:complies'('urn:example:carol8567', false)). +answer('urn:example:complies'('urn:example:carol8568', false)). +answer('urn:example:complies'('urn:example:carol8569', false)). +answer('urn:example:complies'('urn:example:carol8570', false)). +answer('urn:example:complies'('urn:example:carol8571', false)). +answer('urn:example:complies'('urn:example:carol8572', false)). +answer('urn:example:complies'('urn:example:carol8573', false)). +answer('urn:example:complies'('urn:example:carol8574', false)). +answer('urn:example:complies'('urn:example:carol8575', false)). +answer('urn:example:complies'('urn:example:carol8576', false)). +answer('urn:example:complies'('urn:example:carol8577', false)). +answer('urn:example:complies'('urn:example:carol8578', false)). +answer('urn:example:complies'('urn:example:carol8579', false)). +answer('urn:example:complies'('urn:example:carol8580', false)). +answer('urn:example:complies'('urn:example:carol8581', false)). +answer('urn:example:complies'('urn:example:carol8582', false)). +answer('urn:example:complies'('urn:example:carol8583', false)). +answer('urn:example:complies'('urn:example:carol8584', false)). +answer('urn:example:complies'('urn:example:carol8585', false)). +answer('urn:example:complies'('urn:example:carol8586', false)). +answer('urn:example:complies'('urn:example:carol8587', false)). +answer('urn:example:complies'('urn:example:carol8588', false)). +answer('urn:example:complies'('urn:example:carol8589', false)). +answer('urn:example:complies'('urn:example:carol8590', false)). +answer('urn:example:complies'('urn:example:carol8591', false)). +answer('urn:example:complies'('urn:example:carol8592', false)). +answer('urn:example:complies'('urn:example:carol8593', false)). +answer('urn:example:complies'('urn:example:carol8594', false)). +answer('urn:example:complies'('urn:example:carol8595', false)). +answer('urn:example:complies'('urn:example:carol8596', false)). +answer('urn:example:complies'('urn:example:carol8597', false)). +answer('urn:example:complies'('urn:example:carol8598', false)). +answer('urn:example:complies'('urn:example:carol8599', false)). +answer('urn:example:complies'('urn:example:carol8600', false)). +answer('urn:example:complies'('urn:example:carol8601', false)). +answer('urn:example:complies'('urn:example:carol8602', false)). +answer('urn:example:complies'('urn:example:carol8603', false)). +answer('urn:example:complies'('urn:example:carol8604', false)). +answer('urn:example:complies'('urn:example:carol8605', false)). +answer('urn:example:complies'('urn:example:carol8606', false)). +answer('urn:example:complies'('urn:example:carol8607', false)). +answer('urn:example:complies'('urn:example:carol8608', false)). +answer('urn:example:complies'('urn:example:carol8609', false)). +answer('urn:example:complies'('urn:example:carol8610', false)). +answer('urn:example:complies'('urn:example:carol8611', false)). +answer('urn:example:complies'('urn:example:carol8612', false)). +answer('urn:example:complies'('urn:example:carol8613', false)). +answer('urn:example:complies'('urn:example:carol8614', false)). +answer('urn:example:complies'('urn:example:carol8615', false)). +answer('urn:example:complies'('urn:example:carol8616', false)). +answer('urn:example:complies'('urn:example:carol8617', false)). +answer('urn:example:complies'('urn:example:carol8618', false)). +answer('urn:example:complies'('urn:example:carol8619', false)). +answer('urn:example:complies'('urn:example:carol8620', false)). +answer('urn:example:complies'('urn:example:carol8621', false)). +answer('urn:example:complies'('urn:example:carol8622', false)). +answer('urn:example:complies'('urn:example:carol8623', false)). +answer('urn:example:complies'('urn:example:carol8624', false)). +answer('urn:example:complies'('urn:example:carol8625', false)). +answer('urn:example:complies'('urn:example:carol8626', false)). +answer('urn:example:complies'('urn:example:carol8627', false)). +answer('urn:example:complies'('urn:example:carol8628', false)). +answer('urn:example:complies'('urn:example:carol8629', false)). +answer('urn:example:complies'('urn:example:carol8630', false)). +answer('urn:example:complies'('urn:example:carol8631', false)). +answer('urn:example:complies'('urn:example:carol8632', false)). +answer('urn:example:complies'('urn:example:carol8633', false)). +answer('urn:example:complies'('urn:example:carol8634', false)). +answer('urn:example:complies'('urn:example:carol8635', false)). +answer('urn:example:complies'('urn:example:carol8636', false)). +answer('urn:example:complies'('urn:example:carol8637', false)). +answer('urn:example:complies'('urn:example:carol8638', false)). +answer('urn:example:complies'('urn:example:carol8639', false)). +answer('urn:example:complies'('urn:example:carol8640', false)). +answer('urn:example:complies'('urn:example:carol8641', false)). +answer('urn:example:complies'('urn:example:carol8642', false)). +answer('urn:example:complies'('urn:example:carol8643', false)). +answer('urn:example:complies'('urn:example:carol8644', false)). +answer('urn:example:complies'('urn:example:carol8645', false)). +answer('urn:example:complies'('urn:example:carol8646', false)). +answer('urn:example:complies'('urn:example:carol8647', false)). +answer('urn:example:complies'('urn:example:carol8648', false)). +answer('urn:example:complies'('urn:example:carol8649', false)). +answer('urn:example:complies'('urn:example:carol8650', false)). +answer('urn:example:complies'('urn:example:carol8651', false)). +answer('urn:example:complies'('urn:example:carol8652', false)). +answer('urn:example:complies'('urn:example:carol8653', false)). +answer('urn:example:complies'('urn:example:carol8654', false)). +answer('urn:example:complies'('urn:example:carol8655', false)). +answer('urn:example:complies'('urn:example:carol8656', false)). +answer('urn:example:complies'('urn:example:carol8657', false)). +answer('urn:example:complies'('urn:example:carol8658', false)). +answer('urn:example:complies'('urn:example:carol8659', false)). +answer('urn:example:complies'('urn:example:carol8660', false)). +answer('urn:example:complies'('urn:example:carol8661', false)). +answer('urn:example:complies'('urn:example:carol8662', false)). +answer('urn:example:complies'('urn:example:carol8663', false)). +answer('urn:example:complies'('urn:example:carol8664', false)). +answer('urn:example:complies'('urn:example:carol8665', false)). +answer('urn:example:complies'('urn:example:carol8666', false)). +answer('urn:example:complies'('urn:example:carol8667', false)). +answer('urn:example:complies'('urn:example:carol8668', false)). +answer('urn:example:complies'('urn:example:carol8669', false)). +answer('urn:example:complies'('urn:example:carol8670', false)). +answer('urn:example:complies'('urn:example:carol8671', false)). +answer('urn:example:complies'('urn:example:carol8672', false)). +answer('urn:example:complies'('urn:example:carol8673', false)). +answer('urn:example:complies'('urn:example:carol8674', false)). +answer('urn:example:complies'('urn:example:carol8675', false)). +answer('urn:example:complies'('urn:example:carol8676', false)). +answer('urn:example:complies'('urn:example:carol8677', false)). +answer('urn:example:complies'('urn:example:carol8678', false)). +answer('urn:example:complies'('urn:example:carol8679', false)). +answer('urn:example:complies'('urn:example:carol8680', false)). +answer('urn:example:complies'('urn:example:carol8681', false)). +answer('urn:example:complies'('urn:example:carol8682', false)). +answer('urn:example:complies'('urn:example:carol8683', false)). +answer('urn:example:complies'('urn:example:carol8684', false)). +answer('urn:example:complies'('urn:example:carol8685', false)). +answer('urn:example:complies'('urn:example:carol8686', false)). +answer('urn:example:complies'('urn:example:carol8687', false)). +answer('urn:example:complies'('urn:example:carol8688', false)). +answer('urn:example:complies'('urn:example:carol8689', false)). +answer('urn:example:complies'('urn:example:carol8690', false)). +answer('urn:example:complies'('urn:example:carol8691', false)). +answer('urn:example:complies'('urn:example:carol8692', false)). +answer('urn:example:complies'('urn:example:carol8693', false)). +answer('urn:example:complies'('urn:example:carol8694', false)). +answer('urn:example:complies'('urn:example:carol8695', false)). +answer('urn:example:complies'('urn:example:carol8696', false)). +answer('urn:example:complies'('urn:example:carol8697', false)). +answer('urn:example:complies'('urn:example:carol8698', false)). +answer('urn:example:complies'('urn:example:carol8699', false)). +answer('urn:example:complies'('urn:example:carol8700', false)). +answer('urn:example:complies'('urn:example:carol8701', false)). +answer('urn:example:complies'('urn:example:carol8702', false)). +answer('urn:example:complies'('urn:example:carol8703', false)). +answer('urn:example:complies'('urn:example:carol8704', false)). +answer('urn:example:complies'('urn:example:carol8705', false)). +answer('urn:example:complies'('urn:example:carol8706', false)). +answer('urn:example:complies'('urn:example:carol8707', false)). +answer('urn:example:complies'('urn:example:carol8708', false)). +answer('urn:example:complies'('urn:example:carol8709', false)). +answer('urn:example:complies'('urn:example:carol8710', false)). +answer('urn:example:complies'('urn:example:carol8711', false)). +answer('urn:example:complies'('urn:example:carol8712', false)). +answer('urn:example:complies'('urn:example:carol8713', false)). +answer('urn:example:complies'('urn:example:carol8714', false)). +answer('urn:example:complies'('urn:example:carol8715', false)). +answer('urn:example:complies'('urn:example:carol8716', false)). +answer('urn:example:complies'('urn:example:carol8717', false)). +answer('urn:example:complies'('urn:example:carol8718', false)). +answer('urn:example:complies'('urn:example:carol8719', false)). +answer('urn:example:complies'('urn:example:carol8720', false)). +answer('urn:example:complies'('urn:example:carol8721', false)). +answer('urn:example:complies'('urn:example:carol8722', false)). +answer('urn:example:complies'('urn:example:carol8723', false)). +answer('urn:example:complies'('urn:example:carol8724', false)). +answer('urn:example:complies'('urn:example:carol8725', false)). +answer('urn:example:complies'('urn:example:carol8726', false)). +answer('urn:example:complies'('urn:example:carol8727', false)). +answer('urn:example:complies'('urn:example:carol8728', false)). +answer('urn:example:complies'('urn:example:carol8729', false)). +answer('urn:example:complies'('urn:example:carol8730', false)). +answer('urn:example:complies'('urn:example:carol8731', false)). +answer('urn:example:complies'('urn:example:carol8732', false)). +answer('urn:example:complies'('urn:example:carol8733', false)). +answer('urn:example:complies'('urn:example:carol8734', false)). +answer('urn:example:complies'('urn:example:carol8735', false)). +answer('urn:example:complies'('urn:example:carol8736', false)). +answer('urn:example:complies'('urn:example:carol8737', false)). +answer('urn:example:complies'('urn:example:carol8738', false)). +answer('urn:example:complies'('urn:example:carol8739', false)). +answer('urn:example:complies'('urn:example:carol8740', false)). +answer('urn:example:complies'('urn:example:carol8741', false)). +answer('urn:example:complies'('urn:example:carol8742', false)). +answer('urn:example:complies'('urn:example:carol8743', false)). +answer('urn:example:complies'('urn:example:carol8744', false)). +answer('urn:example:complies'('urn:example:carol8745', false)). +answer('urn:example:complies'('urn:example:carol8746', false)). +answer('urn:example:complies'('urn:example:carol8747', false)). +answer('urn:example:complies'('urn:example:carol8748', false)). +answer('urn:example:complies'('urn:example:carol8749', false)). +answer('urn:example:complies'('urn:example:carol8750', false)). +answer('urn:example:complies'('urn:example:carol8751', false)). +answer('urn:example:complies'('urn:example:carol8752', false)). +answer('urn:example:complies'('urn:example:carol8753', false)). +answer('urn:example:complies'('urn:example:carol8754', false)). +answer('urn:example:complies'('urn:example:carol8755', false)). +answer('urn:example:complies'('urn:example:carol8756', false)). +answer('urn:example:complies'('urn:example:carol8757', false)). +answer('urn:example:complies'('urn:example:carol8758', false)). +answer('urn:example:complies'('urn:example:carol8759', false)). +answer('urn:example:complies'('urn:example:carol8760', false)). +answer('urn:example:complies'('urn:example:carol8761', false)). +answer('urn:example:complies'('urn:example:carol8762', false)). +answer('urn:example:complies'('urn:example:carol8763', false)). +answer('urn:example:complies'('urn:example:carol8764', false)). +answer('urn:example:complies'('urn:example:carol8765', false)). +answer('urn:example:complies'('urn:example:carol8766', false)). +answer('urn:example:complies'('urn:example:carol8767', false)). +answer('urn:example:complies'('urn:example:carol8768', false)). +answer('urn:example:complies'('urn:example:carol8769', false)). +answer('urn:example:complies'('urn:example:carol8770', false)). +answer('urn:example:complies'('urn:example:carol8771', false)). +answer('urn:example:complies'('urn:example:carol8772', false)). +answer('urn:example:complies'('urn:example:carol8773', false)). +answer('urn:example:complies'('urn:example:carol8774', false)). +answer('urn:example:complies'('urn:example:carol8775', false)). +answer('urn:example:complies'('urn:example:carol8776', false)). +answer('urn:example:complies'('urn:example:carol8777', false)). +answer('urn:example:complies'('urn:example:carol8778', false)). +answer('urn:example:complies'('urn:example:carol8779', false)). +answer('urn:example:complies'('urn:example:carol8780', false)). +answer('urn:example:complies'('urn:example:carol8781', false)). +answer('urn:example:complies'('urn:example:carol8782', false)). +answer('urn:example:complies'('urn:example:carol8783', false)). +answer('urn:example:complies'('urn:example:carol8784', false)). +answer('urn:example:complies'('urn:example:carol8785', false)). +answer('urn:example:complies'('urn:example:carol8786', false)). +answer('urn:example:complies'('urn:example:carol8787', false)). +answer('urn:example:complies'('urn:example:carol8788', false)). +answer('urn:example:complies'('urn:example:carol8789', false)). +answer('urn:example:complies'('urn:example:carol8790', false)). +answer('urn:example:complies'('urn:example:carol8791', false)). +answer('urn:example:complies'('urn:example:carol8792', false)). +answer('urn:example:complies'('urn:example:carol8793', false)). +answer('urn:example:complies'('urn:example:carol8794', false)). +answer('urn:example:complies'('urn:example:carol8795', false)). +answer('urn:example:complies'('urn:example:carol8796', false)). +answer('urn:example:complies'('urn:example:carol8797', false)). +answer('urn:example:complies'('urn:example:carol8798', false)). +answer('urn:example:complies'('urn:example:carol8799', false)). +answer('urn:example:complies'('urn:example:carol8800', false)). +answer('urn:example:complies'('urn:example:carol8801', false)). +answer('urn:example:complies'('urn:example:carol8802', false)). +answer('urn:example:complies'('urn:example:carol8803', false)). +answer('urn:example:complies'('urn:example:carol8804', false)). +answer('urn:example:complies'('urn:example:carol8805', false)). +answer('urn:example:complies'('urn:example:carol8806', false)). +answer('urn:example:complies'('urn:example:carol8807', false)). +answer('urn:example:complies'('urn:example:carol8808', false)). +answer('urn:example:complies'('urn:example:carol8809', false)). +answer('urn:example:complies'('urn:example:carol8810', false)). +answer('urn:example:complies'('urn:example:carol8811', false)). +answer('urn:example:complies'('urn:example:carol8812', false)). +answer('urn:example:complies'('urn:example:carol8813', false)). +answer('urn:example:complies'('urn:example:carol8814', false)). +answer('urn:example:complies'('urn:example:carol8815', false)). +answer('urn:example:complies'('urn:example:carol8816', false)). +answer('urn:example:complies'('urn:example:carol8817', false)). +answer('urn:example:complies'('urn:example:carol8818', false)). +answer('urn:example:complies'('urn:example:carol8819', false)). +answer('urn:example:complies'('urn:example:carol8820', false)). +answer('urn:example:complies'('urn:example:carol8821', false)). +answer('urn:example:complies'('urn:example:carol8822', false)). +answer('urn:example:complies'('urn:example:carol8823', false)). +answer('urn:example:complies'('urn:example:carol8824', false)). +answer('urn:example:complies'('urn:example:carol8825', false)). +answer('urn:example:complies'('urn:example:carol8826', false)). +answer('urn:example:complies'('urn:example:carol8827', false)). +answer('urn:example:complies'('urn:example:carol8828', false)). +answer('urn:example:complies'('urn:example:carol8829', false)). +answer('urn:example:complies'('urn:example:carol8830', false)). +answer('urn:example:complies'('urn:example:carol8831', false)). +answer('urn:example:complies'('urn:example:carol8832', false)). +answer('urn:example:complies'('urn:example:carol8833', false)). +answer('urn:example:complies'('urn:example:carol8834', false)). +answer('urn:example:complies'('urn:example:carol8835', false)). +answer('urn:example:complies'('urn:example:carol8836', false)). +answer('urn:example:complies'('urn:example:carol8837', false)). +answer('urn:example:complies'('urn:example:carol8838', false)). +answer('urn:example:complies'('urn:example:carol8839', false)). +answer('urn:example:complies'('urn:example:carol8840', false)). +answer('urn:example:complies'('urn:example:carol8841', false)). +answer('urn:example:complies'('urn:example:carol8842', false)). +answer('urn:example:complies'('urn:example:carol8843', false)). +answer('urn:example:complies'('urn:example:carol8844', false)). +answer('urn:example:complies'('urn:example:carol8845', false)). +answer('urn:example:complies'('urn:example:carol8846', false)). +answer('urn:example:complies'('urn:example:carol8847', false)). +answer('urn:example:complies'('urn:example:carol8848', false)). +answer('urn:example:complies'('urn:example:carol8849', false)). +answer('urn:example:complies'('urn:example:carol8850', false)). +answer('urn:example:complies'('urn:example:carol8851', false)). +answer('urn:example:complies'('urn:example:carol8852', false)). +answer('urn:example:complies'('urn:example:carol8853', false)). +answer('urn:example:complies'('urn:example:carol8854', false)). +answer('urn:example:complies'('urn:example:carol8855', false)). +answer('urn:example:complies'('urn:example:carol8856', false)). +answer('urn:example:complies'('urn:example:carol8857', false)). +answer('urn:example:complies'('urn:example:carol8858', false)). +answer('urn:example:complies'('urn:example:carol8859', false)). +answer('urn:example:complies'('urn:example:carol8860', false)). +answer('urn:example:complies'('urn:example:carol8861', false)). +answer('urn:example:complies'('urn:example:carol8862', false)). +answer('urn:example:complies'('urn:example:carol8863', false)). +answer('urn:example:complies'('urn:example:carol8864', false)). +answer('urn:example:complies'('urn:example:carol8865', false)). +answer('urn:example:complies'('urn:example:carol8866', false)). +answer('urn:example:complies'('urn:example:carol8867', false)). +answer('urn:example:complies'('urn:example:carol8868', false)). +answer('urn:example:complies'('urn:example:carol8869', false)). +answer('urn:example:complies'('urn:example:carol8870', false)). +answer('urn:example:complies'('urn:example:carol8871', false)). +answer('urn:example:complies'('urn:example:carol8872', false)). +answer('urn:example:complies'('urn:example:carol8873', false)). +answer('urn:example:complies'('urn:example:carol8874', false)). +answer('urn:example:complies'('urn:example:carol8875', false)). +answer('urn:example:complies'('urn:example:carol8876', false)). +answer('urn:example:complies'('urn:example:carol8877', false)). +answer('urn:example:complies'('urn:example:carol8878', false)). +answer('urn:example:complies'('urn:example:carol8879', false)). +answer('urn:example:complies'('urn:example:carol8880', false)). +answer('urn:example:complies'('urn:example:carol8881', false)). +answer('urn:example:complies'('urn:example:carol8882', false)). +answer('urn:example:complies'('urn:example:carol8883', false)). +answer('urn:example:complies'('urn:example:carol8884', false)). +answer('urn:example:complies'('urn:example:carol8885', false)). +answer('urn:example:complies'('urn:example:carol8886', false)). +answer('urn:example:complies'('urn:example:carol8887', false)). +answer('urn:example:complies'('urn:example:carol8888', false)). +answer('urn:example:complies'('urn:example:carol8889', false)). +answer('urn:example:complies'('urn:example:carol8890', false)). +answer('urn:example:complies'('urn:example:carol8891', false)). +answer('urn:example:complies'('urn:example:carol8892', false)). +answer('urn:example:complies'('urn:example:carol8893', false)). +answer('urn:example:complies'('urn:example:carol8894', false)). +answer('urn:example:complies'('urn:example:carol8895', false)). +answer('urn:example:complies'('urn:example:carol8896', false)). +answer('urn:example:complies'('urn:example:carol8897', false)). +answer('urn:example:complies'('urn:example:carol8898', false)). +answer('urn:example:complies'('urn:example:carol8899', false)). +answer('urn:example:complies'('urn:example:carol8900', false)). +answer('urn:example:complies'('urn:example:carol8901', false)). +answer('urn:example:complies'('urn:example:carol8902', false)). +answer('urn:example:complies'('urn:example:carol8903', false)). +answer('urn:example:complies'('urn:example:carol8904', false)). +answer('urn:example:complies'('urn:example:carol8905', false)). +answer('urn:example:complies'('urn:example:carol8906', false)). +answer('urn:example:complies'('urn:example:carol8907', false)). +answer('urn:example:complies'('urn:example:carol8908', false)). +answer('urn:example:complies'('urn:example:carol8909', false)). +answer('urn:example:complies'('urn:example:carol8910', false)). +answer('urn:example:complies'('urn:example:carol8911', false)). +answer('urn:example:complies'('urn:example:carol8912', false)). +answer('urn:example:complies'('urn:example:carol8913', false)). +answer('urn:example:complies'('urn:example:carol8914', false)). +answer('urn:example:complies'('urn:example:carol8915', false)). +answer('urn:example:complies'('urn:example:carol8916', false)). +answer('urn:example:complies'('urn:example:carol8917', false)). +answer('urn:example:complies'('urn:example:carol8918', false)). +answer('urn:example:complies'('urn:example:carol8919', false)). +answer('urn:example:complies'('urn:example:carol8920', false)). +answer('urn:example:complies'('urn:example:carol8921', false)). +answer('urn:example:complies'('urn:example:carol8922', false)). +answer('urn:example:complies'('urn:example:carol8923', false)). +answer('urn:example:complies'('urn:example:carol8924', false)). +answer('urn:example:complies'('urn:example:carol8925', false)). +answer('urn:example:complies'('urn:example:carol8926', false)). +answer('urn:example:complies'('urn:example:carol8927', false)). +answer('urn:example:complies'('urn:example:carol8928', false)). +answer('urn:example:complies'('urn:example:carol8929', false)). +answer('urn:example:complies'('urn:example:carol8930', false)). +answer('urn:example:complies'('urn:example:carol8931', false)). +answer('urn:example:complies'('urn:example:carol8932', false)). +answer('urn:example:complies'('urn:example:carol8933', false)). +answer('urn:example:complies'('urn:example:carol8934', false)). +answer('urn:example:complies'('urn:example:carol8935', false)). +answer('urn:example:complies'('urn:example:carol8936', false)). +answer('urn:example:complies'('urn:example:carol8937', false)). +answer('urn:example:complies'('urn:example:carol8938', false)). +answer('urn:example:complies'('urn:example:carol8939', false)). +answer('urn:example:complies'('urn:example:carol8940', false)). +answer('urn:example:complies'('urn:example:carol8941', false)). +answer('urn:example:complies'('urn:example:carol8942', false)). +answer('urn:example:complies'('urn:example:carol8943', false)). +answer('urn:example:complies'('urn:example:carol8944', false)). +answer('urn:example:complies'('urn:example:carol8945', false)). +answer('urn:example:complies'('urn:example:carol8946', false)). +answer('urn:example:complies'('urn:example:carol8947', false)). +answer('urn:example:complies'('urn:example:carol8948', false)). +answer('urn:example:complies'('urn:example:carol8949', false)). +answer('urn:example:complies'('urn:example:carol8950', false)). +answer('urn:example:complies'('urn:example:carol8951', false)). +answer('urn:example:complies'('urn:example:carol8952', false)). +answer('urn:example:complies'('urn:example:carol8953', false)). +answer('urn:example:complies'('urn:example:carol8954', false)). +answer('urn:example:complies'('urn:example:carol8955', false)). +answer('urn:example:complies'('urn:example:carol8956', false)). +answer('urn:example:complies'('urn:example:carol8957', false)). +answer('urn:example:complies'('urn:example:carol8958', false)). +answer('urn:example:complies'('urn:example:carol8959', false)). +answer('urn:example:complies'('urn:example:carol8960', false)). +answer('urn:example:complies'('urn:example:carol8961', false)). +answer('urn:example:complies'('urn:example:carol8962', false)). +answer('urn:example:complies'('urn:example:carol8963', false)). +answer('urn:example:complies'('urn:example:carol8964', false)). +answer('urn:example:complies'('urn:example:carol8965', false)). +answer('urn:example:complies'('urn:example:carol8966', false)). +answer('urn:example:complies'('urn:example:carol8967', false)). +answer('urn:example:complies'('urn:example:carol8968', false)). +answer('urn:example:complies'('urn:example:carol8969', false)). +answer('urn:example:complies'('urn:example:carol8970', false)). +answer('urn:example:complies'('urn:example:carol8971', false)). +answer('urn:example:complies'('urn:example:carol8972', false)). +answer('urn:example:complies'('urn:example:carol8973', false)). +answer('urn:example:complies'('urn:example:carol8974', false)). +answer('urn:example:complies'('urn:example:carol8975', false)). +answer('urn:example:complies'('urn:example:carol8976', false)). +answer('urn:example:complies'('urn:example:carol8977', false)). +answer('urn:example:complies'('urn:example:carol8978', false)). +answer('urn:example:complies'('urn:example:carol8979', false)). +answer('urn:example:complies'('urn:example:carol8980', false)). +answer('urn:example:complies'('urn:example:carol8981', false)). +answer('urn:example:complies'('urn:example:carol8982', false)). +answer('urn:example:complies'('urn:example:carol8983', false)). +answer('urn:example:complies'('urn:example:carol8984', false)). +answer('urn:example:complies'('urn:example:carol8985', false)). +answer('urn:example:complies'('urn:example:carol8986', false)). +answer('urn:example:complies'('urn:example:carol8987', false)). +answer('urn:example:complies'('urn:example:carol8988', false)). +answer('urn:example:complies'('urn:example:carol8989', false)). +answer('urn:example:complies'('urn:example:carol8990', false)). +answer('urn:example:complies'('urn:example:carol8991', false)). +answer('urn:example:complies'('urn:example:carol8992', false)). +answer('urn:example:complies'('urn:example:carol8993', false)). +answer('urn:example:complies'('urn:example:carol8994', false)). +answer('urn:example:complies'('urn:example:carol8995', false)). +answer('urn:example:complies'('urn:example:carol8996', false)). +answer('urn:example:complies'('urn:example:carol8997', false)). +answer('urn:example:complies'('urn:example:carol8998', false)). +answer('urn:example:complies'('urn:example:carol8999', false)). +answer('urn:example:complies'('urn:example:carol9000', false)). +answer('urn:example:complies'('urn:example:carol9001', false)). +answer('urn:example:complies'('urn:example:carol9002', false)). +answer('urn:example:complies'('urn:example:carol9003', false)). +answer('urn:example:complies'('urn:example:carol9004', false)). +answer('urn:example:complies'('urn:example:carol9005', false)). +answer('urn:example:complies'('urn:example:carol9006', false)). +answer('urn:example:complies'('urn:example:carol9007', false)). +answer('urn:example:complies'('urn:example:carol9008', false)). +answer('urn:example:complies'('urn:example:carol9009', false)). +answer('urn:example:complies'('urn:example:carol9010', false)). +answer('urn:example:complies'('urn:example:carol9011', false)). +answer('urn:example:complies'('urn:example:carol9012', false)). +answer('urn:example:complies'('urn:example:carol9013', false)). +answer('urn:example:complies'('urn:example:carol9014', false)). +answer('urn:example:complies'('urn:example:carol9015', false)). +answer('urn:example:complies'('urn:example:carol9016', false)). +answer('urn:example:complies'('urn:example:carol9017', false)). +answer('urn:example:complies'('urn:example:carol9018', false)). +answer('urn:example:complies'('urn:example:carol9019', false)). +answer('urn:example:complies'('urn:example:carol9020', false)). +answer('urn:example:complies'('urn:example:carol9021', false)). +answer('urn:example:complies'('urn:example:carol9022', false)). +answer('urn:example:complies'('urn:example:carol9023', false)). +answer('urn:example:complies'('urn:example:carol9024', false)). +answer('urn:example:complies'('urn:example:carol9025', false)). +answer('urn:example:complies'('urn:example:carol9026', false)). +answer('urn:example:complies'('urn:example:carol9027', false)). +answer('urn:example:complies'('urn:example:carol9028', false)). +answer('urn:example:complies'('urn:example:carol9029', false)). +answer('urn:example:complies'('urn:example:carol9030', false)). +answer('urn:example:complies'('urn:example:carol9031', false)). +answer('urn:example:complies'('urn:example:carol9032', false)). +answer('urn:example:complies'('urn:example:carol9033', false)). +answer('urn:example:complies'('urn:example:carol9034', false)). +answer('urn:example:complies'('urn:example:carol9035', false)). +answer('urn:example:complies'('urn:example:carol9036', false)). +answer('urn:example:complies'('urn:example:carol9037', false)). +answer('urn:example:complies'('urn:example:carol9038', false)). +answer('urn:example:complies'('urn:example:carol9039', false)). +answer('urn:example:complies'('urn:example:carol9040', false)). +answer('urn:example:complies'('urn:example:carol9041', false)). +answer('urn:example:complies'('urn:example:carol9042', false)). +answer('urn:example:complies'('urn:example:carol9043', false)). +answer('urn:example:complies'('urn:example:carol9044', false)). +answer('urn:example:complies'('urn:example:carol9045', false)). +answer('urn:example:complies'('urn:example:carol9046', false)). +answer('urn:example:complies'('urn:example:carol9047', false)). +answer('urn:example:complies'('urn:example:carol9048', false)). +answer('urn:example:complies'('urn:example:carol9049', false)). +answer('urn:example:complies'('urn:example:carol9050', false)). +answer('urn:example:complies'('urn:example:carol9051', false)). +answer('urn:example:complies'('urn:example:carol9052', false)). +answer('urn:example:complies'('urn:example:carol9053', false)). +answer('urn:example:complies'('urn:example:carol9054', false)). +answer('urn:example:complies'('urn:example:carol9055', false)). +answer('urn:example:complies'('urn:example:carol9056', false)). +answer('urn:example:complies'('urn:example:carol9057', false)). +answer('urn:example:complies'('urn:example:carol9058', false)). +answer('urn:example:complies'('urn:example:carol9059', false)). +answer('urn:example:complies'('urn:example:carol9060', false)). +answer('urn:example:complies'('urn:example:carol9061', false)). +answer('urn:example:complies'('urn:example:carol9062', false)). +answer('urn:example:complies'('urn:example:carol9063', false)). +answer('urn:example:complies'('urn:example:carol9064', false)). +answer('urn:example:complies'('urn:example:carol9065', false)). +answer('urn:example:complies'('urn:example:carol9066', false)). +answer('urn:example:complies'('urn:example:carol9067', false)). +answer('urn:example:complies'('urn:example:carol9068', false)). +answer('urn:example:complies'('urn:example:carol9069', false)). +answer('urn:example:complies'('urn:example:carol9070', false)). +answer('urn:example:complies'('urn:example:carol9071', false)). +answer('urn:example:complies'('urn:example:carol9072', false)). +answer('urn:example:complies'('urn:example:carol9073', false)). +answer('urn:example:complies'('urn:example:carol9074', false)). +answer('urn:example:complies'('urn:example:carol9075', false)). +answer('urn:example:complies'('urn:example:carol9076', false)). +answer('urn:example:complies'('urn:example:carol9077', false)). +answer('urn:example:complies'('urn:example:carol9078', false)). +answer('urn:example:complies'('urn:example:carol9079', false)). +answer('urn:example:complies'('urn:example:carol9080', false)). +answer('urn:example:complies'('urn:example:carol9081', false)). +answer('urn:example:complies'('urn:example:carol9082', false)). +answer('urn:example:complies'('urn:example:carol9083', false)). +answer('urn:example:complies'('urn:example:carol9084', false)). +answer('urn:example:complies'('urn:example:carol9085', false)). +answer('urn:example:complies'('urn:example:carol9086', false)). +answer('urn:example:complies'('urn:example:carol9087', false)). +answer('urn:example:complies'('urn:example:carol9088', false)). +answer('urn:example:complies'('urn:example:carol9089', false)). +answer('urn:example:complies'('urn:example:carol9090', false)). +answer('urn:example:complies'('urn:example:carol9091', false)). +answer('urn:example:complies'('urn:example:carol9092', false)). +answer('urn:example:complies'('urn:example:carol9093', false)). +answer('urn:example:complies'('urn:example:carol9094', false)). +answer('urn:example:complies'('urn:example:carol9095', false)). +answer('urn:example:complies'('urn:example:carol9096', false)). +answer('urn:example:complies'('urn:example:carol9097', false)). +answer('urn:example:complies'('urn:example:carol9098', false)). +answer('urn:example:complies'('urn:example:carol9099', false)). +answer('urn:example:complies'('urn:example:carol9100', false)). +answer('urn:example:complies'('urn:example:carol9101', false)). +answer('urn:example:complies'('urn:example:carol9102', false)). +answer('urn:example:complies'('urn:example:carol9103', false)). +answer('urn:example:complies'('urn:example:carol9104', false)). +answer('urn:example:complies'('urn:example:carol9105', false)). +answer('urn:example:complies'('urn:example:carol9106', false)). +answer('urn:example:complies'('urn:example:carol9107', false)). +answer('urn:example:complies'('urn:example:carol9108', false)). +answer('urn:example:complies'('urn:example:carol9109', false)). +answer('urn:example:complies'('urn:example:carol9110', false)). +answer('urn:example:complies'('urn:example:carol9111', false)). +answer('urn:example:complies'('urn:example:carol9112', false)). +answer('urn:example:complies'('urn:example:carol9113', false)). +answer('urn:example:complies'('urn:example:carol9114', false)). +answer('urn:example:complies'('urn:example:carol9115', false)). +answer('urn:example:complies'('urn:example:carol9116', false)). +answer('urn:example:complies'('urn:example:carol9117', false)). +answer('urn:example:complies'('urn:example:carol9118', false)). +answer('urn:example:complies'('urn:example:carol9119', false)). +answer('urn:example:complies'('urn:example:carol9120', false)). +answer('urn:example:complies'('urn:example:carol9121', false)). +answer('urn:example:complies'('urn:example:carol9122', false)). +answer('urn:example:complies'('urn:example:carol9123', false)). +answer('urn:example:complies'('urn:example:carol9124', false)). +answer('urn:example:complies'('urn:example:carol9125', false)). +answer('urn:example:complies'('urn:example:carol9126', false)). +answer('urn:example:complies'('urn:example:carol9127', false)). +answer('urn:example:complies'('urn:example:carol9128', false)). +answer('urn:example:complies'('urn:example:carol9129', false)). +answer('urn:example:complies'('urn:example:carol9130', false)). +answer('urn:example:complies'('urn:example:carol9131', false)). +answer('urn:example:complies'('urn:example:carol9132', false)). +answer('urn:example:complies'('urn:example:carol9133', false)). +answer('urn:example:complies'('urn:example:carol9134', false)). +answer('urn:example:complies'('urn:example:carol9135', false)). +answer('urn:example:complies'('urn:example:carol9136', false)). +answer('urn:example:complies'('urn:example:carol9137', false)). +answer('urn:example:complies'('urn:example:carol9138', false)). +answer('urn:example:complies'('urn:example:carol9139', false)). +answer('urn:example:complies'('urn:example:carol9140', false)). +answer('urn:example:complies'('urn:example:carol9141', false)). +answer('urn:example:complies'('urn:example:carol9142', false)). +answer('urn:example:complies'('urn:example:carol9143', false)). +answer('urn:example:complies'('urn:example:carol9144', false)). +answer('urn:example:complies'('urn:example:carol9145', false)). +answer('urn:example:complies'('urn:example:carol9146', false)). +answer('urn:example:complies'('urn:example:carol9147', false)). +answer('urn:example:complies'('urn:example:carol9148', false)). +answer('urn:example:complies'('urn:example:carol9149', false)). +answer('urn:example:complies'('urn:example:carol9150', false)). +answer('urn:example:complies'('urn:example:carol9151', false)). +answer('urn:example:complies'('urn:example:carol9152', false)). +answer('urn:example:complies'('urn:example:carol9153', false)). +answer('urn:example:complies'('urn:example:carol9154', false)). +answer('urn:example:complies'('urn:example:carol9155', false)). +answer('urn:example:complies'('urn:example:carol9156', false)). +answer('urn:example:complies'('urn:example:carol9157', false)). +answer('urn:example:complies'('urn:example:carol9158', false)). +answer('urn:example:complies'('urn:example:carol9159', false)). +answer('urn:example:complies'('urn:example:carol9160', false)). +answer('urn:example:complies'('urn:example:carol9161', false)). +answer('urn:example:complies'('urn:example:carol9162', false)). +answer('urn:example:complies'('urn:example:carol9163', false)). +answer('urn:example:complies'('urn:example:carol9164', false)). +answer('urn:example:complies'('urn:example:carol9165', false)). +answer('urn:example:complies'('urn:example:carol9166', false)). +answer('urn:example:complies'('urn:example:carol9167', false)). +answer('urn:example:complies'('urn:example:carol9168', false)). +answer('urn:example:complies'('urn:example:carol9169', false)). +answer('urn:example:complies'('urn:example:carol9170', false)). +answer('urn:example:complies'('urn:example:carol9171', false)). +answer('urn:example:complies'('urn:example:carol9172', false)). +answer('urn:example:complies'('urn:example:carol9173', false)). +answer('urn:example:complies'('urn:example:carol9174', false)). +answer('urn:example:complies'('urn:example:carol9175', false)). +answer('urn:example:complies'('urn:example:carol9176', false)). +answer('urn:example:complies'('urn:example:carol9177', false)). +answer('urn:example:complies'('urn:example:carol9178', false)). +answer('urn:example:complies'('urn:example:carol9179', false)). +answer('urn:example:complies'('urn:example:carol9180', false)). +answer('urn:example:complies'('urn:example:carol9181', false)). +answer('urn:example:complies'('urn:example:carol9182', false)). +answer('urn:example:complies'('urn:example:carol9183', false)). +answer('urn:example:complies'('urn:example:carol9184', false)). +answer('urn:example:complies'('urn:example:carol9185', false)). +answer('urn:example:complies'('urn:example:carol9186', false)). +answer('urn:example:complies'('urn:example:carol9187', false)). +answer('urn:example:complies'('urn:example:carol9188', false)). +answer('urn:example:complies'('urn:example:carol9189', false)). +answer('urn:example:complies'('urn:example:carol9190', false)). +answer('urn:example:complies'('urn:example:carol9191', false)). +answer('urn:example:complies'('urn:example:carol9192', false)). +answer('urn:example:complies'('urn:example:carol9193', false)). +answer('urn:example:complies'('urn:example:carol9194', false)). +answer('urn:example:complies'('urn:example:carol9195', false)). +answer('urn:example:complies'('urn:example:carol9196', false)). +answer('urn:example:complies'('urn:example:carol9197', false)). +answer('urn:example:complies'('urn:example:carol9198', false)). +answer('urn:example:complies'('urn:example:carol9199', false)). +answer('urn:example:complies'('urn:example:carol9200', false)). +answer('urn:example:complies'('urn:example:carol9201', false)). +answer('urn:example:complies'('urn:example:carol9202', false)). +answer('urn:example:complies'('urn:example:carol9203', false)). +answer('urn:example:complies'('urn:example:carol9204', false)). +answer('urn:example:complies'('urn:example:carol9205', false)). +answer('urn:example:complies'('urn:example:carol9206', false)). +answer('urn:example:complies'('urn:example:carol9207', false)). +answer('urn:example:complies'('urn:example:carol9208', false)). +answer('urn:example:complies'('urn:example:carol9209', false)). +answer('urn:example:complies'('urn:example:carol9210', false)). +answer('urn:example:complies'('urn:example:carol9211', false)). +answer('urn:example:complies'('urn:example:carol9212', false)). +answer('urn:example:complies'('urn:example:carol9213', false)). +answer('urn:example:complies'('urn:example:carol9214', false)). +answer('urn:example:complies'('urn:example:carol9215', false)). +answer('urn:example:complies'('urn:example:carol9216', false)). +answer('urn:example:complies'('urn:example:carol9217', false)). +answer('urn:example:complies'('urn:example:carol9218', false)). +answer('urn:example:complies'('urn:example:carol9219', false)). +answer('urn:example:complies'('urn:example:carol9220', false)). +answer('urn:example:complies'('urn:example:carol9221', false)). +answer('urn:example:complies'('urn:example:carol9222', false)). +answer('urn:example:complies'('urn:example:carol9223', false)). +answer('urn:example:complies'('urn:example:carol9224', false)). +answer('urn:example:complies'('urn:example:carol9225', false)). +answer('urn:example:complies'('urn:example:carol9226', false)). +answer('urn:example:complies'('urn:example:carol9227', false)). +answer('urn:example:complies'('urn:example:carol9228', false)). +answer('urn:example:complies'('urn:example:carol9229', false)). +answer('urn:example:complies'('urn:example:carol9230', false)). +answer('urn:example:complies'('urn:example:carol9231', false)). +answer('urn:example:complies'('urn:example:carol9232', false)). +answer('urn:example:complies'('urn:example:carol9233', false)). +answer('urn:example:complies'('urn:example:carol9234', false)). +answer('urn:example:complies'('urn:example:carol9235', false)). +answer('urn:example:complies'('urn:example:carol9236', false)). +answer('urn:example:complies'('urn:example:carol9237', false)). +answer('urn:example:complies'('urn:example:carol9238', false)). +answer('urn:example:complies'('urn:example:carol9239', false)). +answer('urn:example:complies'('urn:example:carol9240', false)). +answer('urn:example:complies'('urn:example:carol9241', false)). +answer('urn:example:complies'('urn:example:carol9242', false)). +answer('urn:example:complies'('urn:example:carol9243', false)). +answer('urn:example:complies'('urn:example:carol9244', false)). +answer('urn:example:complies'('urn:example:carol9245', false)). +answer('urn:example:complies'('urn:example:carol9246', false)). +answer('urn:example:complies'('urn:example:carol9247', false)). +answer('urn:example:complies'('urn:example:carol9248', false)). +answer('urn:example:complies'('urn:example:carol9249', false)). +answer('urn:example:complies'('urn:example:carol9250', false)). +answer('urn:example:complies'('urn:example:carol9251', false)). +answer('urn:example:complies'('urn:example:carol9252', false)). +answer('urn:example:complies'('urn:example:carol9253', false)). +answer('urn:example:complies'('urn:example:carol9254', false)). +answer('urn:example:complies'('urn:example:carol9255', false)). +answer('urn:example:complies'('urn:example:carol9256', false)). +answer('urn:example:complies'('urn:example:carol9257', false)). +answer('urn:example:complies'('urn:example:carol9258', false)). +answer('urn:example:complies'('urn:example:carol9259', false)). +answer('urn:example:complies'('urn:example:carol9260', false)). +answer('urn:example:complies'('urn:example:carol9261', false)). +answer('urn:example:complies'('urn:example:carol9262', false)). +answer('urn:example:complies'('urn:example:carol9263', false)). +answer('urn:example:complies'('urn:example:carol9264', false)). +answer('urn:example:complies'('urn:example:carol9265', false)). +answer('urn:example:complies'('urn:example:carol9266', false)). +answer('urn:example:complies'('urn:example:carol9267', false)). +answer('urn:example:complies'('urn:example:carol9268', false)). +answer('urn:example:complies'('urn:example:carol9269', false)). +answer('urn:example:complies'('urn:example:carol9270', false)). +answer('urn:example:complies'('urn:example:carol9271', false)). +answer('urn:example:complies'('urn:example:carol9272', false)). +answer('urn:example:complies'('urn:example:carol9273', false)). +answer('urn:example:complies'('urn:example:carol9274', false)). +answer('urn:example:complies'('urn:example:carol9275', false)). +answer('urn:example:complies'('urn:example:carol9276', false)). +answer('urn:example:complies'('urn:example:carol9277', false)). +answer('urn:example:complies'('urn:example:carol9278', false)). +answer('urn:example:complies'('urn:example:carol9279', false)). +answer('urn:example:complies'('urn:example:carol9280', false)). +answer('urn:example:complies'('urn:example:carol9281', false)). +answer('urn:example:complies'('urn:example:carol9282', false)). +answer('urn:example:complies'('urn:example:carol9283', false)). +answer('urn:example:complies'('urn:example:carol9284', false)). +answer('urn:example:complies'('urn:example:carol9285', false)). +answer('urn:example:complies'('urn:example:carol9286', false)). +answer('urn:example:complies'('urn:example:carol9287', false)). +answer('urn:example:complies'('urn:example:carol9288', false)). +answer('urn:example:complies'('urn:example:carol9289', false)). +answer('urn:example:complies'('urn:example:carol9290', false)). +answer('urn:example:complies'('urn:example:carol9291', false)). +answer('urn:example:complies'('urn:example:carol9292', false)). +answer('urn:example:complies'('urn:example:carol9293', false)). +answer('urn:example:complies'('urn:example:carol9294', false)). +answer('urn:example:complies'('urn:example:carol9295', false)). +answer('urn:example:complies'('urn:example:carol9296', false)). +answer('urn:example:complies'('urn:example:carol9297', false)). +answer('urn:example:complies'('urn:example:carol9298', false)). +answer('urn:example:complies'('urn:example:carol9299', false)). +answer('urn:example:complies'('urn:example:carol9300', false)). +answer('urn:example:complies'('urn:example:carol9301', false)). +answer('urn:example:complies'('urn:example:carol9302', false)). +answer('urn:example:complies'('urn:example:carol9303', false)). +answer('urn:example:complies'('urn:example:carol9304', false)). +answer('urn:example:complies'('urn:example:carol9305', false)). +answer('urn:example:complies'('urn:example:carol9306', false)). +answer('urn:example:complies'('urn:example:carol9307', false)). +answer('urn:example:complies'('urn:example:carol9308', false)). +answer('urn:example:complies'('urn:example:carol9309', false)). +answer('urn:example:complies'('urn:example:carol9310', false)). +answer('urn:example:complies'('urn:example:carol9311', false)). +answer('urn:example:complies'('urn:example:carol9312', false)). +answer('urn:example:complies'('urn:example:carol9313', false)). +answer('urn:example:complies'('urn:example:carol9314', false)). +answer('urn:example:complies'('urn:example:carol9315', false)). +answer('urn:example:complies'('urn:example:carol9316', false)). +answer('urn:example:complies'('urn:example:carol9317', false)). +answer('urn:example:complies'('urn:example:carol9318', false)). +answer('urn:example:complies'('urn:example:carol9319', false)). +answer('urn:example:complies'('urn:example:carol9320', false)). +answer('urn:example:complies'('urn:example:carol9321', false)). +answer('urn:example:complies'('urn:example:carol9322', false)). +answer('urn:example:complies'('urn:example:carol9323', false)). +answer('urn:example:complies'('urn:example:carol9324', false)). +answer('urn:example:complies'('urn:example:carol9325', false)). +answer('urn:example:complies'('urn:example:carol9326', false)). +answer('urn:example:complies'('urn:example:carol9327', false)). +answer('urn:example:complies'('urn:example:carol9328', false)). +answer('urn:example:complies'('urn:example:carol9329', false)). +answer('urn:example:complies'('urn:example:carol9330', false)). +answer('urn:example:complies'('urn:example:carol9331', false)). +answer('urn:example:complies'('urn:example:carol9332', false)). +answer('urn:example:complies'('urn:example:carol9333', false)). +answer('urn:example:complies'('urn:example:carol9334', false)). +answer('urn:example:complies'('urn:example:carol9335', false)). +answer('urn:example:complies'('urn:example:carol9336', false)). +answer('urn:example:complies'('urn:example:carol9337', false)). +answer('urn:example:complies'('urn:example:carol9338', false)). +answer('urn:example:complies'('urn:example:carol9339', false)). +answer('urn:example:complies'('urn:example:carol9340', false)). +answer('urn:example:complies'('urn:example:carol9341', false)). +answer('urn:example:complies'('urn:example:carol9342', false)). +answer('urn:example:complies'('urn:example:carol9343', false)). +answer('urn:example:complies'('urn:example:carol9344', false)). +answer('urn:example:complies'('urn:example:carol9345', false)). +answer('urn:example:complies'('urn:example:carol9346', false)). +answer('urn:example:complies'('urn:example:carol9347', false)). +answer('urn:example:complies'('urn:example:carol9348', false)). +answer('urn:example:complies'('urn:example:carol9349', false)). +answer('urn:example:complies'('urn:example:carol9350', false)). +answer('urn:example:complies'('urn:example:carol9351', false)). +answer('urn:example:complies'('urn:example:carol9352', false)). +answer('urn:example:complies'('urn:example:carol9353', false)). +answer('urn:example:complies'('urn:example:carol9354', false)). +answer('urn:example:complies'('urn:example:carol9355', false)). +answer('urn:example:complies'('urn:example:carol9356', false)). +answer('urn:example:complies'('urn:example:carol9357', false)). +answer('urn:example:complies'('urn:example:carol9358', false)). +answer('urn:example:complies'('urn:example:carol9359', false)). +answer('urn:example:complies'('urn:example:carol9360', false)). +answer('urn:example:complies'('urn:example:carol9361', false)). +answer('urn:example:complies'('urn:example:carol9362', false)). +answer('urn:example:complies'('urn:example:carol9363', false)). +answer('urn:example:complies'('urn:example:carol9364', false)). +answer('urn:example:complies'('urn:example:carol9365', false)). +answer('urn:example:complies'('urn:example:carol9366', false)). +answer('urn:example:complies'('urn:example:carol9367', false)). +answer('urn:example:complies'('urn:example:carol9368', false)). +answer('urn:example:complies'('urn:example:carol9369', false)). +answer('urn:example:complies'('urn:example:carol9370', false)). +answer('urn:example:complies'('urn:example:carol9371', false)). +answer('urn:example:complies'('urn:example:carol9372', false)). +answer('urn:example:complies'('urn:example:carol9373', false)). +answer('urn:example:complies'('urn:example:carol9374', false)). +answer('urn:example:complies'('urn:example:carol9375', false)). +answer('urn:example:complies'('urn:example:carol9376', false)). +answer('urn:example:complies'('urn:example:carol9377', false)). +answer('urn:example:complies'('urn:example:carol9378', false)). +answer('urn:example:complies'('urn:example:carol9379', false)). +answer('urn:example:complies'('urn:example:carol9380', false)). +answer('urn:example:complies'('urn:example:carol9381', false)). +answer('urn:example:complies'('urn:example:carol9382', false)). +answer('urn:example:complies'('urn:example:carol9383', false)). +answer('urn:example:complies'('urn:example:carol9384', false)). +answer('urn:example:complies'('urn:example:carol9385', false)). +answer('urn:example:complies'('urn:example:carol9386', false)). +answer('urn:example:complies'('urn:example:carol9387', false)). +answer('urn:example:complies'('urn:example:carol9388', false)). +answer('urn:example:complies'('urn:example:carol9389', false)). +answer('urn:example:complies'('urn:example:carol9390', false)). +answer('urn:example:complies'('urn:example:carol9391', false)). +answer('urn:example:complies'('urn:example:carol9392', false)). +answer('urn:example:complies'('urn:example:carol9393', false)). +answer('urn:example:complies'('urn:example:carol9394', false)). +answer('urn:example:complies'('urn:example:carol9395', false)). +answer('urn:example:complies'('urn:example:carol9396', false)). +answer('urn:example:complies'('urn:example:carol9397', false)). +answer('urn:example:complies'('urn:example:carol9398', false)). +answer('urn:example:complies'('urn:example:carol9399', false)). +answer('urn:example:complies'('urn:example:carol9400', false)). +answer('urn:example:complies'('urn:example:carol9401', false)). +answer('urn:example:complies'('urn:example:carol9402', false)). +answer('urn:example:complies'('urn:example:carol9403', false)). +answer('urn:example:complies'('urn:example:carol9404', false)). +answer('urn:example:complies'('urn:example:carol9405', false)). +answer('urn:example:complies'('urn:example:carol9406', false)). +answer('urn:example:complies'('urn:example:carol9407', false)). +answer('urn:example:complies'('urn:example:carol9408', false)). +answer('urn:example:complies'('urn:example:carol9409', false)). +answer('urn:example:complies'('urn:example:carol9410', false)). +answer('urn:example:complies'('urn:example:carol9411', false)). +answer('urn:example:complies'('urn:example:carol9412', false)). +answer('urn:example:complies'('urn:example:carol9413', false)). +answer('urn:example:complies'('urn:example:carol9414', false)). +answer('urn:example:complies'('urn:example:carol9415', false)). +answer('urn:example:complies'('urn:example:carol9416', false)). +answer('urn:example:complies'('urn:example:carol9417', false)). +answer('urn:example:complies'('urn:example:carol9418', false)). +answer('urn:example:complies'('urn:example:carol9419', false)). +answer('urn:example:complies'('urn:example:carol9420', false)). +answer('urn:example:complies'('urn:example:carol9421', false)). +answer('urn:example:complies'('urn:example:carol9422', false)). +answer('urn:example:complies'('urn:example:carol9423', false)). +answer('urn:example:complies'('urn:example:carol9424', false)). +answer('urn:example:complies'('urn:example:carol9425', false)). +answer('urn:example:complies'('urn:example:carol9426', false)). +answer('urn:example:complies'('urn:example:carol9427', false)). +answer('urn:example:complies'('urn:example:carol9428', false)). +answer('urn:example:complies'('urn:example:carol9429', false)). +answer('urn:example:complies'('urn:example:carol9430', false)). +answer('urn:example:complies'('urn:example:carol9431', false)). +answer('urn:example:complies'('urn:example:carol9432', false)). +answer('urn:example:complies'('urn:example:carol9433', false)). +answer('urn:example:complies'('urn:example:carol9434', false)). +answer('urn:example:complies'('urn:example:carol9435', false)). +answer('urn:example:complies'('urn:example:carol9436', false)). +answer('urn:example:complies'('urn:example:carol9437', false)). +answer('urn:example:complies'('urn:example:carol9438', false)). +answer('urn:example:complies'('urn:example:carol9439', false)). +answer('urn:example:complies'('urn:example:carol9440', false)). +answer('urn:example:complies'('urn:example:carol9441', false)). +answer('urn:example:complies'('urn:example:carol9442', false)). +answer('urn:example:complies'('urn:example:carol9443', false)). +answer('urn:example:complies'('urn:example:carol9444', false)). +answer('urn:example:complies'('urn:example:carol9445', false)). +answer('urn:example:complies'('urn:example:carol9446', false)). +answer('urn:example:complies'('urn:example:carol9447', false)). +answer('urn:example:complies'('urn:example:carol9448', false)). +answer('urn:example:complies'('urn:example:carol9449', false)). +answer('urn:example:complies'('urn:example:carol9450', false)). +answer('urn:example:complies'('urn:example:carol9451', false)). +answer('urn:example:complies'('urn:example:carol9452', false)). +answer('urn:example:complies'('urn:example:carol9453', false)). +answer('urn:example:complies'('urn:example:carol9454', false)). +answer('urn:example:complies'('urn:example:carol9455', false)). +answer('urn:example:complies'('urn:example:carol9456', false)). +answer('urn:example:complies'('urn:example:carol9457', false)). +answer('urn:example:complies'('urn:example:carol9458', false)). +answer('urn:example:complies'('urn:example:carol9459', false)). +answer('urn:example:complies'('urn:example:carol9460', false)). +answer('urn:example:complies'('urn:example:carol9461', false)). +answer('urn:example:complies'('urn:example:carol9462', false)). +answer('urn:example:complies'('urn:example:carol9463', false)). +answer('urn:example:complies'('urn:example:carol9464', false)). +answer('urn:example:complies'('urn:example:carol9465', false)). +answer('urn:example:complies'('urn:example:carol9466', false)). +answer('urn:example:complies'('urn:example:carol9467', false)). +answer('urn:example:complies'('urn:example:carol9468', false)). +answer('urn:example:complies'('urn:example:carol9469', false)). +answer('urn:example:complies'('urn:example:carol9470', false)). +answer('urn:example:complies'('urn:example:carol9471', false)). +answer('urn:example:complies'('urn:example:carol9472', false)). +answer('urn:example:complies'('urn:example:carol9473', false)). +answer('urn:example:complies'('urn:example:carol9474', false)). +answer('urn:example:complies'('urn:example:carol9475', false)). +answer('urn:example:complies'('urn:example:carol9476', false)). +answer('urn:example:complies'('urn:example:carol9477', false)). +answer('urn:example:complies'('urn:example:carol9478', false)). +answer('urn:example:complies'('urn:example:carol9479', false)). +answer('urn:example:complies'('urn:example:carol9480', false)). +answer('urn:example:complies'('urn:example:carol9481', false)). +answer('urn:example:complies'('urn:example:carol9482', false)). +answer('urn:example:complies'('urn:example:carol9483', false)). +answer('urn:example:complies'('urn:example:carol9484', false)). +answer('urn:example:complies'('urn:example:carol9485', false)). +answer('urn:example:complies'('urn:example:carol9486', false)). +answer('urn:example:complies'('urn:example:carol9487', false)). +answer('urn:example:complies'('urn:example:carol9488', false)). +answer('urn:example:complies'('urn:example:carol9489', false)). +answer('urn:example:complies'('urn:example:carol9490', false)). +answer('urn:example:complies'('urn:example:carol9491', false)). +answer('urn:example:complies'('urn:example:carol9492', false)). +answer('urn:example:complies'('urn:example:carol9493', false)). +answer('urn:example:complies'('urn:example:carol9494', false)). +answer('urn:example:complies'('urn:example:carol9495', false)). +answer('urn:example:complies'('urn:example:carol9496', false)). +answer('urn:example:complies'('urn:example:carol9497', false)). +answer('urn:example:complies'('urn:example:carol9498', false)). +answer('urn:example:complies'('urn:example:carol9499', false)). +answer('urn:example:complies'('urn:example:carol9500', false)). +answer('urn:example:complies'('urn:example:carol9501', false)). +answer('urn:example:complies'('urn:example:carol9502', false)). +answer('urn:example:complies'('urn:example:carol9503', false)). +answer('urn:example:complies'('urn:example:carol9504', false)). +answer('urn:example:complies'('urn:example:carol9505', false)). +answer('urn:example:complies'('urn:example:carol9506', false)). +answer('urn:example:complies'('urn:example:carol9507', false)). +answer('urn:example:complies'('urn:example:carol9508', false)). +answer('urn:example:complies'('urn:example:carol9509', false)). +answer('urn:example:complies'('urn:example:carol9510', false)). +answer('urn:example:complies'('urn:example:carol9511', false)). +answer('urn:example:complies'('urn:example:carol9512', false)). +answer('urn:example:complies'('urn:example:carol9513', false)). +answer('urn:example:complies'('urn:example:carol9514', false)). +answer('urn:example:complies'('urn:example:carol9515', false)). +answer('urn:example:complies'('urn:example:carol9516', false)). +answer('urn:example:complies'('urn:example:carol9517', false)). +answer('urn:example:complies'('urn:example:carol9518', false)). +answer('urn:example:complies'('urn:example:carol9519', false)). +answer('urn:example:complies'('urn:example:carol9520', false)). +answer('urn:example:complies'('urn:example:carol9521', false)). +answer('urn:example:complies'('urn:example:carol9522', false)). +answer('urn:example:complies'('urn:example:carol9523', false)). +answer('urn:example:complies'('urn:example:carol9524', false)). +answer('urn:example:complies'('urn:example:carol9525', false)). +answer('urn:example:complies'('urn:example:carol9526', false)). +answer('urn:example:complies'('urn:example:carol9527', false)). +answer('urn:example:complies'('urn:example:carol9528', false)). +answer('urn:example:complies'('urn:example:carol9529', false)). +answer('urn:example:complies'('urn:example:carol9530', false)). +answer('urn:example:complies'('urn:example:carol9531', false)). +answer('urn:example:complies'('urn:example:carol9532', false)). +answer('urn:example:complies'('urn:example:carol9533', false)). +answer('urn:example:complies'('urn:example:carol9534', false)). +answer('urn:example:complies'('urn:example:carol9535', false)). +answer('urn:example:complies'('urn:example:carol9536', false)). +answer('urn:example:complies'('urn:example:carol9537', false)). +answer('urn:example:complies'('urn:example:carol9538', false)). +answer('urn:example:complies'('urn:example:carol9539', false)). +answer('urn:example:complies'('urn:example:carol9540', false)). +answer('urn:example:complies'('urn:example:carol9541', false)). +answer('urn:example:complies'('urn:example:carol9542', false)). +answer('urn:example:complies'('urn:example:carol9543', false)). +answer('urn:example:complies'('urn:example:carol9544', false)). +answer('urn:example:complies'('urn:example:carol9545', false)). +answer('urn:example:complies'('urn:example:carol9546', false)). +answer('urn:example:complies'('urn:example:carol9547', false)). +answer('urn:example:complies'('urn:example:carol9548', false)). +answer('urn:example:complies'('urn:example:carol9549', false)). +answer('urn:example:complies'('urn:example:carol9550', false)). +answer('urn:example:complies'('urn:example:carol9551', false)). +answer('urn:example:complies'('urn:example:carol9552', false)). +answer('urn:example:complies'('urn:example:carol9553', false)). +answer('urn:example:complies'('urn:example:carol9554', false)). +answer('urn:example:complies'('urn:example:carol9555', false)). +answer('urn:example:complies'('urn:example:carol9556', false)). +answer('urn:example:complies'('urn:example:carol9557', false)). +answer('urn:example:complies'('urn:example:carol9558', false)). +answer('urn:example:complies'('urn:example:carol9559', false)). +answer('urn:example:complies'('urn:example:carol9560', false)). +answer('urn:example:complies'('urn:example:carol9561', false)). +answer('urn:example:complies'('urn:example:carol9562', false)). +answer('urn:example:complies'('urn:example:carol9563', false)). +answer('urn:example:complies'('urn:example:carol9564', false)). +answer('urn:example:complies'('urn:example:carol9565', false)). +answer('urn:example:complies'('urn:example:carol9566', false)). +answer('urn:example:complies'('urn:example:carol9567', false)). +answer('urn:example:complies'('urn:example:carol9568', false)). +answer('urn:example:complies'('urn:example:carol9569', false)). +answer('urn:example:complies'('urn:example:carol9570', false)). +answer('urn:example:complies'('urn:example:carol9571', false)). +answer('urn:example:complies'('urn:example:carol9572', false)). +answer('urn:example:complies'('urn:example:carol9573', false)). +answer('urn:example:complies'('urn:example:carol9574', false)). +answer('urn:example:complies'('urn:example:carol9575', false)). +answer('urn:example:complies'('urn:example:carol9576', false)). +answer('urn:example:complies'('urn:example:carol9577', false)). +answer('urn:example:complies'('urn:example:carol9578', false)). +answer('urn:example:complies'('urn:example:carol9579', false)). +answer('urn:example:complies'('urn:example:carol9580', false)). +answer('urn:example:complies'('urn:example:carol9581', false)). +answer('urn:example:complies'('urn:example:carol9582', false)). +answer('urn:example:complies'('urn:example:carol9583', false)). +answer('urn:example:complies'('urn:example:carol9584', false)). +answer('urn:example:complies'('urn:example:carol9585', false)). +answer('urn:example:complies'('urn:example:carol9586', false)). +answer('urn:example:complies'('urn:example:carol9587', false)). +answer('urn:example:complies'('urn:example:carol9588', false)). +answer('urn:example:complies'('urn:example:carol9589', false)). +answer('urn:example:complies'('urn:example:carol9590', false)). +answer('urn:example:complies'('urn:example:carol9591', false)). +answer('urn:example:complies'('urn:example:carol9592', false)). +answer('urn:example:complies'('urn:example:carol9593', false)). +answer('urn:example:complies'('urn:example:carol9594', false)). +answer('urn:example:complies'('urn:example:carol9595', false)). +answer('urn:example:complies'('urn:example:carol9596', false)). +answer('urn:example:complies'('urn:example:carol9597', false)). +answer('urn:example:complies'('urn:example:carol9598', false)). +answer('urn:example:complies'('urn:example:carol9599', false)). +answer('urn:example:complies'('urn:example:carol9600', false)). +answer('urn:example:complies'('urn:example:carol9601', false)). +answer('urn:example:complies'('urn:example:carol9602', false)). +answer('urn:example:complies'('urn:example:carol9603', false)). +answer('urn:example:complies'('urn:example:carol9604', false)). +answer('urn:example:complies'('urn:example:carol9605', false)). +answer('urn:example:complies'('urn:example:carol9606', false)). +answer('urn:example:complies'('urn:example:carol9607', false)). +answer('urn:example:complies'('urn:example:carol9608', false)). +answer('urn:example:complies'('urn:example:carol9609', false)). +answer('urn:example:complies'('urn:example:carol9610', false)). +answer('urn:example:complies'('urn:example:carol9611', false)). +answer('urn:example:complies'('urn:example:carol9612', false)). +answer('urn:example:complies'('urn:example:carol9613', false)). +answer('urn:example:complies'('urn:example:carol9614', false)). +answer('urn:example:complies'('urn:example:carol9615', false)). +answer('urn:example:complies'('urn:example:carol9616', false)). +answer('urn:example:complies'('urn:example:carol9617', false)). +answer('urn:example:complies'('urn:example:carol9618', false)). +answer('urn:example:complies'('urn:example:carol9619', false)). +answer('urn:example:complies'('urn:example:carol9620', false)). +answer('urn:example:complies'('urn:example:carol9621', false)). +answer('urn:example:complies'('urn:example:carol9622', false)). +answer('urn:example:complies'('urn:example:carol9623', false)). +answer('urn:example:complies'('urn:example:carol9624', false)). +answer('urn:example:complies'('urn:example:carol9625', false)). +answer('urn:example:complies'('urn:example:carol9626', false)). +answer('urn:example:complies'('urn:example:carol9627', false)). +answer('urn:example:complies'('urn:example:carol9628', false)). +answer('urn:example:complies'('urn:example:carol9629', false)). +answer('urn:example:complies'('urn:example:carol9630', false)). +answer('urn:example:complies'('urn:example:carol9631', false)). +answer('urn:example:complies'('urn:example:carol9632', false)). +answer('urn:example:complies'('urn:example:carol9633', false)). +answer('urn:example:complies'('urn:example:carol9634', false)). +answer('urn:example:complies'('urn:example:carol9635', false)). +answer('urn:example:complies'('urn:example:carol9636', false)). +answer('urn:example:complies'('urn:example:carol9637', false)). +answer('urn:example:complies'('urn:example:carol9638', false)). +answer('urn:example:complies'('urn:example:carol9639', false)). +answer('urn:example:complies'('urn:example:carol9640', false)). +answer('urn:example:complies'('urn:example:carol9641', false)). +answer('urn:example:complies'('urn:example:carol9642', false)). +answer('urn:example:complies'('urn:example:carol9643', false)). +answer('urn:example:complies'('urn:example:carol9644', false)). +answer('urn:example:complies'('urn:example:carol9645', false)). +answer('urn:example:complies'('urn:example:carol9646', false)). +answer('urn:example:complies'('urn:example:carol9647', false)). +answer('urn:example:complies'('urn:example:carol9648', false)). +answer('urn:example:complies'('urn:example:carol9649', false)). +answer('urn:example:complies'('urn:example:carol9650', false)). +answer('urn:example:complies'('urn:example:carol9651', false)). +answer('urn:example:complies'('urn:example:carol9652', false)). +answer('urn:example:complies'('urn:example:carol9653', false)). +answer('urn:example:complies'('urn:example:carol9654', false)). +answer('urn:example:complies'('urn:example:carol9655', false)). +answer('urn:example:complies'('urn:example:carol9656', false)). +answer('urn:example:complies'('urn:example:carol9657', false)). +answer('urn:example:complies'('urn:example:carol9658', false)). +answer('urn:example:complies'('urn:example:carol9659', false)). +answer('urn:example:complies'('urn:example:carol9660', false)). +answer('urn:example:complies'('urn:example:carol9661', false)). +answer('urn:example:complies'('urn:example:carol9662', false)). +answer('urn:example:complies'('urn:example:carol9663', false)). +answer('urn:example:complies'('urn:example:carol9664', false)). +answer('urn:example:complies'('urn:example:carol9665', false)). +answer('urn:example:complies'('urn:example:carol9666', false)). +answer('urn:example:complies'('urn:example:carol9667', false)). +answer('urn:example:complies'('urn:example:carol9668', false)). +answer('urn:example:complies'('urn:example:carol9669', false)). +answer('urn:example:complies'('urn:example:carol9670', false)). +answer('urn:example:complies'('urn:example:carol9671', false)). +answer('urn:example:complies'('urn:example:carol9672', false)). +answer('urn:example:complies'('urn:example:carol9673', false)). +answer('urn:example:complies'('urn:example:carol9674', false)). +answer('urn:example:complies'('urn:example:carol9675', false)). +answer('urn:example:complies'('urn:example:carol9676', false)). +answer('urn:example:complies'('urn:example:carol9677', false)). +answer('urn:example:complies'('urn:example:carol9678', false)). +answer('urn:example:complies'('urn:example:carol9679', false)). +answer('urn:example:complies'('urn:example:carol9680', false)). +answer('urn:example:complies'('urn:example:carol9681', false)). +answer('urn:example:complies'('urn:example:carol9682', false)). +answer('urn:example:complies'('urn:example:carol9683', false)). +answer('urn:example:complies'('urn:example:carol9684', false)). +answer('urn:example:complies'('urn:example:carol9685', false)). +answer('urn:example:complies'('urn:example:carol9686', false)). +answer('urn:example:complies'('urn:example:carol9687', false)). +answer('urn:example:complies'('urn:example:carol9688', false)). +answer('urn:example:complies'('urn:example:carol9689', false)). +answer('urn:example:complies'('urn:example:carol9690', false)). +answer('urn:example:complies'('urn:example:carol9691', false)). +answer('urn:example:complies'('urn:example:carol9692', false)). +answer('urn:example:complies'('urn:example:carol9693', false)). +answer('urn:example:complies'('urn:example:carol9694', false)). +answer('urn:example:complies'('urn:example:carol9695', false)). +answer('urn:example:complies'('urn:example:carol9696', false)). +answer('urn:example:complies'('urn:example:carol9697', false)). +answer('urn:example:complies'('urn:example:carol9698', false)). +answer('urn:example:complies'('urn:example:carol9699', false)). +answer('urn:example:complies'('urn:example:carol9700', false)). +answer('urn:example:complies'('urn:example:carol9701', false)). +answer('urn:example:complies'('urn:example:carol9702', false)). +answer('urn:example:complies'('urn:example:carol9703', false)). +answer('urn:example:complies'('urn:example:carol9704', false)). +answer('urn:example:complies'('urn:example:carol9705', false)). +answer('urn:example:complies'('urn:example:carol9706', false)). +answer('urn:example:complies'('urn:example:carol9707', false)). +answer('urn:example:complies'('urn:example:carol9708', false)). +answer('urn:example:complies'('urn:example:carol9709', false)). +answer('urn:example:complies'('urn:example:carol9710', false)). +answer('urn:example:complies'('urn:example:carol9711', false)). +answer('urn:example:complies'('urn:example:carol9712', false)). +answer('urn:example:complies'('urn:example:carol9713', false)). +answer('urn:example:complies'('urn:example:carol9714', false)). +answer('urn:example:complies'('urn:example:carol9715', false)). +answer('urn:example:complies'('urn:example:carol9716', false)). +answer('urn:example:complies'('urn:example:carol9717', false)). +answer('urn:example:complies'('urn:example:carol9718', false)). +answer('urn:example:complies'('urn:example:carol9719', false)). +answer('urn:example:complies'('urn:example:carol9720', false)). +answer('urn:example:complies'('urn:example:carol9721', false)). +answer('urn:example:complies'('urn:example:carol9722', false)). +answer('urn:example:complies'('urn:example:carol9723', false)). +answer('urn:example:complies'('urn:example:carol9724', false)). +answer('urn:example:complies'('urn:example:carol9725', false)). +answer('urn:example:complies'('urn:example:carol9726', false)). +answer('urn:example:complies'('urn:example:carol9727', false)). +answer('urn:example:complies'('urn:example:carol9728', false)). +answer('urn:example:complies'('urn:example:carol9729', false)). +answer('urn:example:complies'('urn:example:carol9730', false)). +answer('urn:example:complies'('urn:example:carol9731', false)). +answer('urn:example:complies'('urn:example:carol9732', false)). +answer('urn:example:complies'('urn:example:carol9733', false)). +answer('urn:example:complies'('urn:example:carol9734', false)). +answer('urn:example:complies'('urn:example:carol9735', false)). +answer('urn:example:complies'('urn:example:carol9736', false)). +answer('urn:example:complies'('urn:example:carol9737', false)). +answer('urn:example:complies'('urn:example:carol9738', false)). +answer('urn:example:complies'('urn:example:carol9739', false)). +answer('urn:example:complies'('urn:example:carol9740', false)). +answer('urn:example:complies'('urn:example:carol9741', false)). +answer('urn:example:complies'('urn:example:carol9742', false)). +answer('urn:example:complies'('urn:example:carol9743', false)). +answer('urn:example:complies'('urn:example:carol9744', false)). +answer('urn:example:complies'('urn:example:carol9745', false)). +answer('urn:example:complies'('urn:example:carol9746', false)). +answer('urn:example:complies'('urn:example:carol9747', false)). +answer('urn:example:complies'('urn:example:carol9748', false)). +answer('urn:example:complies'('urn:example:carol9749', false)). +answer('urn:example:complies'('urn:example:carol9750', false)). +answer('urn:example:complies'('urn:example:carol9751', false)). +answer('urn:example:complies'('urn:example:carol9752', false)). +answer('urn:example:complies'('urn:example:carol9753', false)). +answer('urn:example:complies'('urn:example:carol9754', false)). +answer('urn:example:complies'('urn:example:carol9755', false)). +answer('urn:example:complies'('urn:example:carol9756', false)). +answer('urn:example:complies'('urn:example:carol9757', false)). +answer('urn:example:complies'('urn:example:carol9758', false)). +answer('urn:example:complies'('urn:example:carol9759', false)). +answer('urn:example:complies'('urn:example:carol9760', false)). +answer('urn:example:complies'('urn:example:carol9761', false)). +answer('urn:example:complies'('urn:example:carol9762', false)). +answer('urn:example:complies'('urn:example:carol9763', false)). +answer('urn:example:complies'('urn:example:carol9764', false)). +answer('urn:example:complies'('urn:example:carol9765', false)). +answer('urn:example:complies'('urn:example:carol9766', false)). +answer('urn:example:complies'('urn:example:carol9767', false)). +answer('urn:example:complies'('urn:example:carol9768', false)). +answer('urn:example:complies'('urn:example:carol9769', false)). +answer('urn:example:complies'('urn:example:carol9770', false)). +answer('urn:example:complies'('urn:example:carol9771', false)). +answer('urn:example:complies'('urn:example:carol9772', false)). +answer('urn:example:complies'('urn:example:carol9773', false)). +answer('urn:example:complies'('urn:example:carol9774', false)). +answer('urn:example:complies'('urn:example:carol9775', false)). +answer('urn:example:complies'('urn:example:carol9776', false)). +answer('urn:example:complies'('urn:example:carol9777', false)). +answer('urn:example:complies'('urn:example:carol9778', false)). +answer('urn:example:complies'('urn:example:carol9779', false)). +answer('urn:example:complies'('urn:example:carol9780', false)). +answer('urn:example:complies'('urn:example:carol9781', false)). +answer('urn:example:complies'('urn:example:carol9782', false)). +answer('urn:example:complies'('urn:example:carol9783', false)). +answer('urn:example:complies'('urn:example:carol9784', false)). +answer('urn:example:complies'('urn:example:carol9785', false)). +answer('urn:example:complies'('urn:example:carol9786', false)). +answer('urn:example:complies'('urn:example:carol9787', false)). +answer('urn:example:complies'('urn:example:carol9788', false)). +answer('urn:example:complies'('urn:example:carol9789', false)). +answer('urn:example:complies'('urn:example:carol9790', false)). +answer('urn:example:complies'('urn:example:carol9791', false)). +answer('urn:example:complies'('urn:example:carol9792', false)). +answer('urn:example:complies'('urn:example:carol9793', false)). +answer('urn:example:complies'('urn:example:carol9794', false)). +answer('urn:example:complies'('urn:example:carol9795', false)). +answer('urn:example:complies'('urn:example:carol9796', false)). +answer('urn:example:complies'('urn:example:carol9797', false)). +answer('urn:example:complies'('urn:example:carol9798', false)). +answer('urn:example:complies'('urn:example:carol9799', false)). +answer('urn:example:complies'('urn:example:carol9800', false)). +answer('urn:example:complies'('urn:example:carol9801', false)). +answer('urn:example:complies'('urn:example:carol9802', false)). +answer('urn:example:complies'('urn:example:carol9803', false)). +answer('urn:example:complies'('urn:example:carol9804', false)). +answer('urn:example:complies'('urn:example:carol9805', false)). +answer('urn:example:complies'('urn:example:carol9806', false)). +answer('urn:example:complies'('urn:example:carol9807', false)). +answer('urn:example:complies'('urn:example:carol9808', false)). +answer('urn:example:complies'('urn:example:carol9809', false)). +answer('urn:example:complies'('urn:example:carol9810', false)). +answer('urn:example:complies'('urn:example:carol9811', false)). +answer('urn:example:complies'('urn:example:carol9812', false)). +answer('urn:example:complies'('urn:example:carol9813', false)). +answer('urn:example:complies'('urn:example:carol9814', false)). +answer('urn:example:complies'('urn:example:carol9815', false)). +answer('urn:example:complies'('urn:example:carol9816', false)). +answer('urn:example:complies'('urn:example:carol9817', false)). +answer('urn:example:complies'('urn:example:carol9818', false)). +answer('urn:example:complies'('urn:example:carol9819', false)). +answer('urn:example:complies'('urn:example:carol9820', false)). +answer('urn:example:complies'('urn:example:carol9821', false)). +answer('urn:example:complies'('urn:example:carol9822', false)). +answer('urn:example:complies'('urn:example:carol9823', false)). +answer('urn:example:complies'('urn:example:carol9824', false)). +answer('urn:example:complies'('urn:example:carol9825', false)). +answer('urn:example:complies'('urn:example:carol9826', false)). +answer('urn:example:complies'('urn:example:carol9827', false)). +answer('urn:example:complies'('urn:example:carol9828', false)). +answer('urn:example:complies'('urn:example:carol9829', false)). +answer('urn:example:complies'('urn:example:carol9830', false)). +answer('urn:example:complies'('urn:example:carol9831', false)). +answer('urn:example:complies'('urn:example:carol9832', false)). +answer('urn:example:complies'('urn:example:carol9833', false)). +answer('urn:example:complies'('urn:example:carol9834', false)). +answer('urn:example:complies'('urn:example:carol9835', false)). +answer('urn:example:complies'('urn:example:carol9836', false)). +answer('urn:example:complies'('urn:example:carol9837', false)). +answer('urn:example:complies'('urn:example:carol9838', false)). +answer('urn:example:complies'('urn:example:carol9839', false)). +answer('urn:example:complies'('urn:example:carol9840', false)). +answer('urn:example:complies'('urn:example:carol9841', false)). +answer('urn:example:complies'('urn:example:carol9842', false)). +answer('urn:example:complies'('urn:example:carol9843', false)). +answer('urn:example:complies'('urn:example:carol9844', false)). +answer('urn:example:complies'('urn:example:carol9845', false)). +answer('urn:example:complies'('urn:example:carol9846', false)). +answer('urn:example:complies'('urn:example:carol9847', false)). +answer('urn:example:complies'('urn:example:carol9848', false)). +answer('urn:example:complies'('urn:example:carol9849', false)). +answer('urn:example:complies'('urn:example:carol9850', false)). +answer('urn:example:complies'('urn:example:carol9851', false)). +answer('urn:example:complies'('urn:example:carol9852', false)). +answer('urn:example:complies'('urn:example:carol9853', false)). +answer('urn:example:complies'('urn:example:carol9854', false)). +answer('urn:example:complies'('urn:example:carol9855', false)). +answer('urn:example:complies'('urn:example:carol9856', false)). +answer('urn:example:complies'('urn:example:carol9857', false)). +answer('urn:example:complies'('urn:example:carol9858', false)). +answer('urn:example:complies'('urn:example:carol9859', false)). +answer('urn:example:complies'('urn:example:carol9860', false)). +answer('urn:example:complies'('urn:example:carol9861', false)). +answer('urn:example:complies'('urn:example:carol9862', false)). +answer('urn:example:complies'('urn:example:carol9863', false)). +answer('urn:example:complies'('urn:example:carol9864', false)). +answer('urn:example:complies'('urn:example:carol9865', false)). +answer('urn:example:complies'('urn:example:carol9866', false)). +answer('urn:example:complies'('urn:example:carol9867', false)). +answer('urn:example:complies'('urn:example:carol9868', false)). +answer('urn:example:complies'('urn:example:carol9869', false)). +answer('urn:example:complies'('urn:example:carol9870', false)). +answer('urn:example:complies'('urn:example:carol9871', false)). +answer('urn:example:complies'('urn:example:carol9872', false)). +answer('urn:example:complies'('urn:example:carol9873', false)). +answer('urn:example:complies'('urn:example:carol9874', false)). +answer('urn:example:complies'('urn:example:carol9875', false)). +answer('urn:example:complies'('urn:example:carol9876', false)). +answer('urn:example:complies'('urn:example:carol9877', false)). +answer('urn:example:complies'('urn:example:carol9878', false)). +answer('urn:example:complies'('urn:example:carol9879', false)). +answer('urn:example:complies'('urn:example:carol9880', false)). +answer('urn:example:complies'('urn:example:carol9881', false)). +answer('urn:example:complies'('urn:example:carol9882', false)). +answer('urn:example:complies'('urn:example:carol9883', false)). +answer('urn:example:complies'('urn:example:carol9884', false)). +answer('urn:example:complies'('urn:example:carol9885', false)). +answer('urn:example:complies'('urn:example:carol9886', false)). +answer('urn:example:complies'('urn:example:carol9887', false)). +answer('urn:example:complies'('urn:example:carol9888', false)). +answer('urn:example:complies'('urn:example:carol9889', false)). +answer('urn:example:complies'('urn:example:carol9890', false)). +answer('urn:example:complies'('urn:example:carol9891', false)). +answer('urn:example:complies'('urn:example:carol9892', false)). +answer('urn:example:complies'('urn:example:carol9893', false)). +answer('urn:example:complies'('urn:example:carol9894', false)). +answer('urn:example:complies'('urn:example:carol9895', false)). +answer('urn:example:complies'('urn:example:carol9896', false)). +answer('urn:example:complies'('urn:example:carol9897', false)). +answer('urn:example:complies'('urn:example:carol9898', false)). +answer('urn:example:complies'('urn:example:carol9899', false)). +answer('urn:example:complies'('urn:example:carol9900', false)). +answer('urn:example:complies'('urn:example:carol9901', false)). +answer('urn:example:complies'('urn:example:carol9902', false)). +answer('urn:example:complies'('urn:example:carol9903', false)). +answer('urn:example:complies'('urn:example:carol9904', false)). +answer('urn:example:complies'('urn:example:carol9905', false)). +answer('urn:example:complies'('urn:example:carol9906', false)). +answer('urn:example:complies'('urn:example:carol9907', false)). +answer('urn:example:complies'('urn:example:carol9908', false)). +answer('urn:example:complies'('urn:example:carol9909', false)). +answer('urn:example:complies'('urn:example:carol9910', false)). +answer('urn:example:complies'('urn:example:carol9911', false)). +answer('urn:example:complies'('urn:example:carol9912', false)). +answer('urn:example:complies'('urn:example:carol9913', false)). +answer('urn:example:complies'('urn:example:carol9914', false)). +answer('urn:example:complies'('urn:example:carol9915', false)). +answer('urn:example:complies'('urn:example:carol9916', false)). +answer('urn:example:complies'('urn:example:carol9917', false)). +answer('urn:example:complies'('urn:example:carol9918', false)). +answer('urn:example:complies'('urn:example:carol9919', false)). +answer('urn:example:complies'('urn:example:carol9920', false)). +answer('urn:example:complies'('urn:example:carol9921', false)). +answer('urn:example:complies'('urn:example:carol9922', false)). +answer('urn:example:complies'('urn:example:carol9923', false)). +answer('urn:example:complies'('urn:example:carol9924', false)). +answer('urn:example:complies'('urn:example:carol9925', false)). +answer('urn:example:complies'('urn:example:carol9926', false)). +answer('urn:example:complies'('urn:example:carol9927', false)). +answer('urn:example:complies'('urn:example:carol9928', false)). +answer('urn:example:complies'('urn:example:carol9929', false)). +answer('urn:example:complies'('urn:example:carol9930', false)). +answer('urn:example:complies'('urn:example:carol9931', false)). +answer('urn:example:complies'('urn:example:carol9932', false)). +answer('urn:example:complies'('urn:example:carol9933', false)). +answer('urn:example:complies'('urn:example:carol9934', false)). +answer('urn:example:complies'('urn:example:carol9935', false)). +answer('urn:example:complies'('urn:example:carol9936', false)). +answer('urn:example:complies'('urn:example:carol9937', false)). +answer('urn:example:complies'('urn:example:carol9938', false)). +answer('urn:example:complies'('urn:example:carol9939', false)). +answer('urn:example:complies'('urn:example:carol9940', false)). +answer('urn:example:complies'('urn:example:carol9941', false)). +answer('urn:example:complies'('urn:example:carol9942', false)). +answer('urn:example:complies'('urn:example:carol9943', false)). +answer('urn:example:complies'('urn:example:carol9944', false)). +answer('urn:example:complies'('urn:example:carol9945', false)). +answer('urn:example:complies'('urn:example:carol9946', false)). +answer('urn:example:complies'('urn:example:carol9947', false)). +answer('urn:example:complies'('urn:example:carol9948', false)). +answer('urn:example:complies'('urn:example:carol9949', false)). +answer('urn:example:complies'('urn:example:carol9950', false)). +answer('urn:example:complies'('urn:example:carol9951', false)). +answer('urn:example:complies'('urn:example:carol9952', false)). +answer('urn:example:complies'('urn:example:carol9953', false)). +answer('urn:example:complies'('urn:example:carol9954', false)). +answer('urn:example:complies'('urn:example:carol9955', false)). +answer('urn:example:complies'('urn:example:carol9956', false)). +answer('urn:example:complies'('urn:example:carol9957', false)). +answer('urn:example:complies'('urn:example:carol9958', false)). +answer('urn:example:complies'('urn:example:carol9959', false)). +answer('urn:example:complies'('urn:example:carol9960', false)). +answer('urn:example:complies'('urn:example:carol9961', false)). +answer('urn:example:complies'('urn:example:carol9962', false)). +answer('urn:example:complies'('urn:example:carol9963', false)). +answer('urn:example:complies'('urn:example:carol9964', false)). +answer('urn:example:complies'('urn:example:carol9965', false)). +answer('urn:example:complies'('urn:example:carol9966', false)). +answer('urn:example:complies'('urn:example:carol9967', false)). +answer('urn:example:complies'('urn:example:carol9968', false)). +answer('urn:example:complies'('urn:example:carol9969', false)). +answer('urn:example:complies'('urn:example:carol9970', false)). +answer('urn:example:complies'('urn:example:carol9971', false)). +answer('urn:example:complies'('urn:example:carol9972', false)). +answer('urn:example:complies'('urn:example:carol9973', false)). +answer('urn:example:complies'('urn:example:carol9974', false)). +answer('urn:example:complies'('urn:example:carol9975', false)). +answer('urn:example:complies'('urn:example:carol9976', false)). +answer('urn:example:complies'('urn:example:carol9977', false)). +answer('urn:example:complies'('urn:example:carol9978', false)). +answer('urn:example:complies'('urn:example:carol9979', false)). +answer('urn:example:complies'('urn:example:carol9980', false)). +answer('urn:example:complies'('urn:example:carol9981', false)). +answer('urn:example:complies'('urn:example:carol9982', false)). +answer('urn:example:complies'('urn:example:carol9983', false)). +answer('urn:example:complies'('urn:example:carol9984', false)). +answer('urn:example:complies'('urn:example:carol9985', false)). +answer('urn:example:complies'('urn:example:carol9986', false)). +answer('urn:example:complies'('urn:example:carol9987', false)). +answer('urn:example:complies'('urn:example:carol9988', false)). +answer('urn:example:complies'('urn:example:carol9989', false)). +answer('urn:example:complies'('urn:example:carol9990', false)). +answer('urn:example:complies'('urn:example:carol9991', false)). +answer('urn:example:complies'('urn:example:carol9992', false)). +answer('urn:example:complies'('urn:example:carol9993', false)). +answer('urn:example:complies'('urn:example:carol9994', false)). +answer('urn:example:complies'('urn:example:carol9995', false)). +answer('urn:example:complies'('urn:example:carol9996', false)). +answer('urn:example:complies'('urn:example:carol9997', false)). +answer('urn:example:complies'('urn:example:carol9998', false)). +answer('urn:example:complies'('urn:example:carol9999', false)). +answer('urn:example:complies'('urn:example:carol10000', false)). + +% +% Proof steps +% + +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob10', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob10', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob10', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob11', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob11', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob11', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob12', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob12', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob12', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob13', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob13', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob13', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob14', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob14', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob14', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob15', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob15', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob15', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob16', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob16', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob16', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob17', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob17', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob17', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob18', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob18', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob18', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob19', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob19', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob19', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob20', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob20', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob20', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob21', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob21', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob21', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob22', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob22', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob22', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob23', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob23', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob23', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob24', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob24', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob24', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob25', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob25', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob25', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob26', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob26', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob26', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob27', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob27', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob27', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob28', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob28', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob28', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob29', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob29', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob29', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob30', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob30', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob30', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob31', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob31', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob31', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob32', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob32', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob32', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob33', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob33', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob33', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob34', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob34', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob34', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob35', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob35', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob35', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob36', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob36', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob36', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob37', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob37', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob37', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob38', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob38', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob38', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob39', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob39', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob39', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob40', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob40', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob40', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob41', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob41', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob41', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob42', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob42', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob42', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob43', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob43', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob43', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob44', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob44', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob44', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob45', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob45', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob45', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob46', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob46', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob46', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob47', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob47', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob47', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob48', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob48', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob48', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob49', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob49', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob49', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob50', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob50', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob50', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob51', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob51', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob51', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob52', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob52', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob52', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob53', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob53', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob53', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob54', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob54', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob54', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob55', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob55', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob55', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob56', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob56', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob56', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob57', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob57', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob57', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob58', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob58', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob58', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob59', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob59', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob59', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob60', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob60', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob60', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob61', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob61', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob61', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob62', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob62', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob62', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob63', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob63', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob63', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob64', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob64', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob64', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob65', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob65', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob65', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob66', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob66', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob66', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob67', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob67', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob67', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob68', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob68', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob68', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob69', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob69', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob69', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob70', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob70', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob70', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob71', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob71', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob71', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob72', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob72', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob72', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob73', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob73', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob73', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob74', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob74', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob74', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob75', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob75', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob75', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob76', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob76', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob76', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob77', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob77', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob77', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob78', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob78', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob78', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob79', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob79', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob79', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob80', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob80', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob80', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob81', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob81', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob81', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob82', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob82', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob82', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob83', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob83', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob83', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob84', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob84', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob84', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob85', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob85', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob85', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob86', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob86', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob86', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob87', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob87', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob87', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob88', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob88', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob88', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob89', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob89', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob89', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob90', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob90', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob90', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob91', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob91', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob91', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob92', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob92', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob92', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob93', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob93', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob93', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob94', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob94', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob94', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob95', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob95', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob95', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob96', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob96', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob96', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob97', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob97', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob97', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob98', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob98', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob98', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob99', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob99', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob99', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob1999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob1999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob1999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob2999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob2999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob2999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob3999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob3999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob3999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob4999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob4999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob4999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob5999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob5999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob5999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob6999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob6999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob6999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob7999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob7999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob7999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob8999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob8999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob8999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9001', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9001', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9002', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9002', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9003', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9003', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9004', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9004', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9005', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9005', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9006', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9006', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9007', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9007', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9008', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9008', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9009', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9009', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9010', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9010', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9011', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9011', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9012', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9012', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9013', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9013', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9014', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9014', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9015', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9015', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9016', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9016', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9017', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9017', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9018', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9018', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9019', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9019', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9020', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9020', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9021', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9021', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9022', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9022', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9023', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9023', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9024', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9024', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9025', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9025', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9026', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9026', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9027', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9027', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9028', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9028', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9029', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9029', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9030', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9030', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9031', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9031', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9032', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9032', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9033', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9033', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9034', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9034', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9035', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9035', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9036', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9036', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9037', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9037', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9038', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9038', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9039', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9039', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9040', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9040', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9041', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9041', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9042', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9042', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9043', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9043', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9044', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9044', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9045', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9045', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9046', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9046', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9047', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9047', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9048', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9048', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9049', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9049', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9050', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9050', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9051', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9051', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9052', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9052', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9053', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9053', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9054', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9054', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9055', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9055', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9056', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9056', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9057', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9057', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9058', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9058', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9059', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9059', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9060', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9060', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9061', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9061', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9062', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9062', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9063', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9063', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9064', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9064', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9065', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9065', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9066', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9066', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9067', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9067', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9068', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9068', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9069', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9069', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9070', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9070', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9071', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9071', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9072', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9072', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9073', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9073', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9074', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9074', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9075', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9075', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9076', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9076', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9077', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9077', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9078', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9078', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9079', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9079', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9080', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9080', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9081', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9081', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9082', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9082', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9083', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9083', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9084', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9084', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9085', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9085', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9086', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9086', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9087', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9087', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9088', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9088', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9089', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9089', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9090', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9090', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9091', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9091', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9092', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9092', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9093', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9093', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9094', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9094', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9095', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9095', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9096', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9096', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9097', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9097', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9098', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9098', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9099', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9099', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9100', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9100', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9101', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9101', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9102', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9102', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9103', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9103', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9104', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9104', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9105', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9105', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9106', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9106', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9107', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9107', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9108', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9108', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9109', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9109', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9110', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9110', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9111', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9111', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9112', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9112', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9113', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9113', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9114', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9114', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9115', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9115', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9116', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9116', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9117', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9117', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9118', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9118', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9119', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9119', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9120', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9120', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9121', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9121', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9122', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9122', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9123', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9123', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9124', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9124', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9125', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9125', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9126', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9126', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9127', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9127', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9128', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9128', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9129', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9129', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9130', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9130', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9131', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9131', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9132', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9132', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9133', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9133', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9134', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9134', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9135', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9135', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9136', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9136', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9137', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9137', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9138', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9138', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9139', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9139', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9140', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9140', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9141', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9141', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9142', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9142', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9143', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9143', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9144', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9144', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9145', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9145', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9146', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9146', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9147', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9147', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9148', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9148', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9149', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9149', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9150', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9150', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9151', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9151', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9152', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9152', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9153', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9153', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9154', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9154', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9155', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9155', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9156', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9156', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9157', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9157', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9158', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9158', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9159', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9159', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9160', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9160', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9161', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9161', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9162', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9162', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9163', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9163', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9164', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9164', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9165', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9165', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9166', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9166', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9167', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9167', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9168', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9168', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9169', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9169', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9170', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9170', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9171', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9171', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9172', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9172', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9173', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9173', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9174', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9174', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9175', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9175', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9176', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9176', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9177', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9177', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9178', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9178', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9179', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9179', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9180', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9180', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9181', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9181', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9182', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9182', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9183', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9183', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9184', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9184', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9185', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9185', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9186', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9186', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9187', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9187', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9188', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9188', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9189', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9189', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9190', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9190', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9191', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9191', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9192', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9192', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9193', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9193', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9194', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9194', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9195', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9195', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9196', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9196', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9197', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9197', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9198', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9198', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9199', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9199', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9200', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9200', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9201', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9201', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9202', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9202', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9203', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9203', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9204', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9204', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9205', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9205', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9206', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9206', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9207', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9207', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9208', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9208', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9209', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9209', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9210', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9210', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9211', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9211', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9212', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9212', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9213', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9213', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9214', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9214', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9215', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9215', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9216', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9216', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9217', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9217', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9218', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9218', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9219', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9219', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9220', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9220', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9221', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9221', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9222', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9222', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9223', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9223', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9224', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9224', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9225', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9225', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9226', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9226', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9227', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9227', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9228', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9228', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9229', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9229', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9230', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9230', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9231', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9231', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9232', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9232', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9233', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9233', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9234', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9234', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9235', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9235', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9236', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9236', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9237', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9237', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9238', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9238', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9239', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9239', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9240', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9240', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9241', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9241', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9242', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9242', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9243', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9243', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9244', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9244', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9245', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9245', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9246', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9246', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9247', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9247', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9248', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9248', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9249', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9249', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9250', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9250', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9251', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9251', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9252', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9252', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9253', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9253', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9254', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9254', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9255', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9255', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9256', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9256', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9257', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9257', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9258', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9258', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9259', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9259', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9260', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9260', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9261', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9261', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9262', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9262', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9263', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9263', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9264', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9264', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9265', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9265', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9266', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9266', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9267', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9267', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9268', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9268', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9269', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9269', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9270', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9270', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9271', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9271', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9272', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9272', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9273', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9273', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9274', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9274', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9275', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9275', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9276', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9276', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9277', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9277', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9278', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9278', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9279', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9279', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9280', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9280', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9281', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9281', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9282', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9282', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9283', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9283', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9284', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9284', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9285', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9285', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9286', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9286', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9287', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9287', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9288', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9288', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9289', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9289', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9290', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9290', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9291', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9291', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9292', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9292', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9293', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9293', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9294', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9294', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9295', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9295', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9296', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9296', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9297', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9297', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9298', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9298', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9299', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9299', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9300', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9300', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9301', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9301', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9302', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9302', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9303', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9303', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9304', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9304', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9305', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9305', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9306', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9306', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9307', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9307', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9308', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9308', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9309', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9309', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9310', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9310', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9311', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9311', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9312', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9312', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9313', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9313', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9314', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9314', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9315', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9315', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9316', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9316', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9317', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9317', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9318', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9318', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9319', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9319', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9320', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9320', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9321', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9321', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9322', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9322', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9323', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9323', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9324', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9324', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9325', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9325', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9326', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9326', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9327', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9327', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9328', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9328', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9329', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9329', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9330', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9330', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9331', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9331', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9332', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9332', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9333', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9333', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9334', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9334', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9335', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9335', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9336', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9336', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9337', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9337', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9338', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9338', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9339', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9339', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9340', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9340', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9341', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9341', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9342', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9342', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9343', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9343', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9344', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9344', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9345', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9345', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9346', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9346', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9347', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9347', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9348', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9348', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9349', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9349', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9350', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9350', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9351', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9351', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9352', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9352', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9353', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9353', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9354', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9354', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9355', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9355', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9356', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9356', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9357', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9357', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9358', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9358', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9359', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9359', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9360', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9360', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9361', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9361', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9362', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9362', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9363', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9363', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9364', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9364', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9365', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9365', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9366', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9366', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9367', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9367', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9368', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9368', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9369', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9369', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9370', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9370', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9371', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9371', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9372', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9372', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9373', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9373', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9374', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9374', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9375', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9375', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9376', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9376', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9377', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9377', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9378', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9378', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9379', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9379', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9380', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9380', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9381', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9381', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9382', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9382', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9383', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9383', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9384', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9384', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9385', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9385', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9386', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9386', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9387', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9387', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9388', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9388', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9389', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9389', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9390', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9390', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9391', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9391', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9392', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9392', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9393', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9393', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9394', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9394', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9395', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9395', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9396', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9396', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9397', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9397', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9398', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9398', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9399', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9399', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9400', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9400', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9401', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9401', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9402', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9402', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9403', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9403', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9404', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9404', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9405', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9405', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9406', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9406', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9407', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9407', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9408', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9408', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9409', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9409', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9410', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9410', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9411', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9411', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9412', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9412', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9413', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9413', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9414', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9414', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9415', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9415', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9416', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9416', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9417', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9417', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9418', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9418', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9419', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9419', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9420', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9420', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9421', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9421', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9422', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9422', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9423', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9423', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9424', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9424', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9425', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9425', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9426', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9426', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9427', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9427', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9428', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9428', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9429', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9429', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9430', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9430', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9431', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9431', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9432', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9432', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9433', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9433', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9434', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9434', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9435', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9435', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9436', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9436', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9437', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9437', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9438', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9438', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9439', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9439', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9440', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9440', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9441', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9441', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9442', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9442', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9443', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9443', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9444', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9444', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9445', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9445', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9446', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9446', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9447', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9447', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9448', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9448', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9449', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9449', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9450', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9450', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9451', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9451', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9452', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9452', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9453', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9453', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9454', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9454', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9455', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9455', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9456', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9456', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9457', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9457', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9458', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9458', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9459', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9459', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9460', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9460', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9461', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9461', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9462', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9462', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9463', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9463', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9464', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9464', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9465', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9465', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9466', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9466', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9467', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9467', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9468', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9468', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9469', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9469', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9470', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9470', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9471', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9471', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9472', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9472', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9473', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9473', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9474', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9474', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9475', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9475', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9476', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9476', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9477', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9477', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9478', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9478', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9479', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9479', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9480', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9480', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9481', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9481', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9482', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9482', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9483', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9483', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9484', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9484', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9485', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9485', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9486', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9486', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9487', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9487', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9488', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9488', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9489', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9489', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9490', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9490', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9491', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9491', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9492', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9492', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9493', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9493', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9494', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9494', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9495', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9495', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9496', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9496', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9497', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9497', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9498', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9498', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9499', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9499', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9500', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9500', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9501', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9501', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9502', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9502', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9503', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9503', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9504', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9504', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9505', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9505', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9506', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9506', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9507', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9507', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9508', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9508', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9509', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9509', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9510', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9510', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9511', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9511', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9512', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9512', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9513', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9513', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9514', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9514', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9515', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9515', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9516', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9516', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9517', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9517', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9518', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9518', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9519', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9519', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9520', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9520', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9521', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9521', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9522', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9522', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9523', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9523', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9524', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9524', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9525', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9525', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9526', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9526', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9527', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9527', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9528', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9528', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9529', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9529', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9530', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9530', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9531', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9531', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9532', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9532', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9533', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9533', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9534', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9534', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9535', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9535', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9536', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9536', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9537', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9537', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9538', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9538', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9539', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9539', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9540', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9540', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9541', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9541', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9542', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9542', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9543', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9543', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9544', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9544', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9545', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9545', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9546', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9546', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9547', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9547', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9548', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9548', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9549', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9549', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9550', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9550', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9551', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9551', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9552', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9552', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9553', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9553', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9554', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9554', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9555', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9555', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9556', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9556', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9557', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9557', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9558', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9558', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9559', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9559', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9560', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9560', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9561', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9561', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9562', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9562', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9563', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9563', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9564', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9564', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9565', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9565', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9566', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9566', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9567', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9567', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9568', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9568', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9569', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9569', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9570', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9570', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9571', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9571', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9572', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9572', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9573', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9573', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9574', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9574', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9575', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9575', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9576', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9576', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9577', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9577', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9578', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9578', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9579', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9579', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9580', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9580', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9581', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9581', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9582', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9582', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9583', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9583', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9584', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9584', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9585', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9585', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9586', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9586', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9587', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9587', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9588', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9588', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9589', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9589', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9590', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9590', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9591', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9591', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9592', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9592', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9593', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9593', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9594', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9594', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9595', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9595', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9596', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9596', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9597', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9597', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9598', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9598', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9599', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9599', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9600', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9600', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9601', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9601', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9602', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9602', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9603', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9603', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9604', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9604', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9605', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9605', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9606', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9606', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9607', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9607', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9608', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9608', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9609', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9609', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9610', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9610', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9611', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9611', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9612', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9612', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9613', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9613', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9614', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9614', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9615', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9615', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9616', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9616', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9617', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9617', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9618', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9618', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9619', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9619', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9620', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9620', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9621', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9621', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9622', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9622', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9623', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9623', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9624', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9624', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9625', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9625', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9626', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9626', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9627', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9627', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9628', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9628', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9629', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9629', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9630', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9630', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9631', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9631', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9632', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9632', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9633', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9633', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9634', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9634', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9635', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9635', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9636', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9636', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9637', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9637', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9638', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9638', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9639', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9639', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9640', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9640', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9641', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9641', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9642', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9642', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9643', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9643', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9644', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9644', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9645', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9645', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9646', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9646', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9647', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9647', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9648', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9648', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9649', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9649', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9650', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9650', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9651', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9651', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9652', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9652', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9653', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9653', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9654', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9654', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9655', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9655', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9656', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9656', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9657', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9657', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9658', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9658', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9659', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9659', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9660', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9660', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9661', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9661', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9662', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9662', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9663', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9663', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9664', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9664', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9665', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9665', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9666', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9666', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9667', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9667', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9668', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9668', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9669', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9669', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9670', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9670', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9671', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9671', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9672', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9672', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9673', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9673', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9674', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9674', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9675', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9675', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9676', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9676', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9677', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9677', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9678', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9678', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9679', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9679', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9680', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9680', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9681', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9681', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9682', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9682', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9683', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9683', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9684', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9684', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9685', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9685', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9686', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9686', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9687', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9687', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9688', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9688', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9689', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9689', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9690', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9690', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9691', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9691', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9692', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9692', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9693', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9693', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9694', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9694', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9695', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9695', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9696', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9696', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9697', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9697', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9698', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9698', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9699', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9699', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9700', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9700', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9701', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9701', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9702', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9702', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9703', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9703', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9704', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9704', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9705', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9705', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9706', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9706', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9707', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9707', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9708', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9708', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9709', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9709', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9710', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9710', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9711', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9711', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9712', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9712', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9713', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9713', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9714', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9714', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9715', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9715', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9716', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9716', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9717', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9717', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9718', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9718', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9719', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9719', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9720', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9720', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9721', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9721', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9722', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9722', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9723', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9723', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9724', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9724', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9725', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9725', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9726', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9726', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9727', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9727', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9728', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9728', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9729', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9729', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9730', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9730', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9731', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9731', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9732', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9732', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9733', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9733', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9734', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9734', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9735', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9735', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9736', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9736', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9737', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9737', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9738', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9738', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9739', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9739', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9740', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9740', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9741', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9741', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9742', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9742', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9743', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9743', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9744', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9744', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9745', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9745', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9746', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9746', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9747', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9747', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9748', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9748', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9749', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9749', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9750', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9750', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9751', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9751', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9752', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9752', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9753', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9753', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9754', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9754', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9755', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9755', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9756', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9756', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9757', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9757', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9758', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9758', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9759', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9759', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9760', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9760', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9761', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9761', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9762', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9762', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9763', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9763', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9764', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9764', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9765', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9765', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9766', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9766', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9767', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9767', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9768', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9768', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9769', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9769', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9770', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9770', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9771', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9771', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9772', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9772', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9773', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9773', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9774', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9774', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9775', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9775', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9776', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9776', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9777', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9777', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9778', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9778', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9779', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9779', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9780', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9780', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9781', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9781', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9782', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9782', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9783', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9783', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9784', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9784', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9785', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9785', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9786', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9786', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9787', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9787', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9788', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9788', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9789', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9789', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9790', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9790', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9791', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9791', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9792', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9792', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9793', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9793', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9794', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9794', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9795', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9795', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9796', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9796', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9797', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9797', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9798', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9798', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9799', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9799', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9800', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9800', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9801', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9801', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9802', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9802', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9803', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9803', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9804', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9804', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9805', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9805', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9806', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9806', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9807', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9807', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9808', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9808', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9809', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9809', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9810', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9810', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9811', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9811', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9812', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9812', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9813', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9813', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9814', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9814', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9815', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9815', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9816', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9816', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9817', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9817', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9818', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9818', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9819', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9819', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9820', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9820', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9821', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9821', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9822', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9822', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9823', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9823', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9824', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9824', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9825', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9825', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9826', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9826', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9827', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9827', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9828', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9828', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9829', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9829', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9830', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9830', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9831', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9831', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9832', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9832', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9833', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9833', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9834', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9834', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9835', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9835', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9836', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9836', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9837', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9837', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9838', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9838', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9839', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9839', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9840', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9840', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9841', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9841', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9842', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9842', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9843', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9843', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9844', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9844', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9845', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9845', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9846', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9846', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9847', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9847', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9848', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9848', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9849', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9849', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9850', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9850', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9851', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9851', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9852', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9852', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9853', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9853', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9854', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9854', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9855', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9855', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9856', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9856', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9857', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9857', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9858', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9858', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9859', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9859', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9860', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9860', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9861', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9861', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9862', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9862', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9863', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9863', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9864', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9864', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9865', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9865', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9866', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9866', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9867', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9867', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9868', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9868', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9869', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9869', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9870', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9870', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9871', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9871', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9872', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9872', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9873', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9873', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9874', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9874', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9875', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9875', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9876', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9876', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9877', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9877', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9878', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9878', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9879', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9879', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9880', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9880', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9881', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9881', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9882', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9882', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9883', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9883', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9884', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9884', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9885', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9885', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9886', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9886', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9887', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9887', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9888', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9888', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9889', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9889', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9890', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9890', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9891', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9891', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9892', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9892', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9893', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9893', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9894', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9894', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9895', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9895', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9896', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9896', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9897', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9897', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9898', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9898', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9899', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9899', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9900', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9900', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9901', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9901', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9902', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9902', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9903', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9903', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9904', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9904', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9905', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9905', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9906', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9906', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9907', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9907', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9908', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9908', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9909', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9909', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9910', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9910', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9911', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9911', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9912', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9912', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9913', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9913', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9914', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9914', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9915', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9915', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9916', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9916', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9917', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9917', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9918', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9918', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9919', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9919', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9920', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9920', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9921', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9921', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9922', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9922', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9923', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9923', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9924', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9924', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9925', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9925', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9926', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9926', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9927', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9927', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9928', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9928', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9929', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9929', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9930', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9930', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9931', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9931', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9932', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9932', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9933', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9933', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9934', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9934', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9935', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9935', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9936', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9936', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9937', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9937', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9938', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9938', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9939', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9939', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9940', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9940', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9941', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9941', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9942', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9942', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9943', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9943', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9944', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9944', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9945', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9945', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9946', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9946', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9947', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9947', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9948', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9948', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9949', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9949', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9950', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9950', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9951', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9951', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9952', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9952', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9953', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9953', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9954', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9954', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9955', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9955', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9956', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9956', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9957', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9957', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9958', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9958', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9959', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9959', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9960', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9960', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9961', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9961', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9962', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9962', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9963', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9963', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9964', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9964', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9965', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9965', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9966', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9966', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9967', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9967', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9968', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9968', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9969', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9969', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9970', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9970', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9971', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9971', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9972', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9972', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9973', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9973', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9974', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9974', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9975', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9975', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9976', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9976', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9977', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9977', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9978', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9978', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9979', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9979', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9980', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9980', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9981', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9981', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9982', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9982', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9983', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9983', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9984', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9984', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9985', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9985', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9986', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9986', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9987', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9987', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9988', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9988', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9989', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9989', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9990', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9990', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9991', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9991', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9992', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9992', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9993', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9993', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9994', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9994', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9995', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9995', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9996', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9996', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9997', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9997', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9998', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9998', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob9999', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob9999', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob9999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:work_related_task'), 'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob10000', 'urn:example:work_related_task'), 'urn:example:does'('urn:example:bob10000', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob10000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice10', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice10', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice11', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice11', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice12', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice12', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice13', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice13', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice14', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice14', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice15', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice15', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice16', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice16', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice17', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice17', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice18', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice18', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice19', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice19', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice20', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice20', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice21', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice21', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice22', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice22', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice23', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice23', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice24', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice24', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice25', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice25', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice26', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice26', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice27', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice27', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice28', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice28', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice29', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice29', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice30', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice30', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice31', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice31', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice32', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice32', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice33', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice33', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice34', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice34', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice35', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice35', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice36', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice36', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice37', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice37', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice38', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice38', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice39', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice39', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice40', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice40', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice41', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice41', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice42', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice42', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice43', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice43', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice44', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice44', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice45', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice45', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice46', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice46', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice47', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice47', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice48', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice48', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice49', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice49', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice50', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice50', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice51', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice51', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice52', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice52', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice53', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice53', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice54', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice54', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice55', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice55', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice56', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice56', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice57', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice57', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice58', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice58', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice59', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice59', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice60', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice60', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice61', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice61', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice62', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice62', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice63', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice63', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice64', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice64', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice65', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice65', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice66', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice66', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice67', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice67', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice68', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice68', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice69', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice69', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice70', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice70', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice71', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice71', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice72', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice72', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice73', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice73', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice74', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice74', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice75', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice75', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice76', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice76', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice77', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice77', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice78', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice78', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice79', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice79', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice80', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice80', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice81', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice81', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice82', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice82', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice83', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice83', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice84', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice84', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice85', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice85', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice86', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice86', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice87', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice87', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice88', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice88', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice89', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice89', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice90', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice90', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice91', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice91', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice92', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice92', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice93', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice93', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice94', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice94', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice95', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice95', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice96', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice96', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice97', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice97', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice98', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice98', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice99', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice99', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice1999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice1999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice2999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice2999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice3999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice3999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice4999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice4999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice5999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice5999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice6999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice6999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice7999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice7999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice8999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice8999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9000', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9001', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9001', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9002', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9002', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9003', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9003', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9004', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9004', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9005', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9005', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9006', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9006', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9007', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9007', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9008', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9008', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9009', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9009', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9010', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9010', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9011', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9011', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9012', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9012', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9013', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9013', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9014', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9014', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9015', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9015', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9016', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9016', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9017', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9017', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9018', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9018', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9019', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9019', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9020', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9020', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9021', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9021', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9022', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9022', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9023', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9023', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9024', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9024', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9025', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9025', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9026', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9026', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9027', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9027', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9028', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9028', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9029', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9029', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9030', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9030', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9031', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9031', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9032', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9032', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9033', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9033', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9034', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9034', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9035', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9035', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9036', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9036', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9037', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9037', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9038', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9038', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9039', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9039', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9040', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9040', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9041', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9041', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9042', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9042', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9043', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9043', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9044', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9044', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9045', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9045', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9046', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9046', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9047', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9047', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9048', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9048', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9049', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9049', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9050', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9050', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9051', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9051', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9052', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9052', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9053', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9053', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9054', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9054', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9055', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9055', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9056', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9056', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9057', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9057', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9058', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9058', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9059', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9059', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9060', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9060', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9061', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9061', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9062', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9062', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9063', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9063', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9064', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9064', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9065', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9065', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9066', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9066', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9067', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9067', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9068', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9068', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9069', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9069', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9070', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9070', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9071', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9071', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9072', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9072', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9073', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9073', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9074', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9074', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9075', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9075', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9076', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9076', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9077', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9077', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9078', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9078', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9079', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9079', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9080', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9080', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9081', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9081', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9082', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9082', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9083', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9083', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9084', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9084', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9085', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9085', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9086', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9086', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9087', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9087', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9088', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9088', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9089', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9089', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9090', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9090', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9091', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9091', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9092', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9092', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9093', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9093', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9094', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9094', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9095', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9095', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9096', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9096', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9097', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9097', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9098', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9098', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9099', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9099', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9100', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9100', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9101', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9101', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9102', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9102', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9103', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9103', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9104', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9104', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9105', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9105', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9106', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9106', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9107', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9107', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9108', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9108', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9109', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9109', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9110', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9110', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9111', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9111', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9112', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9112', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9113', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9113', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9114', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9114', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9115', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9115', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9116', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9116', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9117', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9117', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9118', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9118', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9119', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9119', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9120', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9120', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9121', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9121', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9122', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9122', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9123', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9123', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9124', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9124', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9125', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9125', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9126', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9126', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9127', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9127', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9128', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9128', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9129', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9129', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9130', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9130', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9131', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9131', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9132', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9132', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9133', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9133', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9134', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9134', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9135', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9135', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9136', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9136', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9137', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9137', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9138', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9138', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9139', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9139', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9140', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9140', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9141', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9141', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9142', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9142', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9143', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9143', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9144', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9144', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9145', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9145', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9146', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9146', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9147', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9147', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9148', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9148', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9149', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9149', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9150', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9150', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9151', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9151', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9152', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9152', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9153', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9153', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9154', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9154', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9155', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9155', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9156', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9156', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9157', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9157', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9158', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9158', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9159', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9159', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9160', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9160', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9161', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9161', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9162', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9162', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9163', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9163', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9164', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9164', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9165', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9165', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9166', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9166', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9167', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9167', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9168', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9168', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9169', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9169', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9170', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9170', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9171', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9171', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9172', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9172', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9173', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9173', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9174', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9174', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9175', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9175', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9176', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9176', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9177', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9177', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9178', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9178', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9179', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9179', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9180', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9180', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9181', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9181', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9182', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9182', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9183', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9183', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9184', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9184', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9185', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9185', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9186', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9186', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9187', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9187', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9188', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9188', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9189', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9189', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9190', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9190', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9191', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9191', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9192', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9192', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9193', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9193', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9194', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9194', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9195', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9195', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9196', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9196', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9197', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9197', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9198', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9198', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9199', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9199', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9200', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9200', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9201', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9201', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9202', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9202', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9203', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9203', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9204', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9204', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9205', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9205', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9206', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9206', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9207', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9207', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9208', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9208', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9209', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9209', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9210', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9210', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9211', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9211', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9212', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9212', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9213', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9213', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9214', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9214', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9215', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9215', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9216', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9216', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9217', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9217', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9218', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9218', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9219', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9219', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9220', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9220', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9221', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9221', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9222', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9222', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9223', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9223', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9224', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9224', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9225', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9225', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9226', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9226', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9227', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9227', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9228', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9228', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9229', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9229', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9230', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9230', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9231', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9231', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9232', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9232', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9233', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9233', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9234', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9234', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9235', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9235', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9236', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9236', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9237', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9237', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9238', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9238', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9239', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9239', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9240', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9240', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9241', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9241', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9242', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9242', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9243', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9243', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9244', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9244', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9245', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9245', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9246', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9246', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9247', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9247', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9248', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9248', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9249', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9249', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9250', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9250', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9251', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9251', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9252', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9252', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9253', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9253', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9254', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9254', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9255', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9255', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9256', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9256', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9257', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9257', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9258', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9258', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9259', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9259', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9260', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9260', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9261', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9261', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9262', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9262', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9263', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9263', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9264', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9264', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9265', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9265', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9266', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9266', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9267', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9267', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9268', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9268', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9269', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9269', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9270', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9270', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9271', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9271', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9272', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9272', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9273', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9273', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9274', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9274', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9275', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9275', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9276', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9276', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9277', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9277', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9278', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9278', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9279', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9279', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9280', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9280', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9281', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9281', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9282', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9282', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9283', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9283', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9284', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9284', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9285', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9285', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9286', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9286', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9287', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9287', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9288', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9288', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9289', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9289', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9290', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9290', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9291', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9291', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9292', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9292', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9293', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9293', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9294', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9294', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9295', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9295', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9296', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9296', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9297', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9297', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9298', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9298', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9299', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9299', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9300', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9300', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9301', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9301', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9302', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9302', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9303', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9303', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9304', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9304', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9305', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9305', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9306', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9306', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9307', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9307', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9308', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9308', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9309', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9309', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9310', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9310', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9311', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9311', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9312', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9312', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9313', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9313', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9314', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9314', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9315', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9315', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9316', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9316', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9317', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9317', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9318', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9318', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9319', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9319', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9320', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9320', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9321', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9321', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9322', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9322', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9323', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9323', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9324', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9324', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9325', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9325', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9326', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9326', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9327', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9327', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9328', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9328', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9329', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9329', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9330', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9330', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9331', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9331', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9332', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9332', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9333', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9333', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9334', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9334', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9335', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9335', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9336', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9336', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9337', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9337', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9338', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9338', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9339', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9339', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9340', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9340', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9341', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9341', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9342', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9342', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9343', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9343', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9344', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9344', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9345', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9345', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9346', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9346', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9347', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9347', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9348', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9348', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9349', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9349', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9350', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9350', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9351', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9351', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9352', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9352', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9353', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9353', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9354', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9354', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9355', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9355', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9356', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9356', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9357', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9357', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9358', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9358', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9359', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9359', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9360', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9360', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9361', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9361', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9362', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9362', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9363', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9363', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9364', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9364', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9365', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9365', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9366', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9366', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9367', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9367', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9368', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9368', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9369', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9369', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9370', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9370', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9371', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9371', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9372', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9372', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9373', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9373', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9374', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9374', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9375', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9375', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9376', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9376', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9377', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9377', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9378', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9378', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9379', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9379', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9380', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9380', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9381', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9381', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9382', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9382', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9383', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9383', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9384', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9384', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9385', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9385', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9386', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9386', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9387', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9387', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9388', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9388', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9389', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9389', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9390', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9390', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9391', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9391', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9392', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9392', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9393', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9393', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9394', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9394', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9395', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9395', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9396', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9396', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9397', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9397', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9398', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9398', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9399', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9399', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9400', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9400', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9401', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9401', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9402', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9402', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9403', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9403', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9404', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9404', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9405', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9405', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9406', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9406', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9407', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9407', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9408', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9408', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9409', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9409', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9410', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9410', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9411', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9411', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9412', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9412', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9413', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9413', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9414', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9414', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9415', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9415', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9416', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9416', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9417', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9417', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9418', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9418', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9419', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9419', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9420', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9420', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9421', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9421', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9422', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9422', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9423', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9423', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9424', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9424', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9425', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9425', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9426', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9426', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9427', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9427', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9428', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9428', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9429', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9429', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9430', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9430', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9431', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9431', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9432', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9432', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9433', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9433', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9434', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9434', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9435', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9435', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9436', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9436', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9437', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9437', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9438', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9438', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9439', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9439', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9440', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9440', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9441', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9441', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9442', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9442', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9443', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9443', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9444', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9444', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9445', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9445', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9446', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9446', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9447', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9447', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9448', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9448', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9449', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9449', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9450', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9450', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9451', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9451', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9452', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9452', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9453', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9453', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9454', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9454', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9455', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9455', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9456', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9456', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9457', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9457', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9458', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9458', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9459', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9459', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9460', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9460', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9461', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9461', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9462', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9462', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9463', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9463', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9464', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9464', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9465', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9465', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9466', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9466', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9467', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9467', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9468', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9468', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9469', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9469', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9470', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9470', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9471', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9471', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9472', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9472', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9473', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9473', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9474', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9474', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9475', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9475', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9476', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9476', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9477', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9477', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9478', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9478', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9479', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9479', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9480', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9480', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9481', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9481', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9482', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9482', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9483', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9483', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9484', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9484', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9485', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9485', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9486', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9486', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9487', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9487', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9488', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9488', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9489', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9489', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9490', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9490', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9491', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9491', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9492', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9492', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9493', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9493', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9494', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9494', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9495', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9495', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9496', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9496', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9497', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9497', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9498', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9498', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9499', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9499', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9500', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9500', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9501', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9501', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9502', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9502', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9503', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9503', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9504', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9504', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9505', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9505', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9506', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9506', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9507', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9507', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9508', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9508', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9509', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9509', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9510', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9510', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9511', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9511', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9512', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9512', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9513', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9513', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9514', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9514', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9515', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9515', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9516', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9516', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9517', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9517', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9518', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9518', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9519', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9519', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9520', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9520', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9521', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9521', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9522', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9522', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9523', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9523', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9524', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9524', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9525', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9525', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9526', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9526', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9527', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9527', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9528', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9528', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9529', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9529', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9530', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9530', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9531', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9531', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9532', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9532', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9533', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9533', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9534', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9534', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9535', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9535', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9536', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9536', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9537', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9537', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9538', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9538', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9539', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9539', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9540', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9540', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9541', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9541', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9542', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9542', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9543', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9543', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9544', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9544', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9545', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9545', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9546', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9546', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9547', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9547', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9548', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9548', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9549', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9549', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9550', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9550', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9551', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9551', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9552', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9552', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9553', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9553', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9554', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9554', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9555', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9555', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9556', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9556', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9557', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9557', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9558', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9558', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9559', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9559', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9560', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9560', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9561', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9561', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9562', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9562', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9563', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9563', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9564', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9564', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9565', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9565', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9566', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9566', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9567', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9567', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9568', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9568', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9569', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9569', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9570', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9570', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9571', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9571', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9572', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9572', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9573', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9573', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9574', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9574', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9575', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9575', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9576', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9576', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9577', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9577', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9578', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9578', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9579', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9579', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9580', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9580', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9581', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9581', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9582', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9582', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9583', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9583', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9584', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9584', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9585', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9585', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9586', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9586', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9587', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9587', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9588', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9588', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9589', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9589', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9590', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9590', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9591', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9591', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9592', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9592', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9593', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9593', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9594', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9594', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9595', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9595', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9596', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9596', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9597', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9597', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9598', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9598', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9599', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9599', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9600', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9600', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9601', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9601', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9602', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9602', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9603', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9603', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9604', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9604', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9605', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9605', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9606', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9606', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9607', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9607', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9608', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9608', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9609', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9609', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9610', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9610', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9611', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9611', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9612', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9612', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9613', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9613', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9614', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9614', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9615', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9615', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9616', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9616', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9617', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9617', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9618', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9618', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9619', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9619', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9620', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9620', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9621', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9621', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9622', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9622', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9623', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9623', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9624', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9624', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9625', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9625', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9626', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9626', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9627', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9627', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9628', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9628', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9629', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9629', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9630', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9630', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9631', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9631', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9632', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9632', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9633', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9633', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9634', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9634', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9635', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9635', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9636', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9636', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9637', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9637', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9638', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9638', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9639', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9639', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9640', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9640', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9641', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9641', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9642', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9642', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9643', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9643', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9644', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9644', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9645', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9645', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9646', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9646', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9647', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9647', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9648', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9648', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9649', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9649', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9650', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9650', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9651', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9651', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9652', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9652', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9653', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9653', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9654', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9654', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9655', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9655', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9656', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9656', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9657', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9657', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9658', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9658', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9659', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9659', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9660', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9660', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9661', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9661', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9662', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9662', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9663', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9663', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9664', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9664', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9665', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9665', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9666', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9666', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9667', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9667', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9668', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9668', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9669', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9669', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9670', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9670', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9671', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9671', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9672', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9672', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9673', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9673', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9674', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9674', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9675', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9675', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9676', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9676', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9677', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9677', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9678', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9678', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9679', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9679', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9680', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9680', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9681', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9681', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9682', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9682', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9683', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9683', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9684', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9684', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9685', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9685', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9686', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9686', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9687', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9687', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9688', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9688', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9689', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9689', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9690', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9690', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9691', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9691', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9692', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9692', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9693', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9693', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9694', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9694', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9695', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9695', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9696', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9696', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9697', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9697', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9698', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9698', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9699', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9699', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9700', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9700', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9701', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9701', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9702', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9702', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9703', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9703', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9704', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9704', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9705', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9705', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9706', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9706', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9707', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9707', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9708', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9708', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9709', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9709', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9710', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9710', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9711', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9711', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9712', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9712', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9713', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9713', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9714', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9714', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9715', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9715', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9716', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9716', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9717', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9717', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9718', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9718', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9719', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9719', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9720', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9720', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9721', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9721', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9722', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9722', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9723', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9723', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9724', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9724', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9725', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9725', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9726', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9726', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9727', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9727', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9728', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9728', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9729', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9729', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9730', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9730', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9731', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9731', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9732', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9732', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9733', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9733', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9734', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9734', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9735', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9735', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9736', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9736', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9737', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9737', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9738', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9738', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9739', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9739', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9740', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9740', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9741', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9741', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9742', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9742', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9743', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9743', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9744', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9744', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9745', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9745', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9746', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9746', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9747', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9747', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9748', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9748', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9749', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9749', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9750', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9750', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9751', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9751', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9752', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9752', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9753', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9753', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9754', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9754', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9755', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9755', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9756', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9756', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9757', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9757', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9758', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9758', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9759', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9759', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9760', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9760', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9761', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9761', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9762', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9762', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9763', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9763', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9764', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9764', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9765', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9765', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9766', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9766', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9767', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9767', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9768', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9768', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9769', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9769', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9770', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9770', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9771', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9771', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9772', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9772', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9773', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9773', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9774', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9774', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9775', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9775', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9776', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9776', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9777', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9777', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9778', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9778', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9779', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9779', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9780', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9780', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9781', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9781', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9782', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9782', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9783', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9783', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9784', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9784', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9785', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9785', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9786', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9786', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9787', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9787', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9788', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9788', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9789', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9789', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9790', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9790', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9791', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9791', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9792', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9792', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9793', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9793', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9794', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9794', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9795', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9795', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9796', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9796', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9797', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9797', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9798', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9798', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9799', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9799', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9800', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9800', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9801', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9801', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9802', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9802', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9803', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9803', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9804', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9804', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9805', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9805', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9806', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9806', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9807', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9807', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9808', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9808', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9809', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9809', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9810', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9810', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9811', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9811', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9812', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9812', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9813', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9813', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9814', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9814', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9815', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9815', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9816', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9816', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9817', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9817', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9818', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9818', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9819', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9819', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9820', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9820', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9821', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9821', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9822', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9822', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9823', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9823', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9824', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9824', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9825', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9825', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9826', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9826', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9827', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9827', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9828', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9828', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9829', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9829', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9830', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9830', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9831', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9831', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9832', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9832', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9833', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9833', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9834', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9834', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9835', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9835', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9836', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9836', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9837', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9837', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9838', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9838', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9839', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9839', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9840', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9840', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9841', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9841', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9842', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9842', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9843', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9843', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9844', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9844', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9845', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9845', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9846', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9846', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9847', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9847', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9848', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9848', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9849', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9849', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9850', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9850', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9851', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9851', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9852', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9852', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9853', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9853', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9854', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9854', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9855', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9855', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9856', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9856', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9857', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9857', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9858', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9858', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9859', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9859', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9860', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9860', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9861', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9861', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9862', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9862', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9863', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9863', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9864', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9864', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9865', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9865', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9866', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9866', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9867', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9867', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9868', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9868', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9869', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9869', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9870', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9870', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9871', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9871', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9872', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9872', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9873', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9873', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9874', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9874', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9875', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9875', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9876', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9876', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9877', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9877', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9878', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9878', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9879', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9879', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9880', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9880', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9881', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9881', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9882', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9882', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9883', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9883', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9884', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9884', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9885', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9885', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9886', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9886', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9887', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9887', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9888', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9888', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9889', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9889', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9890', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9890', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9891', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9891', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9892', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9892', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9893', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9893', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9894', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9894', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9895', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9895', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9896', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9896', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9897', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9897', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9898', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9898', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9899', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9899', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9900', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9900', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9901', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9901', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9902', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9902', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9903', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9903', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9904', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9904', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9905', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9905', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9906', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9906', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9907', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9907', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9908', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9908', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9909', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9909', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9910', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9910', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9911', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9911', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9912', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9912', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9913', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9913', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9914', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9914', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9915', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9915', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9916', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9916', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9917', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9917', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9918', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9918', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9919', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9919', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9920', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9920', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9921', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9921', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9922', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9922', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9923', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9923', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9924', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9924', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9925', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9925', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9926', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9926', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9927', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9927', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9928', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9928', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9929', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9929', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9930', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9930', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9931', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9931', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9932', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9932', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9933', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9933', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9934', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9934', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9935', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9935', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9936', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9936', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9937', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9937', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9938', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9938', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9939', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9939', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9940', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9940', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9941', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9941', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9942', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9942', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9943', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9943', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9944', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9944', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9945', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9945', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9946', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9946', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9947', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9947', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9948', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9948', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9949', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9949', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9950', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9950', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9951', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9951', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9952', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9952', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9953', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9953', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9954', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9954', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9955', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9955', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9956', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9956', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9957', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9957', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9958', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9958', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9959', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9959', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9960', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9960', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9961', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9961', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9962', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9962', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9963', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9963', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9964', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9964', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9965', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9965', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9966', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9966', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9967', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9967', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9968', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9968', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9969', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9969', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9970', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9970', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9971', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9971', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9972', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9972', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9973', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9973', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9974', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9974', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9975', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9975', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9976', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9976', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9977', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9977', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9978', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9978', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9979', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9979', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9980', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9980', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9981', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9981', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9982', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9982', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9983', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9983', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9984', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9984', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9985', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9985', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9986', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9986', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9987', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9987', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9988', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9988', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9989', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9989', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9990', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9990', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9991', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9991', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9992', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9992', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9993', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9993', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9994', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9994', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9995', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9995', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9996', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9996', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9997', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9997', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9998', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9998', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice9999', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice9999', true)). +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice10000', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice10000', true)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol10', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol10', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol11', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol11', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol12', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol12', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol13', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol13', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol14', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol14', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol15', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol15', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol16', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol16', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol17', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol17', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol18', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol18', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol19', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol19', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol20', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol20', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol21', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol21', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol22', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol22', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol23', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol23', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol24', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol24', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol25', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol25', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol26', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol26', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol27', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol27', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol28', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol28', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol29', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol29', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol30', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol30', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol31', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol31', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol32', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol32', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol33', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol33', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol34', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol34', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol35', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol35', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol36', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol36', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol37', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol37', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol38', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol38', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol39', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol39', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol40', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol40', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol41', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol41', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol42', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol42', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol43', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol43', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol44', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol44', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol45', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol45', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol46', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol46', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol47', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol47', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol48', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol48', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol49', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol49', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol50', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol50', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol51', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol51', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol52', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol52', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol53', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol53', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol54', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol54', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol55', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol55', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol56', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol56', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol57', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol57', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol58', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol58', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol59', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol59', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol60', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol60', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol61', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol61', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol62', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol62', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol63', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol63', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol64', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol64', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol65', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol65', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol66', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol66', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol67', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol67', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol68', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol68', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol69', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol69', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol70', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol70', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol71', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol71', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol72', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol72', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol73', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol73', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol74', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol74', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol75', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol75', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol76', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol76', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol77', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol77', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol78', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol78', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol79', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol79', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol80', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol80', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol81', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol81', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol82', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol82', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol83', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol83', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol84', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol84', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol85', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol85', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol86', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol86', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol87', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol87', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol88', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol88', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol89', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol89', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol90', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol90', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol91', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol91', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol92', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol92', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol93', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol93', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol94', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol94', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol95', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol95', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol96', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol96', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol97', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol97', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol98', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol98', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol99', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol99', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol1999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol1999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol2999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol2999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol3999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol3999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol4999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol4999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol5999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol5999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol6999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol6999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol7999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol7999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol8999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol8999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9000', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9001', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9001', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9002', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9002', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9003', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9003', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9004', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9004', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9005', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9005', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9006', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9006', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9007', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9007', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9008', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9008', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9009', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9009', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9010', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9010', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9011', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9011', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9012', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9012', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9013', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9013', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9014', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9014', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9015', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9015', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9016', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9016', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9017', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9017', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9018', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9018', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9019', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9019', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9020', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9020', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9021', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9021', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9022', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9022', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9023', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9023', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9024', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9024', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9025', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9025', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9026', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9026', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9027', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9027', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9028', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9028', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9029', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9029', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9030', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9030', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9031', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9031', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9032', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9032', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9033', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9033', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9034', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9034', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9035', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9035', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9036', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9036', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9037', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9037', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9038', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9038', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9039', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9039', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9040', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9040', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9041', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9041', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9042', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9042', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9043', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9043', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9044', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9044', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9045', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9045', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9046', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9046', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9047', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9047', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9048', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9048', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9049', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9049', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9050', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9050', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9051', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9051', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9052', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9052', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9053', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9053', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9054', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9054', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9055', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9055', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9056', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9056', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9057', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9057', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9058', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9058', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9059', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9059', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9060', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9060', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9061', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9061', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9062', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9062', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9063', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9063', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9064', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9064', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9065', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9065', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9066', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9066', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9067', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9067', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9068', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9068', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9069', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9069', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9070', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9070', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9071', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9071', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9072', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9072', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9073', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9073', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9074', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9074', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9075', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9075', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9076', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9076', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9077', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9077', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9078', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9078', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9079', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9079', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9080', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9080', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9081', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9081', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9082', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9082', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9083', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9083', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9084', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9084', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9085', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9085', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9086', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9086', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9087', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9087', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9088', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9088', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9089', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9089', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9090', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9090', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9091', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9091', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9092', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9092', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9093', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9093', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9094', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9094', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9095', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9095', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9096', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9096', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9097', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9097', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9098', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9098', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9099', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9099', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9100', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9100', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9101', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9101', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9102', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9102', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9103', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9103', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9104', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9104', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9105', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9105', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9106', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9106', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9107', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9107', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9108', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9108', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9109', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9109', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9110', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9110', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9111', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9111', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9112', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9112', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9113', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9113', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9114', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9114', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9115', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9115', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9116', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9116', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9117', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9117', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9118', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9118', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9119', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9119', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9120', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9120', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9121', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9121', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9122', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9122', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9123', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9123', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9124', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9124', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9125', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9125', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9126', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9126', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9127', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9127', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9128', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9128', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9129', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9129', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9130', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9130', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9131', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9131', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9132', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9132', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9133', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9133', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9134', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9134', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9135', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9135', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9136', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9136', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9137', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9137', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9138', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9138', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9139', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9139', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9140', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9140', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9141', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9141', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9142', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9142', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9143', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9143', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9144', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9144', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9145', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9145', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9146', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9146', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9147', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9147', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9148', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9148', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9149', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9149', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9150', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9150', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9151', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9151', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9152', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9152', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9153', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9153', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9154', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9154', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9155', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9155', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9156', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9156', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9157', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9157', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9158', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9158', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9159', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9159', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9160', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9160', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9161', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9161', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9162', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9162', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9163', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9163', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9164', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9164', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9165', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9165', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9166', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9166', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9167', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9167', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9168', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9168', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9169', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9169', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9170', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9170', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9171', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9171', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9172', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9172', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9173', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9173', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9174', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9174', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9175', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9175', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9176', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9176', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9177', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9177', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9178', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9178', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9179', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9179', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9180', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9180', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9181', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9181', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9182', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9182', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9183', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9183', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9184', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9184', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9185', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9185', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9186', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9186', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9187', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9187', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9188', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9188', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9189', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9189', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9190', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9190', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9191', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9191', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9192', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9192', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9193', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9193', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9194', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9194', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9195', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9195', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9196', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9196', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9197', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9197', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9198', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9198', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9199', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9199', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9200', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9200', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9201', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9201', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9202', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9202', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9203', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9203', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9204', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9204', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9205', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9205', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9206', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9206', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9207', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9207', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9208', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9208', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9209', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9209', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9210', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9210', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9211', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9211', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9212', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9212', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9213', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9213', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9214', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9214', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9215', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9215', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9216', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9216', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9217', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9217', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9218', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9218', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9219', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9219', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9220', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9220', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9221', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9221', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9222', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9222', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9223', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9223', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9224', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9224', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9225', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9225', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9226', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9226', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9227', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9227', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9228', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9228', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9229', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9229', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9230', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9230', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9231', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9231', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9232', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9232', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9233', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9233', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9234', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9234', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9235', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9235', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9236', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9236', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9237', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9237', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9238', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9238', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9239', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9239', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9240', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9240', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9241', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9241', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9242', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9242', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9243', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9243', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9244', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9244', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9245', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9245', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9246', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9246', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9247', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9247', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9248', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9248', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9249', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9249', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9250', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9250', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9251', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9251', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9252', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9252', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9253', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9253', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9254', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9254', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9255', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9255', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9256', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9256', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9257', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9257', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9258', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9258', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9259', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9259', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9260', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9260', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9261', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9261', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9262', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9262', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9263', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9263', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9264', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9264', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9265', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9265', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9266', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9266', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9267', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9267', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9268', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9268', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9269', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9269', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9270', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9270', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9271', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9271', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9272', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9272', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9273', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9273', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9274', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9274', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9275', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9275', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9276', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9276', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9277', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9277', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9278', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9278', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9279', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9279', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9280', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9280', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9281', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9281', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9282', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9282', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9283', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9283', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9284', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9284', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9285', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9285', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9286', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9286', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9287', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9287', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9288', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9288', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9289', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9289', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9290', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9290', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9291', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9291', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9292', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9292', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9293', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9293', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9294', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9294', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9295', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9295', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9296', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9296', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9297', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9297', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9298', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9298', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9299', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9299', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9300', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9300', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9301', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9301', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9302', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9302', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9303', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9303', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9304', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9304', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9305', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9305', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9306', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9306', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9307', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9307', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9308', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9308', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9309', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9309', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9310', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9310', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9311', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9311', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9312', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9312', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9313', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9313', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9314', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9314', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9315', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9315', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9316', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9316', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9317', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9317', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9318', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9318', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9319', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9319', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9320', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9320', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9321', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9321', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9322', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9322', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9323', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9323', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9324', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9324', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9325', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9325', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9326', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9326', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9327', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9327', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9328', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9328', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9329', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9329', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9330', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9330', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9331', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9331', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9332', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9332', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9333', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9333', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9334', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9334', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9335', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9335', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9336', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9336', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9337', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9337', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9338', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9338', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9339', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9339', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9340', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9340', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9341', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9341', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9342', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9342', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9343', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9343', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9344', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9344', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9345', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9345', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9346', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9346', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9347', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9347', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9348', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9348', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9349', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9349', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9350', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9350', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9351', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9351', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9352', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9352', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9353', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9353', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9354', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9354', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9355', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9355', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9356', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9356', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9357', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9357', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9358', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9358', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9359', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9359', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9360', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9360', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9361', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9361', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9362', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9362', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9363', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9363', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9364', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9364', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9365', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9365', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9366', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9366', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9367', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9367', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9368', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9368', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9369', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9369', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9370', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9370', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9371', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9371', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9372', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9372', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9373', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9373', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9374', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9374', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9375', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9375', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9376', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9376', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9377', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9377', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9378', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9378', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9379', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9379', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9380', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9380', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9381', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9381', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9382', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9382', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9383', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9383', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9384', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9384', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9385', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9385', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9386', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9386', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9387', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9387', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9388', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9388', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9389', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9389', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9390', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9390', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9391', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9391', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9392', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9392', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9393', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9393', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9394', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9394', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9395', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9395', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9396', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9396', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9397', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9397', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9398', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9398', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9399', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9399', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9400', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9400', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9401', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9401', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9402', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9402', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9403', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9403', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9404', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9404', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9405', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9405', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9406', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9406', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9407', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9407', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9408', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9408', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9409', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9409', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9410', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9410', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9411', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9411', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9412', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9412', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9413', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9413', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9414', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9414', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9415', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9415', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9416', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9416', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9417', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9417', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9418', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9418', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9419', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9419', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9420', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9420', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9421', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9421', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9422', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9422', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9423', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9423', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9424', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9424', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9425', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9425', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9426', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9426', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9427', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9427', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9428', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9428', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9429', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9429', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9430', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9430', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9431', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9431', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9432', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9432', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9433', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9433', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9434', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9434', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9435', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9435', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9436', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9436', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9437', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9437', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9438', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9438', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9439', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9439', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9440', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9440', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9441', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9441', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9442', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9442', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9443', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9443', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9444', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9444', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9445', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9445', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9446', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9446', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9447', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9447', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9448', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9448', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9449', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9449', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9450', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9450', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9451', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9451', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9452', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9452', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9453', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9453', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9454', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9454', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9455', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9455', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9456', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9456', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9457', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9457', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9458', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9458', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9459', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9459', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9460', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9460', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9461', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9461', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9462', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9462', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9463', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9463', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9464', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9464', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9465', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9465', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9466', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9466', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9467', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9467', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9468', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9468', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9469', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9469', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9470', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9470', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9471', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9471', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9472', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9472', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9473', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9473', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9474', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9474', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9475', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9475', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9476', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9476', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9477', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9477', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9478', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9478', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9479', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9479', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9480', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9480', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9481', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9481', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9482', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9482', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9483', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9483', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9484', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9484', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9485', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9485', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9486', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9486', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9487', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9487', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9488', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9488', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9489', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9489', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9490', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9490', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9491', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9491', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9492', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9492', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9493', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9493', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9494', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9494', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9495', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9495', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9496', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9496', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9497', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9497', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9498', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9498', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9499', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9499', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9500', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9500', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9501', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9501', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9502', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9502', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9503', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9503', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9504', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9504', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9505', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9505', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9506', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9506', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9507', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9507', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9508', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9508', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9509', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9509', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9510', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9510', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9511', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9511', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9512', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9512', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9513', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9513', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9514', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9514', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9515', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9515', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9516', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9516', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9517', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9517', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9518', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9518', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9519', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9519', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9520', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9520', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9521', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9521', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9522', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9522', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9523', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9523', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9524', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9524', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9525', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9525', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9526', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9526', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9527', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9527', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9528', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9528', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9529', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9529', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9530', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9530', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9531', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9531', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9532', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9532', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9533', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9533', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9534', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9534', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9535', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9535', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9536', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9536', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9537', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9537', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9538', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9538', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9539', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9539', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9540', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9540', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9541', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9541', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9542', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9542', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9543', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9543', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9544', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9544', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9545', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9545', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9546', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9546', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9547', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9547', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9548', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9548', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9549', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9549', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9550', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9550', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9551', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9551', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9552', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9552', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9553', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9553', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9554', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9554', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9555', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9555', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9556', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9556', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9557', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9557', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9558', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9558', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9559', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9559', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9560', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9560', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9561', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9561', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9562', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9562', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9563', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9563', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9564', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9564', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9565', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9565', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9566', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9566', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9567', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9567', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9568', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9568', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9569', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9569', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9570', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9570', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9571', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9571', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9572', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9572', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9573', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9573', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9574', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9574', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9575', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9575', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9576', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9576', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9577', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9577', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9578', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9578', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9579', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9579', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9580', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9580', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9581', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9581', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9582', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9582', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9583', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9583', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9584', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9584', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9585', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9585', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9586', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9586', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9587', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9587', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9588', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9588', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9589', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9589', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9590', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9590', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9591', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9591', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9592', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9592', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9593', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9593', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9594', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9594', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9595', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9595', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9596', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9596', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9597', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9597', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9598', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9598', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9599', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9599', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9600', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9600', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9601', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9601', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9602', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9602', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9603', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9603', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9604', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9604', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9605', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9605', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9606', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9606', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9607', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9607', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9608', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9608', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9609', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9609', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9610', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9610', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9611', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9611', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9612', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9612', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9613', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9613', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9614', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9614', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9615', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9615', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9616', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9616', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9617', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9617', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9618', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9618', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9619', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9619', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9620', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9620', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9621', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9621', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9622', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9622', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9623', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9623', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9624', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9624', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9625', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9625', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9626', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9626', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9627', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9627', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9628', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9628', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9629', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9629', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9630', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9630', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9631', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9631', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9632', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9632', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9633', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9633', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9634', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9634', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9635', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9635', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9636', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9636', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9637', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9637', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9638', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9638', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9639', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9639', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9640', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9640', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9641', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9641', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9642', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9642', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9643', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9643', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9644', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9644', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9645', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9645', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9646', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9646', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9647', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9647', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9648', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9648', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9649', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9649', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9650', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9650', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9651', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9651', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9652', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9652', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9653', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9653', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9654', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9654', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9655', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9655', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9656', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9656', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9657', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9657', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9658', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9658', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9659', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9659', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9660', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9660', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9661', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9661', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9662', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9662', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9663', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9663', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9664', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9664', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9665', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9665', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9666', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9666', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9667', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9667', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9668', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9668', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9669', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9669', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9670', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9670', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9671', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9671', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9672', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9672', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9673', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9673', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9674', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9674', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9675', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9675', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9676', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9676', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9677', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9677', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9678', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9678', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9679', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9679', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9680', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9680', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9681', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9681', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9682', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9682', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9683', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9683', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9684', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9684', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9685', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9685', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9686', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9686', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9687', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9687', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9688', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9688', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9689', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9689', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9690', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9690', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9691', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9691', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9692', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9692', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9693', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9693', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9694', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9694', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9695', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9695', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9696', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9696', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9697', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9697', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9698', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9698', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9699', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9699', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9700', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9700', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9701', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9701', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9702', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9702', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9703', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9703', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9704', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9704', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9705', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9705', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9706', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9706', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9707', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9707', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9708', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9708', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9709', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9709', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9710', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9710', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9711', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9711', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9712', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9712', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9713', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9713', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9714', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9714', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9715', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9715', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9716', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9716', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9717', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9717', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9718', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9718', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9719', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9719', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9720', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9720', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9721', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9721', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9722', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9722', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9723', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9723', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9724', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9724', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9725', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9725', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9726', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9726', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9727', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9727', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9728', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9728', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9729', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9729', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9730', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9730', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9731', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9731', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9732', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9732', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9733', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9733', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9734', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9734', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9735', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9735', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9736', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9736', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9737', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9737', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9738', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9738', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9739', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9739', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9740', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9740', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9741', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9741', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9742', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9742', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9743', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9743', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9744', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9744', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9745', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9745', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9746', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9746', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9747', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9747', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9748', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9748', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9749', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9749', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9750', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9750', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9751', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9751', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9752', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9752', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9753', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9753', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9754', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9754', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9755', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9755', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9756', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9756', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9757', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9757', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9758', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9758', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9759', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9759', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9760', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9760', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9761', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9761', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9762', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9762', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9763', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9763', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9764', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9764', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9765', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9765', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9766', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9766', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9767', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9767', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9768', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9768', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9769', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9769', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9770', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9770', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9771', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9771', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9772', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9772', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9773', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9773', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9774', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9774', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9775', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9775', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9776', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9776', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9777', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9777', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9778', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9778', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9779', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9779', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9780', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9780', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9781', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9781', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9782', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9782', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9783', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9783', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9784', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9784', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9785', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9785', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9786', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9786', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9787', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9787', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9788', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9788', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9789', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9789', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9790', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9790', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9791', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9791', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9792', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9792', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9793', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9793', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9794', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9794', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9795', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9795', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9796', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9796', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9797', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9797', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9798', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9798', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9799', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9799', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9800', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9800', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9801', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9801', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9802', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9802', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9803', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9803', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9804', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9804', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9805', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9805', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9806', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9806', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9807', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9807', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9808', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9808', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9809', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9809', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9810', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9810', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9811', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9811', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9812', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9812', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9813', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9813', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9814', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9814', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9815', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9815', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9816', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9816', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9817', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9817', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9818', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9818', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9819', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9819', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9820', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9820', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9821', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9821', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9822', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9822', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9823', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9823', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9824', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9824', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9825', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9825', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9826', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9826', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9827', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9827', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9828', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9828', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9829', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9829', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9830', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9830', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9831', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9831', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9832', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9832', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9833', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9833', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9834', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9834', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9835', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9835', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9836', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9836', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9837', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9837', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9838', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9838', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9839', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9839', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9840', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9840', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9841', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9841', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9842', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9842', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9843', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9843', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9844', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9844', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9845', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9845', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9846', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9846', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9847', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9847', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9848', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9848', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9849', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9849', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9850', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9850', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9851', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9851', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9852', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9852', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9853', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9853', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9854', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9854', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9855', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9855', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9856', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9856', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9857', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9857', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9858', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9858', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9859', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9859', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9860', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9860', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9861', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9861', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9862', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9862', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9863', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9863', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9864', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9864', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9865', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9865', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9866', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9866', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9867', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9867', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9868', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9868', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9869', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9869', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9870', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9870', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9871', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9871', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9872', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9872', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9873', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9873', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9874', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9874', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9875', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9875', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9876', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9876', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9877', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9877', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9878', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9878', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9879', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9879', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9880', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9880', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9881', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9881', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9882', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9882', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9883', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9883', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9884', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9884', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9885', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9885', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9886', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9886', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9887', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9887', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9888', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9888', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9889', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9889', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9890', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9890', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9891', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9891', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9892', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9892', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9893', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9893', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9894', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9894', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9895', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9895', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9896', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9896', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9897', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9897', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9898', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9898', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9899', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9899', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9900', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9900', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9901', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9901', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9902', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9902', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9903', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9903', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9904', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9904', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9905', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9905', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9906', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9906', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9907', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9907', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9908', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9908', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9909', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9909', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9910', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9910', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9911', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9911', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9912', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9912', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9913', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9913', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9914', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9914', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9915', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9915', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9916', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9916', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9917', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9917', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9918', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9918', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9919', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9919', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9920', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9920', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9921', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9921', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9922', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9922', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9923', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9923', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9924', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9924', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9925', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9925', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9926', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9926', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9927', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9927', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9928', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9928', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9929', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9929', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9930', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9930', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9931', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9931', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9932', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9932', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9933', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9933', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9934', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9934', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9935', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9935', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9936', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9936', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9937', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9937', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9938', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9938', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9939', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9939', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9940', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9940', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9941', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9941', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9942', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9942', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9943', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9943', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9944', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9944', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9945', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9945', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9946', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9946', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9947', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9947', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9948', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9948', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9949', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9949', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9950', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9950', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9951', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9951', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9952', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9952', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9953', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9953', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9954', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9954', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9955', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9955', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9956', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9956', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9957', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9957', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9958', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9958', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9959', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9959', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9960', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9960', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9961', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9961', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9962', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9962', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9963', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9963', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9964', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9964', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9965', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9965', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9966', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9966', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9967', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9967', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9968', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9968', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9969', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9969', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9970', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9970', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9971', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9971', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9972', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9972', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9973', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9973', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9974', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9974', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9975', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9975', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9976', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9976', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9977', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9977', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9978', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9978', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9979', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9979', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9980', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9980', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9981', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9981', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9982', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9982', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9983', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9983', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9984', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9984', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9985', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9985', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9986', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9986', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9987', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9987', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9988', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9988', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9989', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9989', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9990', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9990', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9991', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9991', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9992', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9992', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9993', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9993', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9994', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9994', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9995', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9995', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9996', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9996', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9997', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9997', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9998', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9998', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol9999', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol9999', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol10000', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol10000', false)). diff --git a/logic-programming/output/workplace.pl b/logic-programming/output/workplace.pl new file mode 100644 index 000000000..4ed38eb2d --- /dev/null +++ b/logic-programming/output/workplace.pl @@ -0,0 +1,13 @@ +:- op(1200, xfx, :=). + +answer('urn:example:complies'('urn:example:alice', true)). +answer('urn:example:complies'('urn:example:carol', false)). +answer('urn:example:complies'('urn:example:bob', false)). + +% +% Proof steps +% + +step(('urn:example:complies'(A, true):='urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), 'urn:example:does'('urn:example:alice', 'urn:example:log_off_at_end_of_shift'), 'urn:example:complies'('urn:example:alice', true)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:access_social_media')), 'urn:example:does'('urn:example:carol', 'urn:example:access_social_media'), 'urn:example:complies'('urn:example:carol', false)). +step(('urn:example:complies'(A, false):='urn:example:does'(A, 'urn:example:work_related_task'), stable(1), \+'urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), ('urn:example:does'('urn:example:bob', 'urn:example:work_related_task'), stable(1), \+'urn:example:does'('urn:example:bob', 'urn:example:log_off_at_end_of_shift')), 'urn:example:complies'('urn:example:bob', false)). diff --git a/logic-programming/output/zebra.pl b/logic-programming/output/zebra.pl new file mode 100644 index 000000000..8102e9619 --- /dev/null +++ b/logic-programming/output/zebra.pl @@ -0,0 +1,3 @@ +:- op(1200, xfx, :=). + +answer('urn:example:zebra'(norwegian, japanese)). diff --git a/logic-programming/padovan.pl b/logic-programming/padovan.pl new file mode 100644 index 000000000..83af92134 --- /dev/null +++ b/logic-programming/padovan.pl @@ -0,0 +1,33 @@ +% See https://en.wikipedia.org/wiki/Padovan_sequence + +'urn:example:padovan'(A, B) :- + padovan(A, 0, 1, 1, B). + +padovan(0, A, _, _, A). +padovan(1, _, A, _, A). +padovan(2, _, _, A, A). +padovan(A, B, C, D, E) :- + A > 2, + F is A-1, + G is B+C, + padovan(F, C, D, G, E). + +'urn:example:plastic_ratio'(A, B) :- + 'urn:example:padovan'(A, C), + D is A+1, + 'urn:example:padovan'(D, E), + B is E/C. + +% queries +true := 'urn:example:padovan'(1, _). +true := 'urn:example:padovan'(2, _). +true := 'urn:example:padovan'(3, _). +true := 'urn:example:padovan'(4, _). +true := 'urn:example:padovan'(5, _). +true := 'urn:example:padovan'(91, _). +true := 'urn:example:padovan'(283, _). +true := 'urn:example:padovan'(3674, _). +true := 'urn:example:plastic_ratio'(1, _). +true := 'urn:example:plastic_ratio'(10, _). +true := 'urn:example:plastic_ratio'(100, _). +true := 'urn:example:plastic_ratio'(1000, _). diff --git a/logic-programming/peano.pl b/logic-programming/peano.pl new file mode 100644 index 000000000..077cede26 --- /dev/null +++ b/logic-programming/peano.pl @@ -0,0 +1,28 @@ +% Peano arithmetic +% See https://en.wikipedia.org/wiki/Peano_axioms + +% add +'urn:example:add'(A, 0, A). +'urn:example:add'(A, s(B), s(C)) :- + 'urn:example:add'(A, B, C). + +% multiply +'urn:example:multiply'(_, 0, 0). +'urn:example:multiply'(A, s(B), C) :- + 'urn:example:multiply'(A, B, D), + 'urn:example:add'(A, D, C). + +% factorial +'urn:example:factorial'(A, B) :- + fac(A, s(0), B). + +fac(0, A, A). +fac(s(A), B, C) :- + 'urn:example:multiply'(B, s(A), D), + fac(A, D, C). + +% query +true := + 'urn:example:multiply'(s(0), s(s(0)), A), + 'urn:example:add'(A, s(s(s(0))), B), + 'urn:example:factorial'(B, _). diff --git a/logic-programming/pi.pl b/logic-programming/pi.pl new file mode 100644 index 000000000..b0c5b8717 --- /dev/null +++ b/logic-programming/pi.pl @@ -0,0 +1,17 @@ +% Calculate pi using Nilakantha series +% See http://www.wikihow.com/Calculate-Pi + +'urn:example:pi'(A, B) :- + pi(1, A, 0, C, 1), + B is 3+4*C. + +pi(A, A, B, B, _) :- + !. +pi(A, B, C, D, E) :- + F is A+1, + L is C+E/(2*A*(2*A+1)*(2*A+2)), + M is -E, + pi(F, B, L, D, M). + +% query +true := 'urn:example:pi'(100000, _). diff --git a/logic-programming/polygon.pl b/logic-programming/polygon.pl new file mode 100644 index 000000000..366ba8b8e --- /dev/null +++ b/logic-programming/polygon.pl @@ -0,0 +1,9 @@ +% Calculating the area of a polygon + +'urn:example:area'([_], 0). +'urn:example:area'([[A, B], [C, D]|E], F) :- + 'urn:example:area'([[C, D]|E], G), + F is (A*D-B*C)/2+G. + +% query +true := 'urn:example:area'([[3, 2], [6, 2], [7, 6], [4, 6], [5, 5], [5, 3], [3, 2]], _). diff --git a/logic-programming/polynomial.pl b/logic-programming/polynomial.pl new file mode 100644 index 000000000..3eaf2ba26 --- /dev/null +++ b/logic-programming/polynomial.pl @@ -0,0 +1,233 @@ +% Solving polynomial equations of degree 4 +% See http://alain.colmerauer.free.fr/alcol/ArchivesPublications/Equation4/Equation4.pdf + +% Liste des racines dun polynome +'urn:example:roots'(P, L) :- + findall(Z, racine(P, Z), L). + +% Racine dun polynome +racine([A, B], Z) :- + est(Z, moins(div(B, A))). +racine([A, B, C], Z) :- + est(P, div(B, fois([2, 0], A))), + est(Q, div(C, A)), + est(Z, add(moins(P), fois(racarreeun, racine(2, moins(carre(P), Q))))). +racine([A, B, C, D], Zp) :- + est(T, div(B, fois([-3, 0], A))), + est(P, div(add(fois([3, 0], fois(A, carre(T))), add(fois([2, 0], fois(B, T)), C)), A)), + est(Q, div(add(fois(A, cube(T)), add(fois(B, carre(T)), add(fois(C, T), D))), A)), + solutionCardan(P, Q, Z), + est(Zp, add(Z, T)). +racine([A, B, C, D, E], Zp) :- + est(T, div(B, fois([-4, 0], A))), + est(P, div(add(fois([6, 0], fois(A, carre(T))), add(fois([3, 0], fois(B, T)), C)), A)), + est(Q, div(add(fois(fois([4, 0], A), cube(T)), add(fois(fois([3, 0], B), carre(T)), add(fois(fois([2, 0], C), T), D))), A)), + est(R, div(add(fois(A, pquatre(T)), add(fois(B, cube(T)), add(fois(C, carre(T)), add(fois(D, T), E)))), A)), + solutionLagrange(P, Q, R, Z), + est(Zp, add(Z, T)). + +% Polynome a partir de ses racines +polynome(L, P) :- + polynome(L, [[1, 0]], P). + +polynome([], P0, P0). +polynome([X|L], P0, P4) :- + conc(P0, [[0, 0]], P1), + est(Xp, moins(X)), + foisl(Xp, P0, P2), + addll(P1, [[0, 0]|P2], P3), + polynome(L, P3, P4). + +conc([], L, L). +conc([E|L], Lp, [E|Lpp]) :- + conc(L, Lp, Lpp). + +foisl(_, [], []). +foisl(X, [Y|L], [Z|Lp]) :- + est(Z, fois(X, Y)), + foisl(X, L, Lp). + +addl(_, [], []). +addl(X, [Y|L], [Z|Lp]) :- + est(Z, addl(X, Y)), + addl(X, L, Lp). + +addll([], [], []). +addll([X|L], [Y|Lp], [Z|Lpp]) :- + est(Z, add(X, Y)), + addll(L, Lp, Lpp). + +% Solution de lequation du troisieme degre selon Cardan +solutionCardan(P, Q, Z) :- + nul(P), + est(Z, fois(racubiqueun, racine(3, moins(Q)))). +solutionCardan(Pp, Qp, Z) :- + nonnul(Pp), + est(P, div(Pp, [3, 0])), + est(Q, div(Qp, [2, 0])), + est(Raccubique, fois(racubiqueun, racine(3, moins(racine(2, add(carre(Q), cube(P))), Q)))), + est(Z, moins(Raccubique, div(P, Raccubique))). + +% Solutions de lequation du quatrieme degre selon Lagrange +solutionLagrange(P, Q, R, Z) :- + est(A, [1, 0]), + est(B, fois([2, 0], P)), + est(C, moins(carre(P), fois([4, 0], R))), + est(D, moins(carre(Q))), + 'urn:example:roots'([A, B, C, D], [Y1, Y2, Y3]), + est(Y1p, racine(2, Y1)), + est(Y2p, racine(2, Y2)), + est(Y3p, racine(2, Y3)), + est(U1, div(add(Y1p, add(Y2p, Y3p)), [2, 0])), + est(U2, div(moins(Y1p, add(Y2p, Y3p)), [2, 0])), + est(U3, div(moins(Y3p, add(Y1p, Y2p)), [2, 0])), + est(U4, div(moins(Y2p, add(Y1p, Y3p)), [2, 0])), + est(V1, fois(U1, fois(U2, U3))), + est(V2, fois(U1, fois(U2, U4))), + est(V3, fois(U1, fois(U3, U4))), + est(V4, fois(U2, fois(U3, U4))), + epsilon(E, moins(add(V1, add(V2, add(V3, V4)))), Q), + dans(U, [U1, U2, U3, U4]), + est(Z, fois(E, U)). + +epsilon([1, 0], _, Q) :- + nul(Q). +epsilon(E, S, Q) :- + nonnul(Q), + est(E, div(S, Q)). + +dans(U, [U|_]). +dans(U, [_|L]) :- + dans(U, L). + +% Valeurs de lenchainement des operations sur les complexes +est(Z, Z) :- + Z = [_, _]. +est(Z, T) :- + T =.. [F], + atom(F), + Tp =.. [F, Z], + Tp. +est(Z, T) :- + T =.. [F, X], + est(Xp, X), + Tp =.. [F, Xp, Z], + Tp. +est(Z, T) :- + T =.. [F, X, Y], + F \== racine, + F \== ., + est(Xp, X), + est(Yp, Y), + Tp =.. [F, Xp, Yp, Z], + Tp. +est(Z, racine(N, X)) :- + est(Xp, X), + racine(N, Xp, Z). + +% Operations sur les complexes +moins([X1, X2], [Y1, Y2]) :- + Y1 is -X1, + Y2 is -X2. + +moins([X1, X2], [Y1, Y2], [Z1, Z2]) :- + Z1 is X1-Y1, + Z2 is X2-Y2. + +add([X1, X2], [Y1, Y2], [Z1, Z2]) :- + Z1 is X1+Y1, + Z2 is X2+Y2. + +fois([X1, X2], [Y1, Y2], [Z1, Z2]) :- + Z1 is X1*Y1-X2*Y2, + Z2 is X1*Y2+X2*Y1. + +invers([X1, X2], [Y1, Y2]) :- + Y1 is X1/(X1**2+X2**2), + Y2 is -X2/(X1**2+X2**2). + +div(X, Y, Z) :- + invers(Y, Yp), + fois(X, Yp, Z). + +carre(X, Y) :- + fois(X, X, Y). + +cube(X, Y) :- + carre(X, Xp), + fois(X, Xp, Y). + +pquatre(X, Y) :- + carre(X, Xp), + carre(Xp, Y). + +racarreeun([1, 0]). +racarreeun([-1, 0]). + +racubiqueun([1, 0]). +racubiqueun([X, Y]) :- + X is -1/2, + Y is sqrt(3)/2. +racubiqueun([X, Y]) :- + X is -1/2, + Y is -sqrt(3)/2. + +racine(_, X, [0, 0]) :- + nul(X). +racine(N, X, Y) :- + nonnul(X), + polaire(X, [R, T]), + root(N, R, Rp), + Tp is T/N, + cartesien([Rp, Tp], Y). + +root(N, X, Y) :- + Y is exp(log(X)/N). + +polaire([X, Y], [R, Tp]) :- + R is sqrt(X**2+Y**2), + T is acos(abs(X)/R), + cadran(X, Y, T, Tp). + +cadran(X, Y, T, Tp) :- + X >= 0, + Y >= 0, + Tp = T. +cadran(X, Y, T, Tp) :- + X < 0, + Y >= 0, + Tp is pi-T. +cadran(X, Y, T, Tp) :- + X < 0, + Y < 0, + Tp is T+pi. +cadran(X, Y, T, Tp) :- + X >= 0, + Y < 0, + Tp is 2*pi-T. + +cartesien([R, T], [X1, X2]) :- + X1 is R*cos(T), + X2 is R*sin(T). + +% Problemes de zero +nul([X, Y]) :- + nulreel(X), + nulreel(Y), + !. + +nonnul(Z) :- + nul(Z), + !, + fail. +nonnul(_). + +nulreel(0) :- + !. +nulreel(0.0) :- + !. +nulreel(-0.0). + +% queries +true := 'urn:example:roots'([[1, 0], [-10, 0], [35, 0], [-50, 0], [24, 0]], _). +true := 'urn:example:roots'([[1, 0], [-9, -5], [14, 33], [24, -44], [-26, 0]], _). diff --git a/logic-programming/prime.pl b/logic-programming/prime.pl new file mode 100644 index 000000000..fd0482f8e --- /dev/null +++ b/logic-programming/prime.pl @@ -0,0 +1,125 @@ +% See https://en.wikipedia.org/wiki/Prime_number + +'urn:example:primerange'(A, B, L) :- + findall(I, (between(A, B, I), prime(I)), L). + +prime(2). +prime(3). +prime(P) :- + P > 3, + P mod 2 =\= 0, + \+factor(P, 3). + +factor(N, L) :- + N mod L =:= 0. +factor(N, L) :- + L*L < N, + L2 is L+2, + factor(N, L2). + +% Eulers totient function +% See https://en.wikipedia.org/wiki/eye%27s_totient_function +% Original code from https://www.ic.unicamp.br/~meidanis/courses/mc336/2009s2/prolog/problemas/ + +% Let [[p1, m1], [p2, m2], [p3, m3], ...] be the list of prime factors (and their +% multiplicities) of a given number m. Then phi(m) can be calculated +% with the following formula: +% phi(m) = (p1-1)*p1**(m1-1)*(p2-1)*p2**(m2-1)*(p3-1)*p3**(m3-1)*... + +% totient(N, Phi) :- Phi is the value of Eulers totient function +% for the argument N. +% (integer, integer) (+, ?) + +'urn:example:totient'(N, Phi) :- + prime_factors_mult(N, L), + to_phi(L, Phi). + +to_phi([], 1). +to_phi([[F, 1]|L], Phi) :- + !, + to_phi(L, Phi1), + Phi is Phi1*(F-1). +to_phi([[F, M]|L], Phi) :- + M > 1, + M1 is M-1, + to_phi([[F, M1]|L], Phi1), + Phi is Phi1*F. + +% prime_factors_mult(N, L) :- L is the list of prime factors of N. It is +% composed of terms [F, M] where F is a prime factor and M its multiplicity. +% (integer, list) (+, ?) + +prime_factors_mult(N, L) :- + N > 0, + prime_factors_mult(N, L, 2). + +% prime_factors_mult(N, L, K) :- L is the list of prime factors of N. It is +% known that N does not have any prime factors less than K. + +prime_factors_mult(1, [], _) :- + !. +prime_factors_mult(N, [[F, M]|L], F) :- + divide(N, F, M, R), + !, + next_factor(R, F, NF), + prime_factors_mult(R, L, NF). +prime_factors_mult(N, L, F) :- + !, + next_factor(N, F, NF), + prime_factors_mult(N, L, NF). + +% prime_factors(N, L) :- N is the list of prime factors of N. +% (integer, list) (+, ?) + +prime_factors(N, L) :- + N > 0, + prime_factors(N, L, 2). + +% prime_factors(N, L, K) :- L is the list of prime factors of N. It is +% known that N does not have any prime factors less than K. + +prime_factors(1, [], _) :- + !. +prime_factors(N, [F|L], F) :- + R is N//F, + N =:= R*F, + !, + prime_factors(R, L, F). +prime_factors(N, L, F) :- + next_factor(N, F, NF), + prime_factors(N, L, NF). + +% next_factor(N, F, NF) :- when calculating the prime factors of N +% and if F does not divide N then NF is the next larger candidate to +% be a factor of N. + +next_factor(_, 2, 3) :- + !. +next_factor(N, F, NF) :- + F*F < N, + !, + NF is F+2. +next_factor(N, _, N). + +% divide(N, F, M, R) :- N = R * F**M, M >= 1, and F is not a factor of R. +% (integer, integer, integer, integer) (+, +, -, -) + +divide(N, F, M, R) :- + divi(N, F, M, R, 0), + M > 0. + +divi(N, F, M, R, K) :- + S is N//F, + N =:= S*F, + !, + K1 is K+1, + divi(S, F, M, R, K1). +divi(N, _, M, N, M). + +% queries +true := 'urn:example:primerange'(0, 100, _). +true := 'urn:example:primerange'(1000000, 1000100, _). +true := 'urn:example:totient'(271, _). +true := 'urn:example:totient'(2718281, _). +true := 'urn:example:totient'(27182818284, _). +true := 'urn:example:totient'(271828182845904, _). diff --git a/logic-programming/sdcoding.pl b/logic-programming/sdcoding.pl new file mode 100644 index 000000000..49a96c1f9 --- /dev/null +++ b/logic-programming/sdcoding.pl @@ -0,0 +1,103 @@ +% Superdense coding using discrete quantum computing + +% See https://arxiv.org/pdf/1101.3764.pdf and https://arxiv.org/pdf/1010.2929.pdf + +% Discrete quantum theory is obtained by instantiating the mathematical framework +% of Hilbert spaces with a finite field instead of the field of complex numbers. +% This instantiation collapses much the structure of actual quantum mechanics but +% retains several of its distinguishing characteristics including the notions of +% superposition, interference, and entanglement. Furthermore, discrete quantum +% theory excludes local hidden variable models, has a no-cloning theorem, and can +% express natural counterparts of quantum information protocols such as superdense +% coding and teleportation. + +% Surprisingly discrete quantum computing is identical to conventional logic +% programming except for a small twist that is responsible for all the +% "quantum-ness". The twist occurs when merging sets of answers computed by +% several alternatives: the answers are combined using an exclusive version of +% logical disjunction. In other words, the two branches of a choice junction +% exhibit an interference effect: an answer is produced from the junction if it +% occurs in one or the other branch but not both. + +:- dynamic('urn:example:sdcoding'/2). + +% |R) = |0, 0) + |1, 1) +r(false, false). +r(true, true). + +% |S) = |0, 1) + |1, 0) +s(false, true). +s(true, false). + +% |U) = |0, 0) + |1, 0) + |1, 1) +u(false, false). +u(true, false). +u(true, true). + +% |V ) = |0, 0) + |0, 1) + |1, 0) +v(false, false). +v(false, true). +v(true, false). + +% ID |0) = |0) +id(false, false). +% ID |1) = |1) +id(true, true). + +% G |0) = |1) +g(false, true). +% G |1) = |0) +g(true, false). + +% K |0) = |0) +k(false, false). +% K |1) = |0) + |1) +k(true, false). +k(true, true). + +% KG +kg(X, Y) :- + g(X, Z), + k(Z, Y). + +% GK +gk(X, Y) :- + k(X, Z), + g(Z, Y). + +% alice +alice(0, [X, Y]) :- + id(X, Y). +alice(1, [X, Y]) :- + g(X, Y). +alice(2, [X, Y]) :- + k(X, Y). +alice(3, [X, Y]) :- + kg(X, Y). + +% bob +bob([X, Y], 0) :- + gk(X, Y). +bob([X, Y], 1) :- + k(X, Y). +bob([X, Y], 2) :- + g(X, Y). +bob([X, Y], 3) :- + id(X, Y). + +% superdense coding +'urn:example:sdc'(N, M) :- + r(X, Y), + alice(N, [X, B]), + bob([B, Y], M), + ( 'urn:example:sdcoding'(N, M) + -> retract('urn:example:sdcoding'(N, M)) + ; assertz('urn:example:sdcoding'(N, M)) + ). + +% superdense coding appearing an odd number of times +'urn:example:sdconot'(N, M) := + 'urn:example:sdc'(N, M). + +% query +true := 'urn:example:sdcoding'(_, _). diff --git a/logic-programming/socrates.pl b/logic-programming/socrates.pl new file mode 100644 index 000000000..5abcc20fa --- /dev/null +++ b/logic-programming/socrates.pl @@ -0,0 +1,9 @@ +% Socrates is a mortal + +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'('urn:example:Socrates', 'urn:example:Man'). + +'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:Mortal') := + 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(X, 'urn:example:Man'). + +% query +true := 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'(_, _). diff --git a/logic-programming/sudoku.pl b/logic-programming/sudoku.pl new file mode 100644 index 000000000..a9e43d7f9 --- /dev/null +++ b/logic-programming/sudoku.pl @@ -0,0 +1,36 @@ +% Original at https://www.metalevel.at/sudoku/sudoku.pl + +:- use_module(library(apply)). +:- use_module(library(clpfd)). + +'urn:example:sudoku'(Rows) :- + length(Rows, 9), + maplist(same_length(Rows), Rows), + append(Rows, Vs), + Vs ins 1..9, + maplist(all_distinct, Rows), + transpose(Rows, Columns), + maplist(all_distinct, Columns), + Rows = [As, Bs, Cs, Ds, Es, Fs, Gs, Hs, Is], + blocks(As, Bs, Cs), + blocks(Ds, Es, Fs), + blocks(Gs, Hs, Is). + +blocks([], [], []). +blocks([N1, N2, N3|Ns1], [N4, N5, N6|Ns2], [N7, N8, N9|Ns3]) :- + all_distinct([N1, N2, N3, N4, N5, N6, N7, N8, N9]), + blocks(Ns1, Ns2, Ns3). + +% query +true := + 'urn:example:sudoku'([ + [1, _, _, 8, _, 4, _, _, _], + [_, 2, _, _, _, _, 4, 5, 6], + [_, _, 3, 2, _, 5, _, _, _], + [_, _, _, 4, _, _, 8, _, 5], + [7, 8, 9, _, 5, _, _, _, _], + [_, _, _, _, _, 6, 2, _, 3], + [8, _, 1, _, _, _, 7, _, _], + [_, _, _, 1, 2, 3, _, 8, _], + [2, _, 5, _, _, _, _, _, 9]] + ). diff --git a/logic-programming/tak.pl b/logic-programming/tak.pl new file mode 100644 index 000000000..081c77b97 --- /dev/null +++ b/logic-programming/tak.pl @@ -0,0 +1,17 @@ +% Takeuchi function +% See https://en.wikipedia.org/wiki/Tak_(function) + +'urn:example:tak'([X, Y, Z], Z) :- + X =< Y, + !. +'urn:example:tak'([X, Y, Z], A) :- + X1 is X-1, + 'urn:example:tak'([X1, Y, Z], A1), + Y1 is Y-1, + 'urn:example:tak'([Y1, Z, X], A2), + Z1 is Z-1, + 'urn:example:tak'([Z1, X, Y], A3), + 'urn:example:tak'([A1, A2, A3], A). + +% query +true := 'urn:example:tak'([34, 13, 8], _). diff --git a/logic-programming/test b/logic-programming/test new file mode 100755 index 000000000..4a690ba57 --- /dev/null +++ b/logic-programming/test @@ -0,0 +1,48 @@ +#!/bin/bash + +RED="\e[31m" +GREEN="\e[32m" +YELLOW="\e[33m" +NORMAL="\e[0;39m" + +OK=0 +FAILED=0 + +echo -e "${YELLOW}-----------------------------${NORMAL}" +echo -e "${YELLOW}Running eye logic-programming${NORMAL}" +echo -e "${YELLOW}eye v$(eye --version 2>&1 | grep EYE | awk '{ print substr($2,2) }')${NORMAL}" +echo -e "${YELLOW}swipl v$(swipl --version 2>&1 | awk '{ print $3 }')${NORMAL}" +echo -e "${YELLOW}-----------------------------${NORMAL}" +echo "" + +pad () { + [ "$#" -gt 1 ] + [ -n "$2" ] + printf "%$2.${2#-}s" "$1" +} + +begin=$(($(date +%s))) +for file in *.pl +do + echo -en "$(pad "${file}" -24)" + start=$(($(date +%s%N)/1000000)) + eye --quiet --logic-program "${file}" > output/${file} + end=$(($(date +%s%N)/1000000)) + echo -en "${YELLOW}$(pad "`expr $end - $start` msec" 12)${NORMAL} " + if [[ $(git diff output/${file} | wc -l) -eq 0 ]]; then + echo -e "${GREEN}OK${NORMAL}" + ((OK++)) + else + echo -e "${RED}FAILED${NORMAL}" + ((FAILED++)) + fi +done +end=$(($(date +%s))) +echo "" + +echo -e "${YELLOW}`expr $end - $begin` sec${NORMAL} ${GREEN}${OK} OK${NORMAL} ${RED}${FAILED} FAILED${NORMAL}" +if [[ ${FAILED} -eq 0 ]]; then + exit 0 +else + exit 2 +fi diff --git a/logic-programming/turing.pl b/logic-programming/turing.pl new file mode 100644 index 000000000..09c314bbc --- /dev/null +++ b/logic-programming/turing.pl @@ -0,0 +1,49 @@ +% See https://en.wikipedia.org/wiki/Universal_Turing_machine + +% interpreter for Univeral Turing Machine + +'urn:example:compute'([], OutTape) :- + start(_MACHINE, I), + find(I, [], "#", [ ], OutTape). +'urn:example:compute'([Head|Tail], OutTape) :- + start(_MACHINE, I), + find(I, [], Head, Tail, OutTape). + +find(State, Left, Cell, Right, OutTape) :- + t([State, Cell, Write, Move], Next), + move(Move, Left, Write, Right, A, B, C), + continue(Next, A, B, C, OutTape). + +continue(halt, Left, Cell, Right, OutTape) :- + rev(Left, R), + append(R, [Cell|Right], OutTape). +continue(State, Left, Cell, Right, OutTape) :- + find(State, Left, Cell, Right, OutTape). + +move(l, [], Cell, Right, [], "#", [Cell|Right]). +move(l, [Head|Tail], Cell, Right, Tail, Head, [Cell|Right]). +move(s, Left, Cell, Right, Left, Cell, Right). +move(r, Left, Cell, [], [Cell|Left], "#", [] ). +move(r, Left, Cell, [Head|Tail], [Cell|Left], Head, Tail). + +rev([], []). +rev([A|B], C) :- + rev(B, D), + append(D, [A], C). + +% a Turing machine to add 1 to a binary number + +start(add1, 0). + +t([0, 0, 0, r], 0). +t([0, 1, 1, r], 0). +t([0, "#", "#", l], 1). +t([1, 0, 1, s], halt). +t([1, 1, 0, l], 1). +t([1, "#", 1, s], halt). + +% queries +true := 'urn:example:compute'([1, 0, 1, 0, 0, 1], _). +true := 'urn:example:compute'([1, 0, 1, 1, 1, 1], _). +true := 'urn:example:compute'([1, 1, 1, 1, 1, 1], _). +true := 'urn:example:compute'([], _). diff --git a/logic-programming/workplace-benchmark.pl b/logic-programming/workplace-benchmark.pl new file mode 100644 index 000000000..4dc77ee71 --- /dev/null +++ b/logic-programming/workplace-benchmark.pl @@ -0,0 +1,42 @@ +% Deontic Logic example benchmark + +:- dynamic('urn:example:does'/2). + +% facts about what employees are doing +'urn:example:prepare'(X, Y) :- + Z is Y//3, + between(X, Z, N), + number_codes(N, J), + atom_codes(I, J), + atom_concat('urn:example:alice', I, A), + assertz('urn:example:does'(A, 'urn:example:log_off_at_end_of_shift')), + atom_concat('urn:example:bob', I, B), + assertz('urn:example:does'(B, 'urn:example:work_related_task')), + assertz('urn:example:does'(B, 'urn:example:log_off_at_end_of_shift')), + atom_concat('urn:example:carol', I, C), + assertz('urn:example:does'(C, 'urn:example:access_social_media')), + fail; + true. + +% rules to check if an action complies with deontic logic +'urn:example:complies'(Person, true) := + 'urn:example:does'(Person, 'urn:example:work_related_task'), + 'urn:example:does'(Person, 'urn:example:log_off_at_end_of_shift'). + +'urn:example:complies'(Person, false) := + 'urn:example:does'(Person, 'urn:example:work_related_task'), + stable(1), + \+'urn:example:does'(Person, 'urn:example:log_off_at_end_of_shift'). + +'urn:example:complies'(Person, true) := + 'urn:example:does'(Person, 'urn:example:log_off_at_end_of_shift'). + +'urn:example:complies'(Person, false) := + 'urn:example:does'(Person, 'urn:example:access_social_media'). + + +% prepare employee data +true := 'urn:example:prepare'(1, 30000). + +% query +true := 'urn:example:complies'(_, _). diff --git a/logic-programming/workplace.pl b/logic-programming/workplace.pl new file mode 100644 index 000000000..c5061b24b --- /dev/null +++ b/logic-programming/workplace.pl @@ -0,0 +1,26 @@ +% Deontic Logic example + +% facts about what an employee is doing +'urn:example:does'('urn:example:alice', 'urn:example:log_off_at_end_of_shift'). +'urn:example:does'('urn:example:bob', 'urn:example:work_related_task'). +%'urn:example:does'('urn:example:bob', 'urn:example:log_off_at_end_of_shift'). +'urn:example:does'('urn:example:carol', 'urn:example:access_social_media'). + +% rules to check if an action complies with deontic logic +'urn:example:complies'(Person, true) := + 'urn:example:does'(Person, 'urn:example:work_related_task'), + 'urn:example:does'(Person, 'urn:example:log_off_at_end_of_shift'). + +'urn:example:complies'(Person, false) := + 'urn:example:does'(Person, 'urn:example:work_related_task'), + stable(1), + \+'urn:example:does'(Person, 'urn:example:log_off_at_end_of_shift'). + +'urn:example:complies'(Person, true) := + 'urn:example:does'(Person, 'urn:example:log_off_at_end_of_shift'). + +'urn:example:complies'(Person, false) := + 'urn:example:does'(Person, 'urn:example:access_social_media'). + +% query +true := 'urn:example:complies'(_, _). diff --git a/logic-programming/zebra.pl b/logic-programming/zebra.pl new file mode 100644 index 000000000..40df2f59d --- /dev/null +++ b/logic-programming/zebra.pl @@ -0,0 +1,41 @@ +% Zebra Puzzle +% Original code from https://github.com/DonaldKellett/Einsteins-Riddle-Prolog +% +% Einstein's Riddle.pl +% A formulation of Einstein's Riddle (aka Zebra Puzzle) in Prolog (specifically, SWI-Prolog - see http://www.swi-prolog.org/) as appeared on Life International magazine 17/12/1962 +% Source: https://en.wikipedia.org/wiki/Zebra_Puzzle + +% Modelling the problem: +% - Each house is represented by the predicate house/5 +% - The five houses are modelled as a(n) (ordered) list of house(Color, Nationality, Pet, Beverage, Cigaret) in the variable Houses +% - The predicate solve/2 for solving the riddle is of the form solve(WaterDrinker, ZebraOwner) where WaterDrinker is the nationality of the person who drinks water and ZebraOwner the nationality of the person owning a zebra as a pet + +% Expected solution: if the problem is modelled correctly by this program then the only solution set should be: +% WaterDrinker = norwegian, ZebraOwner = japanese. + +% 'urn:example:solve_zebra'/2 - The main predicate for solving the puzzle +'urn:example:zebra'(WaterDrinker, ZebraOwner) :- + length(Houses, 5), % 1. There are five houses. + member(house(red, english, _, _, _), Houses), % 2. The Englishman lives in the red house. + member(house(_, spanish, dog, _, _), Houses), % 3. The Spaniard owns the dog. + member(house(green, _, _, coffee, _), Houses), % 4. Coffee is drunk in the green house. + member(house(_, ukrainian, _, tea, _), Houses), % 5. The Ukrainian drinks tea. + nextto(house(ivory, _, _, _, _), house(green, _, _, _, _), Houses), % 6. The green house is immediately to the right of the ivory house. + member(house(_, _, snail, _, old_gold), Houses), % 7. The Old Gold smoker owns snails. + member(house(yellow, _, _, _, kools), Houses), % 8. Kools are smoked in the yellow house. + nth1(3, Houses, house(_, _, _, milk, _)), % 9. Milk is drunk in the middle house. + nth1(1, Houses, house(_, norwegian, _, _, _)), % 10. The Norwegian lives in the first house. + adjacent(house(_, _, _, _, chesterfields), house(_, _, fox, _, _), Houses), % 11. The man who smokes Chesterfields lives in the house next to the man with the fox. + adjacent(house(_, _, _, _, kools), house(_, _, horse, _, _), Houses), % 12. Kools are smoked in the house next to the house where the horse is kept. + member(house(_, _, _, orange_juice, lucky_strike), Houses), % 13. The Lucky Strike smoker drinks orange juice. + member(house(_, japanese, _, _, parliaments), Houses), % 14. The Japanese smokes Parliaments. + adjacent(house(_, norwegian, _, _, _), house(blue, _, _, _, _), Houses), % 15. The Norwegian lives next to the blue house + member(house(_, WaterDrinker, _, water, _), Houses), % Who (WaterDrinker) drinks water? + member(house(_, ZebraOwner, zebra, _, _), Houses). % Who (ZebraOwner) owns the zebra? + +adjacent(A, B, List) :- + nextto(A, B, List); + nextto(B, A, List). + +% query +true := 'urn:example:zebra'(_, _).